OLD | NEW |
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:convert"; |
7 import "dart:io"; | 8 import "dart:io"; |
8 | 9 |
9 callIOSink(IOSink sink) { | 10 callIOSink(IOSink sink) { |
10 // Call all methods on IOSink. | 11 // Call all methods on IOSink. |
11 sink.encoding = Encoding.ASCII; | 12 sink.encoding = ASCII; |
12 Expect.equals(Encoding.ASCII, sink.encoding); | 13 Expect.equals(ASCII, sink.encoding); |
13 sink.write("Hello\n"); | 14 sink.write("Hello\n"); |
14 sink.writeln("Hello"); | 15 sink.writeln("Hello"); |
15 sink.writeAll(["H", "e", "l", "lo\n"]); | 16 sink.writeAll(["H", "e", "l", "lo\n"]); |
16 sink.writeCharCode(72); | 17 sink.writeCharCode(72); |
17 sink.add([101, 108, 108, 111, 10]); | 18 sink.add([101, 108, 108, 111, 10]); |
18 | 19 |
19 var controller = new StreamController(sync: true); | 20 var controller = new StreamController(sync: true); |
20 var future = sink.addStream(controller.stream); | 21 var future = sink.addStream(controller.stream); |
21 controller.add([72, 101, 108]); | 22 controller.add([72, 101, 108]); |
22 controller.add([108, 111, 10]); | 23 controller.add([108, 111, 10]); |
(...skipping 11 matching lines...) Expand all Loading... |
34 main() { | 35 main() { |
35 callIOSink(stdout); | 36 callIOSink(stdout); |
36 stdout.done.then((_) { | 37 stdout.done.then((_) { |
37 callIOSink(stderr); | 38 callIOSink(stderr); |
38 stderr.done.then((_) { | 39 stderr.done.then((_) { |
39 stdout.close(); | 40 stdout.close(); |
40 stderr.close(); | 41 stderr.close(); |
41 }); | 42 }); |
42 }); | 43 }); |
43 } | 44 } |
OLD | NEW |