| // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| // |
| // VMOptions= |
| // VMOptions=--short_socket_read |
| // VMOptions=--short_socket_write |
| // VMOptions=--short_socket_read --short_socket_write |
| // OtherResources=certificates/server_chain.pem |
| // OtherResources=certificates/server_key.pem |
| // OtherResources=certificates/trusted_certs.pem |
| // OtherResources=certificates/server_chain.p12 |
| // OtherResources=certificates/server_key.p12 |
| // OtherResources=certificates/trusted_certs.p12 |
| |
| // @dart = 2.9 |
| |
| import "package:async_helper/async_helper.dart"; |
| import "package:expect/expect.dart"; |
| import "package:path/path.dart"; |
| import "dart:async"; |
| import "dart:io"; |
| |
| String localFile(path) => Platform.script.resolve(path).toFilePath(); |
| |
| SecurityContext serverContext(String certType, String password) => |
| new SecurityContext() |
| ..useCertificateChain(localFile('certificates/server_chain.$certType'), |
| password: password) |
| ..usePrivateKey(localFile('certificates/server_key.$certType'), |
| password: password); |
| |
| SecurityContext clientContext(String certType, String password) => |
| new SecurityContext() |
| ..setTrustedCertificates( |
| localFile('certificates/trusted_certs.$certType'), |
| password: password); |
| |
| Future<HttpServer> startServer(String certType, String password) { |
| return HttpServer |
| .bindSecure("localhost", 0, serverContext(certType, password), backlog: 5) |
| .then((server) { |
| server.listen((HttpRequest request) { |
| request.listen((_) {}, onDone: () { |
| request.response.contentLength = 100; |
| for (int i = 0; i < 10; i++) { |
| request.response.add([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]); |
| } |
| request.response.close(); |
| }); |
| }); |
| return server; |
| }); |
| } |
| |
| Future test(String certType, String password) { |
| List<int> body = <int>[]; |
| Completer completer = new Completer(); |
| startServer(certType, password).then((server) { |
| SecureSocket |
| .connect("localhost", server.port, |
| context: clientContext(certType, password)) |
| .then((socket) { |
| socket.write("GET / HTTP/1.0\r\nHost: localhost\r\n\r\n"); |
| socket.close(); |
| socket.listen((List<int> data) { |
| body.addAll(data); |
| }, onDone: () { |
| Expect.isTrue(body.length > 100, "$body\n${body.length}"); |
| Expect.equals(72, body[0]); |
| Expect.equals(9, body[body.length - 1]); |
| server.close(); |
| completer.complete(null); |
| }, onError: (e, trace) { |
| String msg = "Unexpected error $e"; |
| if (trace != null) msg += "\nStackTrace: $trace"; |
| Expect.fail(msg); |
| completer.complete(null); |
| }); |
| }); |
| }); |
| return completer.future; |
| } |
| |
| void testConnectTimeout() { |
| asyncStart(); |
| Duration timeout = new Duration(milliseconds: 20); |
| SecureSocket.connect("8.8.8.7", 80, timeout: timeout).then((socket) { |
| Expect.fail("Unexpected connection made."); |
| asyncEnd(); |
| }).catchError((e) { |
| Expect.isTrue(e is SocketException); |
| asyncEnd(); |
| }); |
| } |
| |
| main() async { |
| asyncStart(); |
| await test('pem', 'dartdart'); |
| await test('p12', 'dartdart'); |
| testConnectTimeout(); |
| asyncEnd(); |
| } |