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

Unified Diff: lib/src/isolate_test.dart

Issue 914963003: Add a VmListener and IsolateTest class for running tests in other isolates. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: Code review changes Created 5 years, 10 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 | « .status ('k') | lib/src/live_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/isolate_test.dart
diff --git a/lib/src/isolate_test.dart b/lib/src/isolate_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..30cbfc36e7236600f453a8eb74b7792616b9fcb4
--- /dev/null
+++ b/lib/src/isolate_test.dart
@@ -0,0 +1,57 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library unittest.isolate_test;
+
+import 'dart:isolate';
+
+import 'live_test.dart';
+import 'live_test_controller.dart';
+import 'remote_exception.dart';
+import 'state.dart';
+import 'suite.dart';
+import 'test.dart';
+
+/// A test in another isolate.
+class IsolateTest implements Test {
+ final String name;
+
+ /// The port on which to communicate with the remote test.
+ final SendPort _sendPort;
+
+ IsolateTest(this.name, this._sendPort);
+
+ /// Loads a single runnable instance of this test.
+ LiveTest load(Suite suite) {
+ var receivePort;
+ var controller;
+ controller = new LiveTestController(suite, this, () {
+ controller.setState(const State(Status.running, Result.success));
+
+ receivePort = new ReceivePort();
+ _sendPort.send({
+ 'command': 'run',
+ 'reply': receivePort.sendPort
+ });
+
+ receivePort.listen((message) {
+ if (message['type'] == 'error') {
+ var asyncError = RemoteException.deserialize(message['error']);
+ controller.addError(asyncError.error, asyncError.stackTrace);
+ } else if (message['type'] == 'state-change') {
+ controller.setState(
+ new State(
+ new Status.parse(message['status']),
+ new Result.parse(message['result'])));
+ } else {
+ assert(message['type'] == 'complete');
+ controller.completer.complete();
+ }
+ });
+ }, onClose: () {
+ if (receivePort != null) receivePort.close();
+ });
+ return controller.liveTest;
+ }
+}
« no previous file with comments | « .status ('k') | lib/src/live_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698