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 library http_test; | 5 library http_test; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 | 8 |
| 9 import 'package:http/http.dart' as http; |
9 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
10 import '../lib/http.dart' as http; | 11 |
11 import 'utils.dart'; | 12 import 'utils.dart'; |
12 | 13 |
13 main() { | 14 main() { |
14 group('http.', () { | 15 group('http.', () { |
15 tearDown(stopServer); | 16 tearDown(stopServer); |
16 | 17 |
17 test('head', () { | 18 test('head', () { |
18 expect(startServer().then((_) { | 19 expect(startServer().then((_) { |
19 expect(http.head(serverUrl).then((response) { | 20 expect(http.head(serverUrl).then((response) { |
20 expect(response.statusCode, equals(200)); | 21 expect(response.statusCode, equals(200)); |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 }), completes); | 204 }), completes); |
204 }); | 205 }); |
205 | 206 |
206 test('readBytes throws an error for a 4** status code', () { | 207 test('readBytes throws an error for a 4** status code', () { |
207 expect(startServer().then((_) { | 208 expect(startServer().then((_) { |
208 expect(http.readBytes(serverUrl.resolve('/error')), throwsHttpException)
; | 209 expect(http.readBytes(serverUrl.resolve('/error')), throwsHttpException)
; |
209 }), completes); | 210 }), completes); |
210 }); | 211 }); |
211 }); | 212 }); |
212 } | 213 } |
OLD | NEW |