| 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 // Client for secure_socket_renegotiate_test, that runs in a subprocess. | 5 // Client for secure_socket_renegotiate_test, that runs in a subprocess. |
| 6 // The test verifies that client certificates work, if the client and server | 6 // The test verifies that client certificates work, if the client and server |
| 7 // are in separate processes, and that connection renegotiation can request | 7 // are in separate processes, and that connection renegotiation can request |
| 8 // a client certificate to be sent. | 8 // a client certificate to be sent. |
| 9 | 9 |
| 10 import "dart:async"; | 10 import "dart:async"; |
| 11 import "dart:convert"; | 11 import "dart:convert"; |
| 12 import "dart:io"; | 12 import "dart:io"; |
| 13 | 13 |
| 14 const HOST_NAME = "localhost"; | 14 const HOST_NAME = "localhost"; |
| 15 String localFile(path) => Platform.script.resolve(path).toFilePath(); | 15 String localFile(path) => Platform.script.resolve(path).toFilePath(); |
| 16 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); |
| 16 | 17 |
| 17 SecurityContext clientContext = new SecurityContext() | 18 SecurityContext clientContext = new SecurityContext() |
| 18 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); | 19 ..setTrustedCertificatesBytes( |
| 20 readLocalFile('certificates/trusted_certs.pem')); |
| 19 | 21 |
| 20 class ExpectException implements Exception { | 22 class ExpectException implements Exception { |
| 21 ExpectException(this.message); | 23 ExpectException(this.message); |
| 22 String toString() => message; | 24 String toString() => message; |
| 23 String message; | 25 String message; |
| 24 } | 26 } |
| 25 | 27 |
| 26 | 28 |
| 27 void expectEquals(expected, actual) { | 29 void expectEquals(expected, actual) { |
| 28 if (actual != expected) { | 30 if (actual != expected) { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 expect(success != true); | 75 expect(success != true); |
| 74 socket.close(); | 76 socket.close(); |
| 75 }); | 77 }); |
| 76 }); | 78 }); |
| 77 } | 79 } |
| 78 | 80 |
| 79 | 81 |
| 80 void main(List<String> args) { | 82 void main(List<String> args) { |
| 81 runClient(int.parse(args[0])); | 83 runClient(int.parse(args[0])); |
| 82 } | 84 } |
| OLD | NEW |