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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Test merging streams.
6 library dart.test.stream_from_iterable;
7
8 import "dart:async";
9 import '../../../pkg/unittest/lib/unittest.dart';
10 import 'event_helper.dart';
11
12 class IterableTest<T> {
13 static int counter = 0;
14 Iterable<T> iterable;
15 IterableTest(this.iterable);
16 void run() {
17 test("stream from iterable ${counter++}", () {
18 Events expected = new Events.fromIterable(iterable);
19 Stream<T> stream = new Stream<T>.fromIterable(iterable);
20 Events actual = new Events.capture(stream);
21 actual.onDone(expectAsync0(() {
22 Expect.listEquals(expected.events, actual.events);
23 }));
24 });
25 }
26 }
27
28 main() {
29 new IterableTest([]).run();
30 new IterableTest([1]).run();
31 new IterableTest([1, "two", true, null]).run();
32 new IterableTest<int>([1, 2, 3, 4]).run();
33 new IterableTest<String>(["one", "two", "three", "four"]).run();
34 new IterableTest<int>(new Iterable<int>.generate(1000, (i) => i)).run();
35 new IterableTest<String>(new Iterable<int>.generate(1000, (i) => i)
36 .mappedBy((i) => "$i")).run();
37
38 Iterable<int> iter = new Iterable.generate(25, (i) => i * 2);
39 new Stream.fromIterable(iter).toList().then(expectAsync1((actual) {
40 List expected = iter.toList();
41 Expect.equals(25, expected.length);
42 Expect.listEquals(expected, actual);
43 }));
44
45 new Stream.fromIterable(iter)
46 .mappedBy((i) => i * 3)
47 .toList()
48 .then(expectAsync1((actual) {
49 List expected = iter.mappedBy((i) => i * 3).toList();
50 Expect.listEquals(expected, actual);
51 }));
52
53 { // Test pause.
54 Stream stream = new Stream.fromIterable(iter);
55 Events actual = new Events();
56 StreamSubscription subscription;
57 subscription = stream.listen((int value) {
58 actual.add(value);
59 // Do a 10 ms pause during the playback of the iterable.
60 if (value == 20) { subscription.pause(new Future.delayed(10, () {})); }
61 }, onDone: expectAsync0(() {
62 actual.close();
63 Events expected = new Events.fromIterable(iter);
64 Expect.listEquals(expected.events, actual.events);
65 }));
66 }
67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698