| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // | 4 // |
| 5 // VMOptions= | 5 // VMOptions= |
| 6 // VMOptions=--short_socket_read | 6 // VMOptions=--short_socket_read |
| 7 // VMOptions=--short_socket_write | 7 // VMOptions=--short_socket_write |
| 8 // VMOptions=--short_socket_read --short_socket_write | 8 // VMOptions=--short_socket_read --short_socket_write |
| 9 | 9 |
| 10 import "dart:async"; | 10 import "dart:async"; |
| 11 import "dart:io"; | 11 import "dart:io"; |
| 12 | 12 |
| 13 import "package:async_helper/async_helper.dart"; | 13 import "package:async_helper/async_helper.dart"; |
| 14 import "package:expect/expect.dart"; | 14 import "package:expect/expect.dart"; |
| 15 | 15 |
| 16 InternetAddress HOST; | 16 InternetAddress HOST; |
| 17 | 17 |
| 18 String localFile(path) => Platform.script.resolve(path).toFilePath(); | 18 String localFile(path) => Platform.script.resolve(path).toFilePath(); |
| 19 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); |
| 19 | 20 |
| 20 SecurityContext serverContext = new SecurityContext() | 21 SecurityContext serverContext = new SecurityContext() |
| 21 ..useCertificateChain(localFile('certificates/server_chain.pem')) | 22 ..useCertificateChain(localFile('certificates/server_chain.pem')) |
| 22 ..usePrivateKey(localFile('certificates/server_key.pem'), | 23 ..usePrivateKeyAsBytes(readLocalFile('certificates/server_key.pem'), |
| 23 password: 'dartdart'); | 24 password: 'dartdart'); |
| 24 | 25 |
| 25 SecurityContext clientContext = new SecurityContext() | 26 SecurityContext clientContext = new SecurityContext() |
| 26 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); | 27 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); |
| 27 | 28 |
| 28 | 29 |
| 29 Future<SecureServerSocket> startEchoServer() { | 30 Future<SecureServerSocket> startEchoServer() { |
| 30 return SecureServerSocket.bind(HOST, | 31 return SecureServerSocket.bind(HOST, |
| 31 0, | 32 0, |
| 32 serverContext).then((server) { | 33 serverContext).then((server) { |
| 33 server.listen((SecureSocket client) { | 34 server.listen((SecureSocket client) { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 55 } | 56 } |
| 56 | 57 |
| 57 void main() { | 58 void main() { |
| 58 asyncStart(); | 59 asyncStart(); |
| 59 InternetAddress.lookup("localhost").then((hosts) => HOST = hosts.first ) | 60 InternetAddress.lookup("localhost").then((hosts) => HOST = hosts.first ) |
| 60 .then((_) => startEchoServer()) | 61 .then((_) => startEchoServer()) |
| 61 .then(testClient) | 62 .then(testClient) |
| 62 .then((server) => server.close()) | 63 .then((server) => server.close()) |
| 63 .then((_) => asyncEnd()); | 64 .then((_) => asyncEnd()); |
| 64 } | 65 } |
| OLD | NEW |