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

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

Issue 11794044: Add Stream.fromIterable (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Fix bug hit by new test. Created 7 years, 11 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
Index: tests/lib/async/stream_from_iterable_test.dart
diff --git a/tests/lib/async/stream_from_iterable_test.dart b/tests/lib/async/stream_from_iterable_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4afd889b7523c643b145f6c33b2109480f696de4
--- /dev/null
+++ b/tests/lib/async/stream_from_iterable_test.dart
@@ -0,0 +1,67 @@
+// Copyright (c) 2013, 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 merging streams.
+library dart.test.stream_from_iterable;
+
+import "dart:async";
+import '../../../pkg/unittest/lib/unittest.dart';
+import 'event_helper.dart';
+
+class IterableTest<T> {
+ static int counter = 0;
+ Iterable<T> iterable;
+ IterableTest(this.iterable);
+ void run() {
+ test("stream from iterable ${counter++}", () {
+ Events expected = new Events.fromIterable(iterable);
+ Stream<T> stream = new Stream<T>.fromIterable(iterable);
+ Events actual = new Events.capture(stream);
+ actual.onDone(expectAsync0(() {
+ Expect.listEquals(expected.events, actual.events);
+ }));
+ });
+ }
+}
+
+main() {
+ new IterableTest([]).run();
+ new IterableTest([1]).run();
+ new IterableTest([1, "two", true, null]).run();
+ new IterableTest<int>([1, 2, 3, 4]).run();
+ new IterableTest<String>(["one", "two", "three", "four"]).run();
+ new IterableTest<int>(new Iterable<int>.generate(1000, (i) => i)).run();
+ new IterableTest<String>(new Iterable<int>.generate(1000, (i) => i)
+ .mappedBy((i) => "$i")).run();
+
+ Iterable<int> iter = new Iterable.generate(25, (i) => i * 2);
+ new Stream.fromIterable(iter).toList().then(expectAsync1((actual) {
+ List expected = iter.toList();
+ Expect.equals(25, expected.length);
+ Expect.listEquals(expected, actual);
+ }));
+
+ new Stream.fromIterable(iter)
+ .mappedBy((i) => i * 3)
+ .toList()
+ .then(expectAsync1((actual) {
+ List expected = iter.mappedBy((i) => i * 3).toList();
+ Expect.listEquals(expected, actual);
+ }));
+
+ { // Test pause.
+ Stream stream = new Stream.fromIterable(iter);
+ Events actual = new Events();
+ StreamSubscription subscription;
+ subscription = stream.listen((int value) {
+ actual.add(value);
+ // Do a 10 ms pause during the playback of the iterable.
+ if (value == 20) { subscription.pause(new Future.delayed(10, () {})); }
+ }, onDone: expectAsync0(() {
+ actual.close();
+ Events expected = new Events.fromIterable(iter);
+ Expect.listEquals(expected.events, actual.events);
+ }));
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698