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

Unified Diff: tests/lib/async/stream_state_nonzero_timer_test.dart

Issue 17490002: Make asBroadcastStream take two callbacks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reintroduce zone. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib/async/stream_state_helper.dart ('k') | tests/lib/async/stream_state_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/stream_state_nonzero_timer_test.dart
diff --git a/tests/lib/async/stream_state_nonzero_timer_test.dart b/tests/lib/async/stream_state_nonzero_timer_test.dart
index 38c14a6790454a3c57ef4b79f7cd5fc8af4af6aa..af459b02e89481ed1144494f5ea1b96ead744f5d 100644
--- a/tests/lib/async/stream_state_nonzero_timer_test.dart
+++ b/tests/lib/async/stream_state_nonzero_timer_test.dart
@@ -13,17 +13,15 @@ import "stream_state_helper.dart";
const ms5 = const Duration(milliseconds: 5);
-main() {
- mainTest(false);
- // TODO(floitsch): reenable?
- // mainTest(true);
-}
+// Testing pause/resume, some with non-zero duration. This only makes sense for
+// non-broadcast streams, since broadcast stream subscriptions handle their
+// own pauses.
-mainTest(bool broadcast) {
- var p = broadcast ? "BC" : "SC";
+main() {
+ var p = "StreamController";
test("$p-sub-data/pause/resume/pause/resume-done", () {
- var t = new StreamProtocolTest(broadcast: broadcast);
+ var t = new StreamProtocolTest();
t..expectListen()
..expectData(42, () {
t.pause();
@@ -33,26 +31,26 @@ mainTest(bool broadcast) {
..expectPause(() { t.resume(); })
..expectResume(() { t.close(); })
..expectDone()
- ..expectCancel();
+ ..expectCancel(t.terminate);
t..listen()..add(42);
});
test("$p-sub-data/pause-done", () {
- var t = new StreamProtocolTest(broadcast: broadcast);
+ var t = new StreamProtocolTest();
t..expectListen()
..expectData(42, () {
t.pause(new Future.delayed(ms5, () => null));
})
..expectPause()
..expectDone()
- ..expectCancel();
+ ..expectCancel(t.terminate);
// We are calling "close" while the controller is actually paused,
// and it will stay paused until the pending events are sent.
t..listen()..add(42)..close();
});
test("$p-sub-data/pause-resume/done", () {
- var t = new StreamProtocolTest(broadcast: broadcast);
+ var t = new StreamProtocolTest();
t..expectListen()
..expectData(42, () {
t.pause(new Future.delayed(ms5, () => null));
@@ -60,12 +58,12 @@ mainTest(bool broadcast) {
..expectPause()
..expectResume(t.close)
..expectDone()
- ..expectCancel();
+ ..expectCancel(t.terminate);
t..listen()..add(42);
});
test("$p-sub-data/data+pause-data-resume-done", () {
- var t = new StreamProtocolTest(broadcast: broadcast);
+ var t = new StreamProtocolTest();
t..expectListen()
..expectData(42, () {
t.add(43);
@@ -78,12 +76,12 @@ mainTest(bool broadcast) {
..expectData(43)
..expectResume(t.close)
..expectDone()
- ..expectCancel();
+ ..expectCancel(t.terminate);
t..listen()..add(42);
});
test("$p-pause-during-callback", () {
- var t = new StreamProtocolTest(broadcast: broadcast);
+ var t = new StreamProtocolTest();
t..expectListen()
..expectData(42, () {
t.pause();
@@ -97,7 +95,7 @@ mainTest(bool broadcast) {
t.close();
})
..expectDone()
- ..expectCancel();
+ ..expectCancel(t.terminate);
t..listen()
..add(42);
});
« no previous file with comments | « tests/lib/async/stream_state_helper.dart ('k') | tests/lib/async/stream_state_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698