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

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

Issue 11887016: Make StreamController's unnamed constructor create a single-sub stream. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 11 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') | sdk/lib/async/stream.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:unittest/unittest.dart'; 10 import 'package:unittest/unittest.dart';
(...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 stream = new StreamController.singleSubscription(); 47 var stream = new StreamController();
48 var streamResponse = new http.StreamedResponse(stream, 200, 13); 48 var streamResponse = new http.StreamedResponse(stream, 200, 13);
49 var future = http.Response.fromStream(streamResponse) 49 var future = http.Response.fromStream(streamResponse)
50 .then((response) => response.body); 50 .then((response) => response.body);
51 expect(future, completion(equals("Hello, world!"))); 51 expect(future, completion(equals("Hello, world!")));
52 52
53 stream.add([72, 101, 108, 108, 111, 44, 32]); 53 stream.add([72, 101, 108, 108, 111, 44, 32]);
54 stream.add([119, 111, 114, 108, 100, 33]); 54 stream.add([119, 111, 114, 108, 100, 33]);
55 stream.close(); 55 stream.close();
56 }); 56 });
57 57
58 test('sets bodyBytes', () { 58 test('sets bodyBytes', () {
59 var stream = new StreamController.singleSubscription(); 59 var stream = new StreamController();
60 var streamResponse = new http.StreamedResponse(stream, 200, 5); 60 var streamResponse = new http.StreamedResponse(stream, 200, 5);
61 var future = http.Response.fromStream(streamResponse) 61 var future = http.Response.fromStream(streamResponse)
62 .then((response) => response.bodyBytes); 62 .then((response) => response.bodyBytes);
63 expect(future, completion(equals([104, 101, 108, 108, 111]))); 63 expect(future, completion(equals([104, 101, 108, 108, 111])));
64 64
65 stream.add([104, 101, 108, 108, 111]); 65 stream.add([104, 101, 108, 108, 111]);
66 stream.close(); 66 stream.close();
67 }); 67 });
68 }); 68 });
69 } 69 }
OLDNEW
« no previous file with comments | « pkg/http/test/multipart_test.dart ('k') | sdk/lib/async/stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698