OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 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 | 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 | 4 |
5 library unittest.runner.browser.iframe_test; | 5 library unittest.runner.browser.iframe_test; |
6 | 6 |
7 import '../../backend/live_test.dart'; | 7 import '../../backend/live_test.dart'; |
8 import '../../backend/live_test_controller.dart'; | 8 import '../../backend/live_test_controller.dart'; |
9 import '../../backend/metadata.dart'; | 9 import '../../backend/metadata.dart'; |
10 import '../../backend/state.dart'; | 10 import '../../backend/state.dart'; |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 testChannel.stream.listen((message) { | 37 testChannel.stream.listen((message) { |
38 if (message['type'] == 'error') { | 38 if (message['type'] == 'error') { |
39 var asyncError = RemoteException.deserialize(message['error']); | 39 var asyncError = RemoteException.deserialize(message['error']); |
40 controller.addError(asyncError.error, asyncError.stackTrace); | 40 controller.addError(asyncError.error, asyncError.stackTrace); |
41 } else if (message['type'] == 'state-change') { | 41 } else if (message['type'] == 'state-change') { |
42 controller.setState( | 42 controller.setState( |
43 new State( | 43 new State( |
44 new Status.parse(message['status']), | 44 new Status.parse(message['status']), |
45 new Result.parse(message['result']))); | 45 new Result.parse(message['result']))); |
| 46 } else if (message['type'] == 'print') { |
| 47 controller.print(message['line']); |
46 } else { | 48 } else { |
47 assert(message['type'] == 'complete'); | 49 assert(message['type'] == 'complete'); |
48 controller.completer.complete(); | 50 controller.completer.complete(); |
49 } | 51 } |
50 }); | 52 }); |
51 }); | 53 }); |
52 return controller.liveTest; | 54 return controller.liveTest; |
53 } | 55 } |
54 } | 56 } |
OLD | NEW |