| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // Dart test program for testing isolate communication with | 4 // Dart test program for testing isolate communication with |
| 5 // typed objects. | 5 // typed objects. |
| 6 // VMOptions=--checked | 6 // VMOptions=--checked |
| 7 | 7 |
| 8 library TypedMessageTest; | 8 library TypedMessageTest; |
| 9 import "package:expect/expect.dart"; |
| 9 import "dart:isolate"; | 10 import "dart:isolate"; |
| 10 | 11 |
| 11 void logMessages() { | 12 void logMessages() { |
| 12 print("Starting log server."); | 13 print("Starting log server."); |
| 13 port.receive((List<int> message, SendPort replyTo) { | 14 port.receive((List<int> message, SendPort replyTo) { |
| 14 print("Log $message"); | 15 print("Log $message"); |
| 15 Expect.equals(5, message.length); | 16 Expect.equals(5, message.length); |
| 16 Expect.equals(0, message[0]); | 17 Expect.equals(0, message[0]); |
| 17 Expect.equals(1, message[1]); | 18 Expect.equals(1, message[1]); |
| 18 Expect.equals(2, message[2]); | 19 Expect.equals(2, message[2]); |
| 19 Expect.equals(3, message[3]); | 20 Expect.equals(3, message[3]); |
| 20 Expect.equals(4, message[4]); | 21 Expect.equals(4, message[4]); |
| 21 port.close(); | 22 port.close(); |
| 22 replyTo.send(1, null); | 23 replyTo.send(1, null); |
| 23 print("Stopping log server."); | 24 print("Stopping log server."); |
| 24 }); | 25 }); |
| 25 } | 26 } |
| 26 | 27 |
| 27 main() { | 28 main() { |
| 28 SendPort remote = spawnFunction(logMessages); | 29 SendPort remote = spawnFunction(logMessages); |
| 29 List<int> msg = new List<int>(5); | 30 List<int> msg = new List<int>(5); |
| 30 for (int i = 0; i < 5; i++) { | 31 for (int i = 0; i < 5; i++) { |
| 31 msg[i] = i; | 32 msg[i] = i; |
| 32 } | 33 } |
| 33 remote.call(msg).then((int message) { | 34 remote.call(msg).then((int message) { |
| 34 Expect.equals(1, message); | 35 Expect.equals(1, message); |
| 35 }); | 36 }); |
| 36 } | 37 } |
| OLD | NEW |