OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 library unittest.vm_listener; |
| 6 |
| 7 import 'dart:isolate'; |
| 8 import 'dart:async'; |
| 9 |
| 10 import 'package:stack_trace/stack_trace.dart'; |
| 11 |
| 12 import 'declarer.dart'; |
| 13 import 'invoker.dart'; |
| 14 import 'remote_exception.dart'; |
| 15 import 'suite.dart'; |
| 16 import 'test.dart'; |
| 17 |
| 18 /// A class that runs tests in a separate isolate and communicates the results |
| 19 /// back to the main isolate. |
| 20 class VmListener { |
| 21 /// The test suite to run. |
| 22 final Suite _suite; |
| 23 |
| 24 /// Extracts metadata about all the tests in [main] and sends information |
| 25 /// about them over [sendPort]. |
| 26 /// |
| 27 /// Once that's done, this starts listening for commands about which tests to |
| 28 /// run. |
| 29 static void start(SendPort sendPort, main()) { |
| 30 var declarer = new Declarer(); |
| 31 runZoned(main, zoneValues: {#unittest.declarer: declarer}); |
| 32 new VmListener._(new Suite("VmListener", declarer.tests)) |
| 33 ._listen(sendPort); |
| 34 } |
| 35 |
| 36 VmListener._(this._suite); |
| 37 |
| 38 /// Send information about [_suite] across [sendPort] and start listening for |
| 39 /// commands to run the tests. |
| 40 void _listen(SendPort sendPort) { |
| 41 var tests = []; |
| 42 for (var i = 0; i < _suite.tests.length; i++) { |
| 43 var test = _suite.tests[i]; |
| 44 var receivePort = new ReceivePort(); |
| 45 tests.add({"name": test.name, "sendPort": receivePort.sendPort}); |
| 46 |
| 47 receivePort.listen((message) { |
| 48 assert(message['command'] == 'run'); |
| 49 _runTest(test, message['reply']); |
| 50 }); |
| 51 } |
| 52 |
| 53 sendPort.send(tests); |
| 54 } |
| 55 |
| 56 /// Runs [test] and send the results across [sendPort]. |
| 57 void _runTest(Test test, SendPort sendPort) { |
| 58 var liveTest = test.load(_suite); |
| 59 |
| 60 liveTest.onStateChange.listen((state) { |
| 61 sendPort.send({ |
| 62 "type": "state-change", |
| 63 "status": state.status.name, |
| 64 "result": state.result.name |
| 65 }); |
| 66 }); |
| 67 |
| 68 liveTest.onError.listen((asyncError) { |
| 69 sendPort.send({ |
| 70 "type": "error", |
| 71 "error": RemoteException.serialize( |
| 72 asyncError.error, asyncError.stackTrace) |
| 73 }); |
| 74 }); |
| 75 |
| 76 liveTest.run().then((_) => sendPort.send({"type": "complete"})); |
| 77 } |
| 78 } |
OLD | NEW |