Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: pkg/http/test/response_test.dart

Issue 16125005: Make new StreamController be async by default. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/http/test/multipart_test.dart ('k') | pkg/logging/lib/logging.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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:http/http.dart' as http;
(...skipping 26 matching lines...) Expand all
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 controller = new StreamController(); 47 var controller = new StreamController(sync: true);
48 var streamResponse = new http.StreamedResponse( 48 var streamResponse = new http.StreamedResponse(
49 controller.stream, 200, 13); 49 controller.stream, 200, 13);
50 var future = http.Response.fromStream(streamResponse) 50 var future = http.Response.fromStream(streamResponse)
51 .then((response) => response.body); 51 .then((response) => response.body);
52 expect(future, completion(equals("Hello, world!"))); 52 expect(future, completion(equals("Hello, world!")));
53 53
54 controller.add([72, 101, 108, 108, 111, 44, 32]); 54 controller.add([72, 101, 108, 108, 111, 44, 32]);
55 controller.add([119, 111, 114, 108, 100, 33]); 55 controller.add([119, 111, 114, 108, 100, 33]);
56 controller.close(); 56 controller.close();
57 }); 57 });
58 58
59 test('sets bodyBytes', () { 59 test('sets bodyBytes', () {
60 var controller = new StreamController(); 60 var controller = new StreamController(sync: true);
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 }
OLDNEW
« no previous file with comments | « pkg/http/test/multipart_test.dart ('k') | pkg/logging/lib/logging.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698