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

Unified Diff: tests/lib/platform/isolate_test.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib/lib.status ('k') | tests/standalone/http_launch_data/http_isolate_main.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/platform/isolate_test.dart
diff --git a/tests/lib/platform/isolate_test.dart b/tests/lib/platform/isolate_test.dart
index b402383ae9f6e9e1a39d77d9f1f0ad6d4eed147d..b53f088a7e6cdd54e583be7fc6fc10c318fae42a 100644
--- a/tests/lib/platform/isolate_test.dart
+++ b/tests/lib/platform/isolate_test.dart
@@ -7,33 +7,49 @@ import "dart:platform" as platform;
import "dart:isolate";
import "package:unittest/unittest.dart";
+sendReceive(SendPort port, msg) {
+ var response = new ReceivePort();
+ port.send([msg, response.sendPort]);
+ return response.first;
+}
+
main() {
- var sendPort = spawnFunction(f);
- expect(sendPort.call("platform.executable"), completion(platform.executable));
- if (platform.script != null) {
- expect(sendPort.call("platform.script").then((s) => s.path),
- completion(endsWith('tests/lib/platform/isolate_test.dart')));
- }
- expect(sendPort.call("platform.packageRoot"),
- completion(platform.packageRoot));
- expect(sendPort.call("platform.executableArguments"),
- completion(platform.executableArguments));
+ test("platform in isolate", () {
+ var response = new ReceivePort();
+ Isolate.spawn(f, response.sendPort);
+ response.first.then(expectAsync1((sendPort) {
+ expect(sendReceive(sendPort, "platform.executable"),
+ completion(platform.executable));
+ if (platform.script != null) {
+ expect(sendReceive(sendPort, "platform.script").then((s) => s.path),
+ completion(endsWith('tests/lib/platform/isolate_test.dart')));
+ }
+ expect(sendReceive(sendPort, "platform.packageRoot"),
+ completion(platform.packageRoot));
+ expect(sendReceive(sendPort, "platform.executableArguments"),
+ completion(platform.executableArguments));
+ }));
+ });
}
-void f() {
+void f(initialReplyTo) {
+ var port = new ReceivePort();
+ initialReplyTo.send(port.sendPort);
int count = 0;
- port.receive((msg, reply) {
- if (msg == "platform.executable") {
- reply.send(platform.executable);
+ port.listen((msg) {
+ var data = msg[0];
+ var replyTo = msg[1];
+ if (data == "platform.executable") {
+ replyTo.send(platform.executable);
}
- if (msg == "platform.script") {
- reply.send(platform.script);
+ if (data == "platform.script") {
+ replyTo.send(platform.script);
}
- if (msg == "platform.packageRoot") {
- reply.send(platform.packageRoot);
+ if (data == "platform.packageRoot") {
+ replyTo.send(platform.packageRoot);
}
- if (msg == "platform.executableArguments") {
- reply.send(platform.executableArguments);
+ if (data == "platform.executableArguments") {
+ replyTo.send(platform.executableArguments);
}
count++;
if (count == 4) {
« no previous file with comments | « tests/lib/lib.status ('k') | tests/standalone/http_launch_data/http_isolate_main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698