| 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 @TestOn("vm") | 5 @TestOn("vm") |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:test/test.dart'; | 9 import 'package:test/test.dart'; |
| 10 import 'package:test/src/runner/browser/chrome.dart'; | 10 import 'package:test/src/runner/browser/chrome.dart'; |
| 11 import 'package:test/src/util/io.dart'; | 11 import 'package:test/src/util/io.dart'; |
| 12 import 'package:shelf/shelf.dart' as shelf; | 12 import 'package:shelf/shelf.dart' as shelf; |
| 13 import 'package:shelf/shelf_io.dart' as shelf_io; | 13 import 'package:shelf/shelf_io.dart' as shelf_io; |
| 14 import 'package:shelf_web_socket/shelf_web_socket.dart'; | 14 import 'package:shelf_web_socket/shelf_web_socket.dart'; |
| 15 | 15 |
| 16 import '../../io.dart'; |
| 16 import '../../utils.dart'; | 17 import '../../utils.dart'; |
| 17 | 18 |
| 18 void main() { | 19 void main() { |
| 19 group("running JavaScript", () { | 20 group("running JavaScript", () { |
| 20 // The JavaScript to serve in the server. We use actual JavaScript here to | 21 // The JavaScript to serve in the server. We use actual JavaScript here to |
| 21 // avoid the pain of compiling to JS in a test | 22 // avoid the pain of compiling to JS in a test |
| 22 var javaScript; | 23 var javaScript; |
| 23 | 24 |
| 24 var servePage = (request) { | 25 var servePage = (request) { |
| 25 var path = request.url.path; | 26 var path = request.url.path; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 .then((server) { | 134 .then((server) { |
| 134 var chrome = new Chrome(baseUrlForAddress(server.address, server.port)); | 135 var chrome = new Chrome(baseUrlForAddress(server.address, server.port)); |
| 135 return chrome.close().whenComplete(server.close); | 136 return chrome.close().whenComplete(server.close); |
| 136 }); | 137 }); |
| 137 }); | 138 }); |
| 138 | 139 |
| 139 test("reports an error in onExit", () { | 140 test("reports an error in onExit", () { |
| 140 var chrome = new Chrome("http://dart-lang.org", | 141 var chrome = new Chrome("http://dart-lang.org", |
| 141 executable: "_does_not_exist"); | 142 executable: "_does_not_exist"); |
| 142 expect(chrome.onExit, throwsA(isApplicationException(startsWith( | 143 expect(chrome.onExit, throwsA(isApplicationException(startsWith( |
| 143 "Failed to start Chrome: No such file or directory")))); | 144 "Failed to start Chrome: $noSuchFileMessage")))); |
| 144 }); | 145 }); |
| 145 } | 146 } |
| OLD | NEW |