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

Side by Side Diff: tests/lib/async/wait_for_cancel_test.dart

Issue 1284223005: Forward cancel subscription in stream pipes. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comment. Created 5 years, 4 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
« no previous file with comments | « tests/language/language.status ('k') | no next file » | 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 "dart:async"; 5 import "dart:async";
6 import "package:expect/expect.dart"; 6 import "package:expect/expect.dart";
7 import "package:async_helper/async_helper.dart"; 7 import "package:async_helper/async_helper.dart";
8 8
9 Stream makeStream(int n) async* { 9 main() {
10 for (int i = 0; i < n; i++) yield i; 10 asyncStart();
11 }
12 11
13 main() { 12 bool waitedForCancel = false;
14 f(Stream s) async {
15 var r = 0;
16 await for(var v in s.take(5)) r += v;
17 return r;
18 }
19 13
20 asyncStart(); 14 var controller = new StreamController(
21 f(makeStream(10)).then((v) { 15 onCancel: () => new Future(() => waitedForCancel = true));
22 Expect.equals(10, v); 16 var sub = controller.stream.take(1).listen((x) {
17 Expect.fail("onData should not be called");
18 });
19 var cancelFuture = sub.cancel();
20 Expect.isNotNull(cancelFuture);
21 cancelFuture.then((_) {
22 Expect.isTrue(waitedForCancel);
23 asyncEnd(); 23 asyncEnd();
24 }); 24 });
25 } 25 }
26
OLDNEW
« no previous file with comments | « tests/language/language.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698