OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Test the Stream.single method. | 5 // Test the Stream.single method. |
6 library stream_single_test; | 6 library stream_single_test; |
7 | 7 |
8 import "package:expect/expect.dart"; | |
9 import 'dart:async'; | 8 import 'dart:async'; |
10 import 'package:unittest/unittest.dart'; | 9 import 'package:test/test.dart'; |
11 import 'event_helper.dart'; | 10 import 'event_helper.dart'; |
12 | 11 |
13 main() { | 12 main() { |
14 test("single", () { | 13 test("single", () { |
15 StreamController c = new StreamController(sync: true); | 14 StreamController c = new StreamController(sync: true); |
16 Future f = c.stream.single; | 15 Future f = c.stream.single; |
17 f.then(expectAsync((v) { Expect.equals(42, v);})); | 16 f.then(expectAsync((v) { expect(42, equals(v));})); |
18 new Events.fromIterable([42]).replay(c); | 17 new Events.fromIterable([42]).replay(c); |
19 }); | 18 }); |
20 | 19 |
21 test("single empty", () { | 20 test("single empty", () { |
22 StreamController c = new StreamController(sync: true); | 21 StreamController c = new StreamController(sync: true); |
23 Future f = c.stream.single; | 22 Future f = c.stream.single; |
24 f.catchError(expectAsync((error) { Expect.isTrue(error is StateError); })); | 23 f.catchError(expectAsync((error) { expect(error is StateError, isTrue); })); |
25 new Events.fromIterable([]).replay(c); | 24 new Events.fromIterable([]).replay(c); |
26 }); | 25 }); |
27 | 26 |
28 test("single error", () { | 27 test("single error", () { |
29 StreamController c = new StreamController(sync: true); | 28 StreamController c = new StreamController(sync: true); |
30 Future f = c.stream.single; | 29 Future f = c.stream.single; |
31 f.catchError(expectAsync((error) { Expect.equals("error", error); })); | 30 f.catchError(expectAsync((error) { expect("error", equals(error)); })); |
32 Events errorEvents = new Events()..error("error")..close(); | 31 Events errorEvents = new Events()..error("error")..close(); |
33 errorEvents.replay(c); | 32 errorEvents.replay(c); |
34 }); | 33 }); |
35 | 34 |
36 test("single error 2", () { | 35 test("single error 2", () { |
37 StreamController c = new StreamController(sync: true); | 36 StreamController c = new StreamController(sync: true); |
38 Future f = c.stream.single; | 37 Future f = c.stream.single; |
39 f.catchError(expectAsync((error) { Expect.equals("error", error); })); | 38 f.catchError(expectAsync((error) { expect("error", equals(error)); })); |
40 Events errorEvents = new Events()..error("error")..error("error2")..close(); | 39 Events errorEvents = new Events()..error("error")..error("error2")..close(); |
41 errorEvents.replay(c); | 40 errorEvents.replay(c); |
42 }); | 41 }); |
43 | 42 |
44 test("single error 3", () { | 43 test("single error 3", () { |
45 StreamController c = new StreamController(sync: true); | 44 StreamController c = new StreamController(sync: true); |
46 Future f = c.stream.single; | 45 Future f = c.stream.single; |
47 f.catchError(expectAsync((error) { Expect.equals("error", error); })); | 46 f.catchError(expectAsync((error) { expect("error", equals(error)); })); |
48 Events errorEvents = new Events()..add(499)..error("error")..close(); | 47 Events errorEvents = new Events()..add(499)..error("error")..close(); |
49 errorEvents.replay(c); | 48 errorEvents.replay(c); |
50 }); | 49 }); |
51 } | 50 } |
OLD | NEW |