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 Expect.throws( | 34 var x = 7; |
35 () { | 35 SecureSocket.connect(host, 443, onBadCertificate: x) |
36 var x = 7; | 36 .catchError((e) {}, |
37 SecureSocket.connect(host, 443, onBadCertificate: x); | 37 test: (e) => e is ArgumentError || e is TypeError); |
38 }, | |
39 (e) => e is ArgumentError || e is TypeError); | |
40 | 38 |
41 bool badCertificateCallback(X509Certificate certificate) { | 39 bool badCertificateCallback(X509Certificate certificate) { |
42 Expect.isTrue(certificate.subject.contains("O=Google Inc")); | 40 Expect.isTrue(certificate.subject.contains("O=Google Inc")); |
43 Expect.isTrue(certificate.startValidity.isBefore(new DateTime.now())); | 41 Expect.isTrue(certificate.startValidity.isBefore(new DateTime.now())); |
44 Expect.isTrue(certificate.endValidity.isAfter(new DateTime.now())); | 42 Expect.isTrue(certificate.endValidity.isAfter(new DateTime.now())); |
45 return acceptCertificate; | 43 return acceptCertificate; |
46 }; | 44 }; |
47 | 45 |
48 return SecureSocket.connect(host, | 46 return SecureSocket.connect(host, |
49 443, | 47 443, |
50 onBadCertificate: badCertificateCallback) | 48 onBadCertificate: badCertificateCallback) |
51 .then((socket) { | 49 .then((socket) { |
52 Expect.isTrue(acceptCertificate); | 50 Expect.isTrue(acceptCertificate); |
53 socket.write("GET / HTTP/1.0\r\nHost: $host\r\n\r\n"); | 51 socket.write("GET / HTTP/1.0\r\nHost: $host\r\n\r\n"); |
54 socket.close(); | 52 socket.close(); |
55 return socket.fold(<int>[], (message, data) => message..addAll(data)) | 53 return socket.fold(<int>[], (message, data) => message..addAll(data)) |
56 .then((message) { | 54 .then((message) { |
57 String received = new String.fromCharCodes(message); | 55 String received = new String.fromCharCodes(message); |
58 Expect.isTrue(received.contains('</body></html>')); | 56 Expect.isTrue(received.contains('</body></html>')); |
59 }); | 57 }); |
60 }).catchError((e) { | 58 }).catchError((e) { |
61 Expect.isFalse(acceptCertificate); | 59 Expect.isFalse(acceptCertificate); |
62 }); | 60 }); |
63 } | 61 } |
OLD | NEW |