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

Unified Diff: tests/standalone/io/pipe_server_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/standalone/io/http_read_test.dart ('k') | tests/standalone/io/platform_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/pipe_server_test.dart
diff --git a/tests/standalone/io/pipe_server_test.dart b/tests/standalone/io/pipe_server_test.dart
index 3f858db86a70245e68c6287a8f905c74c1ffe9cd..6481a91c7dcada77a07e31e3901aebdffb8cb560 100644
--- a/tests/standalone/io/pipe_server_test.dart
+++ b/tests/standalone/io/pipe_server_test.dart
@@ -10,6 +10,7 @@
library ServerTest;
import "package:expect/expect.dart";
+import "package:async_helper/async_helper.dart";
import "dart:async";
import "dart:io";
import "dart:isolate";
@@ -38,10 +39,7 @@ class PipeServerGame {
int count = 0;
PipeServerGame.start()
- : _receivePort = new ReceivePort(),
- _sendPort = null,
- _messages = 0 {
- _sendPort = spawnFunction(startPipeServer);
+ : _messages = 0 {
initialize();
}
@@ -83,29 +81,32 @@ class PipeServerGame {
}
void initialize() {
- _receivePort.receive((var message, SendPort replyTo) {
- _port = message;
+ var receivePort = new ReceivePort();
+ var remote = Isolate.spawn(startPipeServer, receivePort.sendPort);
+ receivePort.first.then((msg) {
+ this._port = msg[0];
+ this._closeSendPort = msg[1];
runTest();
});
- _sendPort.send(TestingServer.INIT, _receivePort.toSendPort());
}
void shutdown() {
- _sendPort.send(TestingServer.SHUTDOWN, _receivePort.toSendPort());
- _receivePort.close();
+ _closeSendPort.send(null);
+ asyncEnd();
}
int _port;
- ReceivePort _receivePort;
- SendPort _sendPort;
+ SendPort _closeSendPort;
Socket _socket;
int _messages;
}
-void startPipeServer() {
+void startPipeServer(SendPort replyPort) {
var server = new PipeServer();
- port.receive(server.dispatch);
+ server.init().then((port) {
+ replyPort.send([port, server.closeSendPort]);
+ });
}
@@ -119,5 +120,6 @@ class PipeServer extends TestingServer {
main() {
+ asyncStart();
PipeServerGame echoServerGame = new PipeServerGame.start();
}
« no previous file with comments | « tests/standalone/io/http_read_test.dart ('k') | tests/standalone/io/platform_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698