OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
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. | |
4 // | |
5 // VMOptions= | |
6 // VMOptions=--short_socket_read | |
7 // VMOptions=--short_socket_write | |
8 // VMOptions=--short_socket_read --short_socket_write | |
9 | |
10 #import("dart:isolate"); | |
11 #import("dart:io"); | |
12 | |
13 void main() { | |
14 TlsSocket.setCertificateDatabase( | |
15 "/usr/local/google/home/whesse/ssd/dart/runtime/bin/net/pkcert/"); | |
16 // TODO(3593): Use a Dart HTTPS server for this test using TLS server sockets. | |
17 var tls = new TlsSocket("www.google.dk", 443); | |
18 // var tls = new TlsSocket("www.google.dk", 80); | |
19 // var tls = new Socket("www.google.dk", 80); | |
20 String message = ''; | |
21 tls.onConnect = () { | |
22 foo1(); | |
23 var get_list = | |
24 "GET / HTTP/1.0\r\nHost: www.google.dk\r\n\r\n".charCodes(); | |
25 tls.writeList(get_list, 0, 20); | |
26 foo2(); | |
27 tls.writeList(get_list, 20, get_list.length - 20); | |
28 }; | |
29 tls.onData = () { | |
30 foo3(); | |
31 var buffer = new List(2000); | |
32 int len = tls.readList(buffer, 0, 2000); | |
33 var received = new String.fromCharCodes(buffer.getRange(0, len)); | |
34 message = '$message$received'; | |
35 }; | |
36 tls.onClosed = () { | |
37 print(message); | |
38 Expect.isTrue(message.contains('</script></body></html>')); | |
39 tls.close(); | |
40 }; | |
41 } | |
42 | |
43 void foo1() {} | |
Mads Ager (google)
2012/09/28 12:03:57
Remove these.
Bill Hesse
2012/10/31 16:33:29
Done.
| |
44 void foo2() {} | |
45 void foo3() {} | |
46 void foo4() {} | |
OLD | NEW |