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 // VMOptions= | 5 // VMOptions= |
6 // VMOptions=--short_socket_read | 6 // VMOptions=--short_socket_read |
7 // VMOptions=--short_socket_write | 7 // VMOptions=--short_socket_write |
8 // VMOptions=--short_socket_write --short_socket_read | 8 // VMOptions=--short_socket_write --short_socket_read |
9 // The --short_socket_write option does not work with external server | 9 // The --short_socket_write option does not work with external server |
10 // www.google.dk. Add this to the test when we have secure server sockets. | 10 // www.google.dk. Add this to the test when we have secure server sockets. |
(...skipping 13 matching lines...) Expand all Loading... |
24 acceptCertificate: true).then((_) { | 24 acceptCertificate: true).then((_) { |
25 keepAlive.close(); | 25 keepAlive.close(); |
26 // TODO(7153): Open a receive port, and close it when we get here. | 26 // TODO(7153): Open a receive port, and close it when we get here. |
27 // Currently, it can happen that neither onClosed or onError is called. | 27 // Currently, it can happen that neither onClosed or onError is called. |
28 // So we never reach this point. Diagnose this and fix. | 28 // So we never reach this point. Diagnose this and fix. |
29 }); | 29 }); |
30 }); | 30 }); |
31 } | 31 } |
32 | 32 |
33 Future testCertificateCallback({String host, bool acceptCertificate}) { | 33 Future testCertificateCallback({String host, bool acceptCertificate}) { |
34 try { | 34 Expect.throws( |
35 var x = 7; | 35 () { |
36 SecureSocket.connect(host, 443, onBadCertificate: x) | 36 var x = 7; |
37 .catchError((e) {}, test: (e) => e is ArgumentError); | 37 SecureSocket.connect(host, 443, onBadCertificate: x); |
38 } on TypeError catch (e) { | 38 }, |
39 } | 39 (e) => e is ArgumentError || e is TypeError); |
40 | 40 |
41 bool badCertificateCallback(X509Certificate certificate) { | 41 bool badCertificateCallback(X509Certificate certificate) { |
42 Expect.isTrue(certificate.subject.contains("O=Google Inc")); | 42 Expect.isTrue(certificate.subject.contains("O=Google Inc")); |
43 Expect.isTrue(certificate.startValidity.isBefore(new DateTime.now())); | 43 Expect.isTrue(certificate.startValidity.isBefore(new DateTime.now())); |
44 Expect.isTrue(certificate.endValidity.isAfter(new DateTime.now())); | 44 Expect.isTrue(certificate.endValidity.isAfter(new DateTime.now())); |
45 return acceptCertificate; | 45 return acceptCertificate; |
46 }; | 46 }; |
47 | 47 |
48 return SecureSocket.connect(host, | 48 return SecureSocket.connect(host, |
49 443, | 49 443, |
50 onBadCertificate: badCertificateCallback) | 50 onBadCertificate: badCertificateCallback) |
51 .then((socket) { | 51 .then((socket) { |
52 Expect.isTrue(acceptCertificate); | 52 Expect.isTrue(acceptCertificate); |
53 socket.write("GET / HTTP/1.0\r\nHost: $host\r\n\r\n"); | 53 socket.write("GET / HTTP/1.0\r\nHost: $host\r\n\r\n"); |
54 socket.close(); | 54 socket.close(); |
55 return socket.fold(<int>[], (message, data) => message..addAll(data)) | 55 return socket.fold(<int>[], (message, data) => message..addAll(data)) |
56 .then((message) { | 56 .then((message) { |
57 String received = new String.fromCharCodes(message); | 57 String received = new String.fromCharCodes(message); |
58 Expect.isTrue(received.contains('</body></html>')); | 58 Expect.isTrue(received.contains('</body></html>')); |
59 }); | 59 }); |
60 }).catchError((e) { | 60 }).catchError((e) { |
61 Expect.isFalse(acceptCertificate); | 61 Expect.isFalse(acceptCertificate); |
62 }); | 62 }); |
63 } | 63 } |
OLD | NEW |