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

Side by Side Diff: tests/standalone/io/stdout_stderr_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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 import "dart:async"; 6 import "dart:async";
7 import "dart:io"; 7 import "dart:io";
8 8
9 callIOSink(IOSink sink) { 9 callIOSink(IOSink sink) {
10 // Call all methods on IOSink. 10 // Call all methods on IOSink.
11 sink.encoding = Encoding.ASCII; 11 sink.encoding = Encoding.ASCII;
12 Expect.equals(Encoding.ASCII, sink.encoding); 12 Expect.equals(Encoding.ASCII, sink.encoding);
13 sink.write("Hello\n"); 13 sink.write("Hello\n");
14 sink.writeln("Hello"); 14 sink.writeln("Hello");
15 sink.writeAll(["H", "e", "l", "lo\n"]); 15 sink.writeAll(["H", "e", "l", "lo\n"]);
16 sink.writeCharCode(72); 16 sink.writeCharCode(72);
17 sink.add([101, 108, 108, 111, 10]); 17 sink.add([101, 108, 108, 111, 10]);
18 18
19 var controller = new StreamController(); 19 var controller = new StreamController(sync: true);
20 var future = sink.addStream(controller.stream); 20 var future = sink.addStream(controller.stream);
21 controller.add([72, 101, 108]); 21 controller.add([72, 101, 108]);
22 controller.add([108, 111, 10]); 22 controller.add([108, 111, 10]);
23 controller.close(); 23 controller.close();
24 24
25 future.then((_) { 25 future.then((_) {
26 controller = new StreamController(); 26 controller = new StreamController(sync: true);
27 controller.stream.pipe(sink); 27 controller.stream.pipe(sink);
28 controller.add([72, 101, 108]); 28 controller.add([72, 101, 108]);
29 controller.add([108, 111, 10]); 29 controller.add([108, 111, 10]);
30 controller.close(); 30 controller.close();
31 }); 31 });
32 } 32 }
33 33
34 main() { 34 main() {
35 callIOSink(stdout); 35 callIOSink(stdout);
36 stdout.done.then((_) { 36 stdout.done.then((_) {
37 callIOSink(stderr); 37 callIOSink(stderr);
38 stderr.done.then((_) { 38 stderr.done.then((_) {
39 stdout.close(); 39 stdout.close();
40 stderr.close(); 40 stderr.close();
41 }); 41 });
42 }); 42 });
43 } 43 }
OLDNEW
« no previous file with comments | « tests/standalone/io/regress_10026_test.dart ('k') | tests/standalone/io/string_decoder_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698