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