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 import "dart:async"; | 5 import "dart:async"; |
6 import "dart:io"; | 6 import "dart:io"; |
7 | 7 |
8 import "package:async_helper/async_helper.dart"; | 8 import "package:async_helper/async_helper.dart"; |
9 import "package:expect/expect.dart"; | 9 import "package:expect/expect.dart"; |
10 import "package:path/path.dart"; | 10 import "package:path/path.dart"; |
11 | 11 |
12 const HOST_NAME = "localhost"; | 12 const HOST_NAME = "localhost"; |
13 String localFile(path) => Platform.script.resolve(path).toFilePath(); | 13 String localFile(path) => Platform.script.resolve(path).toFilePath(); |
| 14 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); |
14 | 15 |
15 SecurityContext serverContext = new SecurityContext() | 16 SecurityContext serverContext = new SecurityContext() |
16 ..useCertificateChain(localFile('certificates/server_chain.pem')) | 17 ..useCertificateChain(localFile('certificates/server_chain.pem')) |
17 ..usePrivateKey(localFile('certificates/server_key.pem'), | 18 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'), |
18 password: 'dartdart'); | 19 password: 'dartdart'); |
19 // TODO: Specify which client certificate roots to trust. | 20 // TODO: Specify which client certificate roots to trust. |
20 | 21 |
21 SecurityContext clientContext = new SecurityContext() | 22 SecurityContext clientContext = new SecurityContext() |
22 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')) | 23 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')) |
23 // TODO: Set a client certificate here. | 24 // TODO: Set a client certificate here. |
24 ..useCertificateChain(localFile('certificates/server_chain.pem')) | 25 ..useCertificateChain(localFile('certificates/server_chain.pem')) |
25 ..usePrivateKey(localFile('certificates/server_key.pem'), | 26 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'), |
26 password: 'dartdart'); | 27 password: 'dartdart'); |
27 | 28 |
28 void main() { | 29 void main() { |
29 asyncStart(); | 30 asyncStart(); |
30 HttpServer.bindSecure(HOST_NAME, | 31 HttpServer.bindSecure(HOST_NAME, |
31 0, | 32 0, |
32 serverContext, | 33 serverContext, |
33 backlog: 5, | 34 backlog: 5, |
34 requestClientCertificate: true).then((server) { | 35 requestClientCertificate: true).then((server) { |
35 server.listen((HttpRequest request) { | 36 server.listen((HttpRequest request) { |
36 Expect.isNotNull(request.certificate); | 37 Expect.isNotNull(request.certificate); |
(...skipping 13 matching lines...) Expand all Loading... |
50 }) | 51 }) |
51 .then((message) { | 52 .then((message) { |
52 String received = new String.fromCharCodes(message); | 53 String received = new String.fromCharCodes(message); |
53 Expect.equals(received, "Hello"); | 54 Expect.equals(received, "Hello"); |
54 client.close(); | 55 client.close(); |
55 server.close(); | 56 server.close(); |
56 asyncEnd(); | 57 asyncEnd(); |
57 }); | 58 }); |
58 }); | 59 }); |
59 } | 60 } |
OLD | NEW |