| 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 | 17 |
| 18 SecurityContext untrustedServerContext = new SecurityContext() | 18 SecurityContext untrustedServerContext = new SecurityContext() |
| 19 ..useCertificateChainSync(localFile( | 19 ..useCertificateChain(localFile('certificates/untrusted_server_chain.pem')) |
| 20 'certificates/untrusted_server_chain.pem')) | 20 ..usePrivateKey(localFile('certificates/untrusted_server_key.pem'), |
| 21 ..usePrivateKeySync(localFile('certificates/untrusted_server_key.pem'), | 21 password: 'dartdart'); |
| 22 password: 'dartdart'); | |
| 23 | 22 |
| 24 SecurityContext clientContext = new SecurityContext() | 23 SecurityContext clientContext = new SecurityContext() |
| 25 ..setTrustedCertificatesSync(localFile('certificates/trusted_certs.pem')); | 24 ..setTrustedCertificates(localFile('certificates/trusted_certs.pem')); |
| 26 | 25 |
| 27 Future<SecureServerSocket> runServer() { | 26 Future<SecureServerSocket> runServer() { |
| 28 return HttpServer.bindSecure( | 27 return HttpServer.bindSecure( |
| 29 HOST_NAME, 0, untrustedServerContext, backlog: 5) | 28 HOST_NAME, 0, untrustedServerContext, backlog: 5) |
| 30 .then((server) { | 29 .then((server) { |
| 31 server.listen((HttpRequest request) { | 30 server.listen((HttpRequest request) { |
| 32 request.listen((_) { }, onDone: () { request.response.close(); }); | 31 request.listen((_) { }, onDone: () { request.response.close(); }); |
| 33 }, onError: (e) { if (e is! HandshakeException) throw e; }); | 32 }, onError: (e) { if (e is! HandshakeException) throw e; }); |
| 34 return server; | 33 return server; |
| 35 }); | 34 }); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 53 } | 52 } |
| 54 }); | 53 }); |
| 55 } | 54 } |
| 56 | 55 |
| 57 runServer().then((server) { | 56 runServer().then((server) { |
| 58 clientProcess(server.port).then((_) { | 57 clientProcess(server.port).then((_) { |
| 59 server.close(); | 58 server.close(); |
| 60 }); | 59 }); |
| 61 }); | 60 }); |
| 62 } | 61 } |
| OLD | NEW |