| 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 testSimpleBind() { | 28 void testSimpleBind() { |
| 29 asyncStart(); | 29 asyncStart(); |
| 30 RawSecureServerSocket.bind(HOST, 0, serverContext).then((s) { | 30 RawSecureServerSocket.bind(HOST, 0, serverContext).then((s) { |
| 31 Expect.isTrue(s.port > 0); | 31 Expect.isTrue(s.port > 0); |
| 32 s.close(); | 32 s.close(); |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 testSimpleConnect(); | 571 testSimpleConnect(); |
| 572 SecurityContext context = new SecurityContext(); | 572 SecurityContext context = new SecurityContext(); |
| 573 testSimpleConnectFail(context, false); | 573 testSimpleConnectFail(context, false); |
| 574 testSimpleConnectFail(context, true); | 574 testSimpleConnectFail(context, true); |
| 575 var chain = | 575 var chain = |
| 576 Platform.script.resolve('certificates/untrusted_server_chain.pem') | 576 Platform.script.resolve('certificates/untrusted_server_chain.pem') |
| 577 .toFilePath(); | 577 .toFilePath(); |
| 578 context.useCertificateChain(chain); | 578 context.useCertificateChain(chain); |
| 579 testSimpleConnectFail(context, false); | 579 testSimpleConnectFail(context, false); |
| 580 testSimpleConnectFail(context, true); | 580 testSimpleConnectFail(context, true); |
| 581 var key = 'certificates/untrusted_server_key.pem'; | 581 var key = |
| 582 context.usePrivateKeyAsBytes(readLocalFile(key), password: 'dartdart'); | 582 Platform.script.resolve('certificates/untrusted_server_key.pem') |
| 583 .toFilePath(); |
| 584 context.usePrivateKey(key, password: 'dartdart'); |
| 583 testSimpleConnectFail(context, false); | 585 testSimpleConnectFail(context, false); |
| 584 testSimpleConnectFail(context, true); | 586 testSimpleConnectFail(context, true); |
| 585 testServerListenAfterConnect(); | 587 testServerListenAfterConnect(); |
| 586 | 588 |
| 587 testSimpleReadWrite(listenSecure: true, | 589 testSimpleReadWrite(listenSecure: true, |
| 588 connectSecure: true, | 590 connectSecure: true, |
| 589 handshakeBeforeSecure: false, | 591 handshakeBeforeSecure: false, |
| 590 postponeSecure: false, | 592 postponeSecure: false, |
| 591 dropReads: false); | 593 dropReads: false); |
| 592 testSimpleReadWrite(listenSecure: true, | 594 testSimpleReadWrite(listenSecure: true, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 testSimpleReadWrite(listenSecure: false, | 626 testSimpleReadWrite(listenSecure: false, |
| 625 connectSecure: false, | 627 connectSecure: false, |
| 626 handshakeBeforeSecure: true, | 628 handshakeBeforeSecure: true, |
| 627 postponeSecure: true, | 629 postponeSecure: true, |
| 628 dropReads: true); | 630 dropReads: true); |
| 629 testPausedSecuringSubscription(false, false); | 631 testPausedSecuringSubscription(false, false); |
| 630 testPausedSecuringSubscription(true, false); | 632 testPausedSecuringSubscription(true, false); |
| 631 testPausedSecuringSubscription(false, true); | 633 testPausedSecuringSubscription(false, true); |
| 632 testPausedSecuringSubscription(true, true); | 634 testPausedSecuringSubscription(true, true); |
| 633 } | 635 } |
| OLD | NEW |