| 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 // This test verifies that secure connections that fail due to | 5 // This test verifies that secure connections that fail due to |
| 6 // unauthenticated certificates throw exceptions in HttpClient. | 6 // unauthenticated certificates throw exceptions in HttpClient. |
| 7 | 7 |
| 8 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
| 9 import "package:path/path.dart"; | 9 import "package:path/path.dart"; |
| 10 import "dart:async"; | 10 import "dart:async"; |
| 11 import "dart:io"; | 11 import "dart:io"; |
| 12 | 12 |
| 13 const HOST_NAME = "localhost"; | 13 const HOST_NAME = "localhost"; |
| 14 const CERTIFICATE = "localhost_cert"; | 14 const CERTIFICATE = "localhost_cert"; |
| 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 untrustedServerContext = new SecurityContext() | 18 SecurityContext untrustedServerContext = new SecurityContext() |
| 20 ..useCertificateChainBytes(readLocalFile( | 19 ..useCertificateChainSync(localFile( |
| 21 'certificates/untrusted_server_chain.pem')) | 20 'certificates/untrusted_server_chain.pem')) |
| 22 ..usePrivateKeyBytes(readLocalFile('certificates/untrusted_server_key.pem'), | 21 ..usePrivateKeySync(localFile('certificates/untrusted_server_key.pem'), |
| 23 password: 'dartdart'); | 22 password: 'dartdart'); |
| 24 | 23 |
| 25 SecurityContext clientContext = new SecurityContext() | 24 SecurityContext clientContext = new SecurityContext() |
| 26 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); | 25 ..setTrustedCertificatesSync(localFile('certificates/trusted_certs.pem')); |
| 27 | 26 |
| 28 Future<SecureServerSocket> runServer() { | 27 Future<SecureServerSocket> runServer() { |
| 29 return HttpServer.bindSecure( | 28 return HttpServer.bindSecure( |
| 30 HOST_NAME, 0, untrustedServerContext, backlog: 5) | 29 HOST_NAME, 0, untrustedServerContext, backlog: 5) |
| 31 .then((server) { | 30 .then((server) { |
| 32 server.listen((HttpRequest request) { | 31 server.listen((HttpRequest request) { |
| 33 request.listen((_) { }, onDone: () { request.response.close(); }); | 32 request.listen((_) { }, onDone: () { request.response.close(); }); |
| 34 }, onError: (e) { if (e is! HandshakeException) throw e; }); | 33 }, onError: (e) { if (e is! HandshakeException) throw e; }); |
| 35 return server; | 34 return server; |
| 36 }); | 35 }); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 54 } | 53 } |
| 55 }); | 54 }); |
| 56 } | 55 } |
| 57 | 56 |
| 58 runServer().then((server) { | 57 runServer().then((server) { |
| 59 clientProcess(server.port).then((_) { | 58 clientProcess(server.port).then((_) { |
| 60 server.close(); | 59 server.close(); |
| 61 }); | 60 }); |
| 62 }); | 61 }); |
| 63 } | 62 } |
| OLD | NEW |