| Index: test/runner/browser/firefox_test.dart
|
| diff --git a/test/runner/browser/firefox_test.dart b/test/runner/browser/firefox_test.dart
|
| index 32403ac96bc66674018792fd5e79a194501a0e71..42b694d3319bc1b9368061a31329fb5fc4352ea6 100644
|
| --- a/test/runner/browser/firefox_test.dart
|
| +++ b/test/runner/browser/firefox_test.dart
|
| @@ -5,7 +5,9 @@
|
| @TestOn("vm")
|
|
|
| import 'dart:async';
|
| +import 'dart:io';
|
|
|
| +import 'package:path/path.dart' as p;
|
| import 'package:test/test.dart';
|
| import 'package:test/src/runner/browser/firefox.dart';
|
| import 'package:test/src/util/io.dart';
|
| @@ -13,9 +15,20 @@ import 'package:shelf/shelf.dart' as shelf;
|
| import 'package:shelf/shelf_io.dart' as shelf_io;
|
| import 'package:shelf_web_socket/shelf_web_socket.dart';
|
|
|
| +import '../../io.dart';
|
| import '../../utils.dart';
|
|
|
| +String _sandbox;
|
| +
|
| void main() {
|
| + setUp(() {
|
| + _sandbox = createTempDir();
|
| + });
|
| +
|
| + tearDown(() {
|
| + new Directory(_sandbox).deleteSync(recursive: true);
|
| + });
|
| +
|
| group("running JavaScript", () {
|
| // The JavaScript to serve in the server. We use actual JavaScript here to
|
| // avoid the pain of compiling to JS in a test
|
| @@ -139,4 +152,43 @@ webSocket.addEventListener("open", function() {
|
| expect(firefox.onExit, throwsA(isApplicationException(startsWith(
|
| "Failed to start Firefox: No such file or directory"))));
|
| });
|
| +
|
| + group("can run successful tests", () {
|
| + setUp(() {
|
| + new File(p.join(_sandbox, "test.dart")).writeAsStringSync("""
|
| +import 'package:test/test.dart';
|
| +
|
| +void main() {
|
| + test("success", () {});
|
| }
|
| +""");
|
| + });
|
| +
|
| + test("itself", () {
|
| + var result = _runTest(["-p", "firefox", "test.dart"]);
|
| + expect(result.exitCode, equals(0));
|
| + });
|
| +
|
| + test("alongside another browser", () {
|
| + var result = _runTest(["-p", "firefox", "-p", "chrome", "test.dart"]);
|
| + expect("Compiling".allMatches(result.stdout), hasLength(1));
|
| + expect(result.exitCode, equals(0));
|
| + });
|
| + });
|
| +
|
| + test("can run failing tests", () {
|
| + new File(p.join(_sandbox, "test.dart")).writeAsStringSync("""
|
| +import 'package:test/test.dart';
|
| +
|
| +void main() {
|
| + test("failure", () => throw new TestFailure("oh no"));
|
| +}
|
| +""");
|
| +
|
| + var result = _runTest(["-p", "firefox", "test.dart"]);
|
| + expect(result.exitCode, equals(1));
|
| + });
|
| +}
|
| +
|
| +ProcessResult _runTest(List<String> args) =>
|
| + runTest(args, workingDirectory: _sandbox);
|
|
|