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:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
(...skipping 26 matching lines...) Expand all Loading... |
37 var response = new http.Response.bytes([104, 101, 108, 108, 111], 200); | 37 var response = new http.Response.bytes([104, 101, 108, 108, 111], 200); |
38 expect(response.bodyBytes, equals([104, 101, 108, 108, 111])); | 38 expect(response.bodyBytes, equals([104, 101, 108, 108, 111])); |
39 }); | 39 }); |
40 | 40 |
41 // TODO(nweiz): test that this respects the inferred encoding when issue | 41 // TODO(nweiz): test that this respects the inferred encoding when issue |
42 // 6284 is fixed. | 42 // 6284 is fixed. |
43 }); | 43 }); |
44 | 44 |
45 group('.fromStream()', () { | 45 group('.fromStream()', () { |
46 test('sets body', () { | 46 test('sets body', () { |
47 var stream = new StreamController(); | 47 var controller = new StreamController(); |
48 var streamResponse = new http.StreamedResponse(stream, 200, 13); | 48 var streamResponse = new http.StreamedResponse( |
| 49 controller.stream, 200, 13); |
49 var future = http.Response.fromStream(streamResponse) | 50 var future = http.Response.fromStream(streamResponse) |
50 .then((response) => response.body); | 51 .then((response) => response.body); |
51 expect(future, completion(equals("Hello, world!"))); | 52 expect(future, completion(equals("Hello, world!"))); |
52 | 53 |
53 stream.add([72, 101, 108, 108, 111, 44, 32]); | 54 controller.add([72, 101, 108, 108, 111, 44, 32]); |
54 stream.add([119, 111, 114, 108, 100, 33]); | 55 controller.add([119, 111, 114, 108, 100, 33]); |
55 stream.close(); | 56 controller.close(); |
56 }); | 57 }); |
57 | 58 |
58 test('sets bodyBytes', () { | 59 test('sets bodyBytes', () { |
59 var stream = new StreamController(); | 60 var controller = new StreamController(); |
60 var streamResponse = new http.StreamedResponse(stream, 200, 5); | 61 var streamResponse = new http.StreamedResponse(controller.stream, 200, 5); |
61 var future = http.Response.fromStream(streamResponse) | 62 var future = http.Response.fromStream(streamResponse) |
62 .then((response) => response.bodyBytes); | 63 .then((response) => response.bodyBytes); |
63 expect(future, completion(equals([104, 101, 108, 108, 111]))); | 64 expect(future, completion(equals([104, 101, 108, 108, 111]))); |
64 | 65 |
65 stream.add([104, 101, 108, 108, 111]); | 66 controller.add([104, 101, 108, 108, 111]); |
66 stream.close(); | 67 controller.close(); |
67 }); | 68 }); |
68 }); | 69 }); |
69 } | 70 } |
OLD | NEW |