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 that tests that a certificate authority certificate loaded | 5 // Client that tests that a certificate authority certificate loaded |
6 // at runtime can be used to verify a certificate chain. The server it | 6 // at runtime can be used to verify a certificate chain. The server it |
7 // connects to uses localhost_cert, signed by myauthority_cert, to connect | 7 // connects to uses localhost_cert, signed by myauthority_cert, to connect |
8 // securely. | 8 // securely. |
9 | 9 |
10 import 'dart:io'; | 10 import 'dart:io'; |
11 | 11 |
12 void main() { | 12 void main() { |
13 int port = int.parse(new Options().arguments[0]); | 13 int port = int.parse(new Options().arguments[0]); |
14 String certificate = new Options().arguments[1]; | 14 String certificate = new Options().arguments[1]; |
15 SecureSocket.initialize(); | 15 SecureSocket.initialize(); |
16 // SecureSocket.initialize(database: "/usr/local/google/home/whesse/ssd/dart/ tests/standalone/io/pkcert", password: 'dartdart', readOnly: false); | |
Søren Gjesse
2013/08/08 19:03:42
Long line and absolute path to your home dir.
| |
16 var mycert = new File(certificate).readAsBytesSync(); | 17 var mycert = new File(certificate).readAsBytesSync(); |
17 bool threw = false; | 18 bool threw = false; |
18 try { | 19 try { |
19 SecureSocket.addCertificate("I am not a cert".codeUnits, | 20 SecureSocket.addCertificate("I am not a cert".codeUnits, |
20 SecureSocket.TRUST_ISSUE_SERVER_CERTIFICATES); | 21 SecureSocket.TRUST_ISSUE_SERVER_CERTIFICATES); |
21 } on CertificateException catch (e) { | 22 } on CertificateException catch (e) { |
22 threw = true; | 23 threw = true; |
23 } | 24 } |
24 if (!threw) throw new AssertException("Expected bad certificate to throw"); | 25 if (!threw) throw "Expected bad certificate to throw"; |
25 | 26 |
26 threw = false; | 27 threw = false; |
27 try { | 28 try { |
28 SecureSocket.addCertificate(mycert, "Trust me, I'm a string"); | 29 SecureSocket.addCertificate(mycert, "Trust me, I'm a string"); |
29 } on CertificateException catch (e) { | 30 } on CertificateException catch (e) { |
30 threw = true; | 31 threw = true; |
31 } | 32 } |
32 if (!threw) throw new AssertException("Expected bad trust string to throw"); | 33 if (!threw) throw "Expected bad trust string to throw"; |
33 | 34 |
34 SecureSocket.addCertificate(mycert, | 35 SecureSocket.addCertificate(mycert, |
35 SecureSocket.TRUST_ISSUE_SERVER_CERTIFICATES); | 36 SecureSocket.TRUST_ISSUE_SERVER_CERTIFICATES); |
37 | |
36 SecureSocket.connect('localhost', port).then((SecureSocket socket) { | 38 SecureSocket.connect('localhost', port).then((SecureSocket socket) { |
37 socket.writeln("hello world"); | 39 socket.writeln('hello world'); |
38 socket.listen((data) { }); | 40 socket.listen((data) { }); |
39 socket.close(); | 41 return socket.close(); |
42 }).then((_) { | |
43 SecureSocket.changeTrust('myauthority_cert', ',,'); | |
44 return SecureSocket.connect('localhost', port); | |
45 }).then((_) { | |
46 throw "Expected untrusted authority to stop connection"; | |
47 }, onError: (e) { | |
48 if (e is! CertificateException) throw e; | |
49 }).then((_) { | |
50 SecureSocket.changeTrust('myauthority_cert', 'C,,'); | |
51 return SecureSocket.connect('localhost', port); | |
52 }).then((SecureSocket socket) { | |
53 socket.writeln('hello world'); | |
54 socket.listen((data) { }); | |
55 return socket.close(); | |
56 }).then((_) { | |
57 SecureSocket.removeCertificate('myauthority_cert'); | |
58 return SecureSocket.connect('localhost', port); | |
59 }).then((_) { | |
60 throw "Expected untrusted root to stop connection"; | |
61 }, onError: (e) { | |
62 if (e is! CertificateException) throw e; | |
63 }).then((_) { | |
64 print('SUCCESS'); // Checked by parent process. | |
40 }); | 65 }); |
41 } | 66 } |
OLD | NEW |