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

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

Issue 1177343004: Add Stream.empty. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Add test, fix impl. Created 5 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
« sdk/lib/async/stream.dart ('K') | « sdk/lib/async/stream_impl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/stream_empty_test.dart
diff --git a/tests/lib/async/stream_empty_test.dart b/tests/lib/async/stream_empty_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..460702c4cc8ed29b8819a14c3a92a439e2648c7a
--- /dev/null
+++ b/tests/lib/async/stream_empty_test.dart
@@ -0,0 +1,57 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// Test empty stream.
+import "package:expect/expect.dart";
+import "dart:async";
+import 'package:async_helper/async_helper.dart';
+
+main() async {
+ unreachable([a,b]) { throw "UNREACHABLE"; }
+ int tick = 0;
+ ticker() { tick++; }
+
+ asyncStart();
+
+ Stream<int> s = const Stream<int>.empty(); // Is const constructor.
+ Expect.isFalse(s is Stream<String>); // Respects type parameter.
+ StreamSubscription<int> sub =
+ s.listen(unreachable, onError: unreachable, onDone: ticker);
+ Expect.isFalse(sub is StreamSubscription<String>); // Type parameter in sub.
+
+ // Doesn't do callback in response to listen.
+ Expect.equals(tick, 0);
+ await sleep(50);
+ // Completes eventually.
+ Expect.equals(tick, 1);
+
+ // It's a broadcast stream - can listen twice.
+ Expect.isTrue(s.isBroadcast);
+ StreamSubscription<int> sub2 =
+ s.listen(unreachable, onError: unreachable, onDone: unreachable);
+ // respects pause.
+ sub2.pause();
+ await sleep(50);
+ // respects cancel.
+ sub2.cancel();
+ await sleep(50);
+ // Still not complete.
Søren Gjesse 2015/06/15 12:57:42 Add Expect.equals(tick, 1); here as well.
Lasse Reichstein Nielsen 2015/06/16 09:25:12 Done.
+
+ StreamSubscription<int> sub3 =
+ s.listen(unreachable, onError: unreachable, onDone: ticker);
+ // respects pause.
+ sub3.pause();
+ Expect.equals(tick, 1);
+ await sleep(50);
+ // Doesn't complete while paused.
+ Expect.equals(tick, 1);
+ sub3.resume();
+ await sleep(50);
+ // Doesn't complete while paused.
Søren Gjesse 2015/06/15 12:57:42 Wrong comment.
Lasse Reichstein Nielsen 2015/06/16 09:25:12 Fixed.
+ Expect.equals(tick, 2);
+
+ asyncEnd();
+}
+
+Future sleep(int ms) => new Future.delayed(new Duration(milliseconds: ms));
« sdk/lib/async/stream.dart ('K') | « sdk/lib/async/stream_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698