| 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 response_test; | 5 library response_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 | 9 |
| 10 import 'package:http/http.dart' as http; |
| 10 import 'package:unittest/unittest.dart'; | 11 import 'package:unittest/unittest.dart'; |
| 11 import '../lib/http.dart' as http; | |
| 12 | 12 |
| 13 void main() { | 13 void main() { |
| 14 group('()', () { | 14 group('()', () { |
| 15 test('sets body', () { | 15 test('sets body', () { |
| 16 var response = new http.Response("Hello, world!", 200); | 16 var response = new http.Response("Hello, world!", 200); |
| 17 expect(response.body, equals("Hello, world!")); | 17 expect(response.body, equals("Hello, world!")); |
| 18 }); | 18 }); |
| 19 | 19 |
| 20 test('sets bodyBytes', () { | 20 test('sets bodyBytes', () { |
| 21 var response = new http.Response("Hello, world!", 200); | 21 var response = new http.Response("Hello, world!", 200); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 var streamResponse = new http.StreamedResponse(controller.stream, 200, 5); | 61 var streamResponse = new http.StreamedResponse(controller.stream, 200, 5); |
| 62 var future = http.Response.fromStream(streamResponse) | 62 var future = http.Response.fromStream(streamResponse) |
| 63 .then((response) => response.bodyBytes); | 63 .then((response) => response.bodyBytes); |
| 64 expect(future, completion(equals([104, 101, 108, 108, 111]))); | 64 expect(future, completion(equals([104, 101, 108, 108, 111]))); |
| 65 | 65 |
| 66 controller.add([104, 101, 108, 108, 111]); | 66 controller.add([104, 101, 108, 108, 111]); |
| 67 controller.close(); | 67 controller.close(); |
| 68 }); | 68 }); |
| 69 }); | 69 }); |
| 70 } | 70 } |
| OLD | NEW |