| 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 String localFile(path) => Platform.script.resolve(path).toFilePath(); | 17 String localFile(path) => Platform.script.resolve(path).toFilePath(); |
| 18 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); | 18 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); |
| 19 | 19 |
| 20 SecurityContext serverContext = new SecurityContext() | 20 SecurityContext serverContext = new SecurityContext() |
| 21 ..useCertificateChain(localFile('certificates/server_chain.pem')) | 21 ..useCertificateChainBytes(readLocalFile('certificates/server_chain.pem')) |
| 22 ..usePrivateKeyAsBytes(readLocalFile('certificates/server_key.pem'), | 22 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'), |
| 23 password: 'dartdart'); | 23 password: 'dartdart'); |
| 24 | 24 |
| 25 SecurityContext clientContext = new SecurityContext() | 25 SecurityContext clientContext = new SecurityContext() |
| 26 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); | 26 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); |
| 27 | 27 |
| 28 void testCloseOneEnd(String toClose) { | 28 void testCloseOneEnd(String toClose) { |
| 29 asyncStart(); | 29 asyncStart(); |
| 30 Completer serverDone = new Completer(); | 30 Completer serverDone = new Completer(); |
| 31 Completer serverEndDone = new Completer(); | 31 Completer serverEndDone = new Completer(); |
| 32 Completer clientEndDone = new Completer(); | 32 Completer clientEndDone = new Completer(); |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 168 |
| 169 runTests() { | 169 runTests() { |
| 170 testCloseOneEnd("client"); | 170 testCloseOneEnd("client"); |
| 171 testCloseOneEnd("server"); | 171 testCloseOneEnd("server"); |
| 172 testCloseBothEnds(); | 172 testCloseBothEnds(); |
| 173 testCloseServer(); | 173 testCloseServer(); |
| 174 testPauseServerSocket(); | 174 testPauseServerSocket(); |
| 175 // TODO(whesse): Add testPauseSocket from raw_socket_test.dart. | 175 // TODO(whesse): Add testPauseSocket from raw_socket_test.dart. |
| 176 // TODO(whesse): Add testCancelResubscribeSocket from raw_socket_test.dart. | 176 // TODO(whesse): Add testCancelResubscribeSocket from raw_socket_test.dart. |
| 177 } | 177 } |
| OLD | NEW |