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