| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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:io"); | 5 #import("dart:io"); |
| 6 #import("dart:uri"); | 6 #import("dart:uri"); |
| 7 #import("dart:isolate"); | 7 #import("dart:isolate"); |
| 8 | 8 |
| 9 void testGoogle() { | 9 void testGoogle() { |
| 10 HttpClient client = new HttpClient(); | 10 HttpClient client = new HttpClient(); |
| 11 var conn = client.get('www.google.com', 80, '/'); | 11 var conn = client.get('www.google.com', 80, '/'); |
| 12 | 12 |
| 13 conn.onRequest = (HttpClientRequest request) { | 13 conn.onRequest = (HttpClientRequest request) { |
| 14 request.outputStream.close(); | 14 request.outputStream.close(); |
| 15 }; | 15 }; |
| 16 conn.onResponse = (HttpClientResponse response) { | 16 conn.onResponse = (HttpClientResponse response) { |
| 17 Expect.isTrue(response.statusCode < 500); | 17 Expect.isTrue(response.statusCode < 500); |
| 18 response.inputStream.onData = () { | 18 response.inputStream.onData = () { |
| 19 response.inputStream.read(); | 19 response.inputStream.read(); |
| 20 }; | 20 }; |
| 21 response.inputStream.onClosed = () { | 21 response.inputStream.onClosed = () { |
| 22 client.shutdown(); | 22 client.shutdown(); |
| 23 }; | 23 }; |
| 24 }; | 24 }; |
| 25 conn.onError = (error) => Expect.fail("Unexpected IO error"); | 25 conn.onError = (error) => Expect.fail("Unexpected IO error $error"); |
| 26 } | 26 } |
| 27 | 27 |
| 28 int testGoogleUrlCount = 0; | 28 int testGoogleUrlCount = 0; |
| 29 void testGoogleUrl() { | 29 void testGoogleUrl() { |
| 30 HttpClient client = new HttpClient(); | 30 HttpClient client = new HttpClient(); |
| 31 | 31 |
| 32 void testUrl(String url) { | 32 void testUrl(String url) { |
| 33 var requestUri = new Uri.fromString(url); | 33 var requestUri = new Uri.fromString(url); |
| 34 var conn = client.getUrl(requestUri); | 34 var conn = client.getUrl(requestUri); |
| 35 | 35 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 port.close(); // We expect onError to be called, due to bad host name. | 77 port.close(); // We expect onError to be called, due to bad host name. |
| 78 }; | 78 }; |
| 79 } | 79 } |
| 80 | 80 |
| 81 void main() { | 81 void main() { |
| 82 testGoogle(); | 82 testGoogle(); |
| 83 testGoogleUrl(); | 83 testGoogleUrl(); |
| 84 testInvalidUrl(); | 84 testInvalidUrl(); |
| 85 testBadHostName(); | 85 testBadHostName(); |
| 86 } | 86 } |
| OLD | NEW |