| 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 String localFile(path) => Platform.script.resolve(path).toFilePath(); | 16 String localFile(path) => Platform.script.resolve(path).toFilePath(); |
| 17 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); | |
| 18 | 17 |
| 19 SecurityContext serverContext = new SecurityContext() | 18 SecurityContext serverContext = new SecurityContext() |
| 20 ..useCertificateChainBytes(readLocalFile('certificates/server_chain.pem')) | 19 ..useCertificateChainSync(localFile('certificates/server_chain.pem')) |
| 21 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'), | 20 ..usePrivateKeySync(localFile('certificates/server_key.pem'), |
| 22 password: 'dartdart'); | 21 password: 'dartdart'); |
| 23 | 22 |
| 24 SecurityContext clientContext = new SecurityContext() | 23 SecurityContext clientContext = new SecurityContext() |
| 25 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); | 24 ..setTrustedCertificatesSync(localFile('certificates/trusted_certs.pem')); |
| 26 | 25 |
| 27 InternetAddress HOST; | 26 InternetAddress HOST; |
| 28 Future<RawSecureServerSocket> startEchoServer() { | 27 Future<RawSecureServerSocket> startEchoServer() { |
| 29 return RawSecureServerSocket.bind(HOST, | 28 return RawSecureServerSocket.bind(HOST, |
| 30 0, | 29 0, |
| 31 serverContext).then((server) { | 30 serverContext).then((server) { |
| 32 server.listen((RawSecureSocket client) { | 31 server.listen((RawSecureSocket client) { |
| 33 List<List<int>> readChunks = <List<int>>[]; | 32 List<List<int>> readChunks = <List<int>>[]; |
| 34 List<int> dataToWrite = null; | 33 List<int> dataToWrite = null; |
| 35 int bytesWritten = 0; | 34 int bytesWritten = 0; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 } | 88 } |
| 90 | 89 |
| 91 void main() { | 90 void main() { |
| 92 asyncStart(); | 91 asyncStart(); |
| 93 InternetAddress.lookup("localhost").then((hosts) => HOST = hosts.first) | 92 InternetAddress.lookup("localhost").then((hosts) => HOST = hosts.first) |
| 94 .then((_) => startEchoServer()) | 93 .then((_) => startEchoServer()) |
| 95 .then(testClient) | 94 .then(testClient) |
| 96 .then((server) => server.close()) | 95 .then((server) => server.close()) |
| 97 .then((_) => asyncEnd()); | 96 .then((_) => asyncEnd()); |
| 98 } | 97 } |
| OLD | NEW |