| 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 library mock_client_test; | 5 library mock_client_test; |
| 6 | 6 |
| 7 import 'dart:io'; | 7 import 'dart:io'; |
| 8 import 'dart:json'; | 8 import 'dart:json'; |
| 9 import 'dart:uri'; | 9 import 'dart:uri'; |
| 10 | 10 |
| 11 // TODO(nweiz): make these "package:" imports. | 11 import 'package:unittest/unittest.dart'; |
| 12 import '../../unittest/lib/unittest.dart'; | 12 import 'package:http/http.dart' as http; |
| 13 import '../lib/http.dart' as http; | 13 import 'package:http/testing.dart'; |
| 14 import '../lib/testing.dart'; | 14 import 'package:http/src/utils.dart'; |
| 15 import '../lib/src/utils.dart'; | |
| 16 import 'utils.dart'; | 15 import 'utils.dart'; |
| 17 | 16 |
| 18 void main() { | 17 void main() { |
| 19 test('handles a request', () { | 18 test('handles a request', () { |
| 20 var client = new MockClient((request) { | 19 var client = new MockClient((request) { |
| 21 return new Future.immediate(new http.Response( | 20 return new Future.immediate(new http.Response( |
| 22 JSON.stringify(request.bodyFields), 200, | 21 JSON.stringify(request.bodyFields), 200, |
| 23 request: request, headers: {'content-type': 'application/json'})); | 22 request: request, headers: {'content-type': 'application/json'})); |
| 24 }); | 23 }); |
| 25 | 24 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 56 |
| 58 test('handles a request with no body', () { | 57 test('handles a request with no body', () { |
| 59 var client = new MockClient((request) { | 58 var client = new MockClient((request) { |
| 60 return new Future.immediate(new http.Response('you did it', 200)); | 59 return new Future.immediate(new http.Response('you did it', 200)); |
| 61 }); | 60 }); |
| 62 | 61 |
| 63 expect(client.read("http://example.com/foo"), | 62 expect(client.read("http://example.com/foo"), |
| 64 completion(equals('you did it'))); | 63 completion(equals('you did it'))); |
| 65 }); | 64 }); |
| 66 } | 65 } |
| OLD | NEW |