OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 #library("CountTest"); | |
6 #import('dart:isolate'); | |
7 #import('../../../lib/unittest/unittest.dart'); | |
8 | |
9 class TestIsolate extends Isolate { | |
10 | |
11 TestIsolate() : super(); | |
12 | |
13 void main() { | |
14 int count = 0; | |
15 this.port.receive((int message, SendPort replyTo) { | |
16 if (message == -1) { | |
17 Expect.equals(10, count); | |
18 replyTo.send(-1, null); | |
19 this.port.close(); | |
20 return; | |
21 } | |
22 | |
23 Expect.equals(count, message); | |
24 count++; | |
25 replyTo.send(message * 2, null); | |
26 }); | |
27 } | |
28 } | |
29 | |
30 void main() { | |
31 test("count 10 consecutive messages", () { | |
32 int count = 0; | |
33 new TestIsolate().spawn().then(expectAsync1((SendPort remote) { | |
34 ReceivePort local = new ReceivePort(); | |
35 SendPort reply = local.toSendPort(); | |
36 | |
37 local.receive(expectAsync2((int message, SendPort replyTo) { | |
38 if (message == -1) { | |
39 Expect.equals(11, count); | |
40 local.close(); | |
41 return; | |
42 } | |
43 | |
44 Expect.equals((count - 1) * 2, message); | |
45 remote.send(count++, reply); | |
46 if (count == 10) { | |
47 remote.send(-1, reply); | |
48 } | |
49 }, count: 11)); | |
50 remote.send(count++, reply); | |
51 })); | |
52 }); | |
53 } | |
OLD | NEW |