mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

"flutter create" adds option `--with-driver-test` that adds dependencies to `flutter_driver` in `pubspec.yaml` and creates a basic driver test runnable via `flutter drive --target=test_driver/e2e.dart` "flutter drive" new options: - `--keep-app-running` tells the driver to not stop the app after tests are done - `--use-existing-app` tells the driver to not start a new app but use an already running instance
147 lines
4.5 KiB
Dart
147 lines
4.5 KiB
Dart
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:file/file.dart';
|
|
import 'package:flutter_tools/src/commands/drive.dart';
|
|
import 'package:flutter_tools/src/base/file_system.dart';
|
|
import 'package:flutter_tools/src/base/logger.dart';
|
|
import 'package:flutter_tools/src/globals.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'src/common.dart';
|
|
import 'src/context.dart';
|
|
import 'src/mocks.dart';
|
|
|
|
main() => defineTests();
|
|
|
|
defineTests() {
|
|
group('drive', () {
|
|
setUp(() {
|
|
useInMemoryFileSystem(cwd: '/some/app');
|
|
});
|
|
|
|
tearDown(() {
|
|
restoreFileSystem();
|
|
});
|
|
|
|
testUsingContext('returns 1 when test file is not found', () {
|
|
DriveCommand command = new DriveCommand();
|
|
applyMocksToCommand(command);
|
|
|
|
List<String> args = [
|
|
'drive',
|
|
'--target=/some/app/test/e2e.dart',
|
|
];
|
|
return createTestCommandRunner(command).run(args).then((int code) {
|
|
expect(code, equals(1));
|
|
BufferLogger buffer = logger;
|
|
expect(buffer.errorText,
|
|
contains('Test file not found: /some/app/test_driver/e2e_test.dart'));
|
|
});
|
|
});
|
|
|
|
testUsingContext('returns 1 when app fails to run', () async {
|
|
DriveCommand command = new DriveCommand.custom(runAppFn: expectAsync(() {
|
|
return new Future.value(1);
|
|
}));
|
|
applyMocksToCommand(command);
|
|
|
|
String testApp = '/some/app/test_driver/e2e.dart';
|
|
String testFile = '/some/app/test_driver/e2e_test.dart';
|
|
|
|
MemoryFileSystem memFs = fs;
|
|
await memFs.file(testApp).writeAsString('main() {}');
|
|
await memFs.file(testFile).writeAsString('main() {}');
|
|
|
|
List<String> args = [
|
|
'drive',
|
|
'--target=$testApp',
|
|
];
|
|
return createTestCommandRunner(command).run(args).then((int code) {
|
|
expect(code, equals(1));
|
|
BufferLogger buffer = logger;
|
|
expect(buffer.errorText, contains(
|
|
'Application failed to start. Will not run test. Quitting.'
|
|
));
|
|
});
|
|
});
|
|
|
|
testUsingContext('returns 1 when app file is outside package', () async {
|
|
String packageDir = '/my/app';
|
|
useInMemoryFileSystem(cwd: packageDir);
|
|
DriveCommand command = new DriveCommand();
|
|
applyMocksToCommand(command);
|
|
|
|
String appFile = '/not/in/my/app.dart';
|
|
List<String> args = [
|
|
'drive',
|
|
'--target=$appFile',
|
|
];
|
|
return createTestCommandRunner(command).run(args).then((int code) {
|
|
expect(code, equals(1));
|
|
BufferLogger buffer = logger;
|
|
expect(buffer.errorText, contains(
|
|
'Application file $appFile is outside the package directory $packageDir'
|
|
));
|
|
});
|
|
});
|
|
|
|
testUsingContext('returns 1 when app file is in the root dir', () async {
|
|
String packageDir = '/my/app';
|
|
useInMemoryFileSystem(cwd: packageDir);
|
|
DriveCommand command = new DriveCommand();
|
|
applyMocksToCommand(command);
|
|
|
|
String appFile = '/my/app/main.dart';
|
|
List<String> args = [
|
|
'drive',
|
|
'--target=$appFile',
|
|
];
|
|
return createTestCommandRunner(command).run(args).then((int code) {
|
|
expect(code, equals(1));
|
|
BufferLogger buffer = logger;
|
|
expect(buffer.errorText, contains(
|
|
'Application file main.dart must reside in one of the '
|
|
'sub-directories of the package structure, not in the root directory.'
|
|
));
|
|
});
|
|
});
|
|
|
|
testUsingContext('returns 0 when test ends successfully', () async {
|
|
String testApp = '/some/app/test/e2e.dart';
|
|
String testFile = '/some/app/test_driver/e2e_test.dart';
|
|
|
|
DriveCommand command = new DriveCommand.custom(
|
|
runAppFn: expectAsync(() {
|
|
return new Future<int>.value(0);
|
|
}),
|
|
runTestsFn: expectAsync((List<String> testArgs) {
|
|
expect(testArgs, [testFile]);
|
|
return new Future<Null>.value();
|
|
}),
|
|
stopAppFn: expectAsync(() {
|
|
return new Future<int>.value(0);
|
|
})
|
|
);
|
|
applyMocksToCommand(command);
|
|
|
|
MemoryFileSystem memFs = fs;
|
|
await memFs.file(testApp).writeAsString('main() {}');
|
|
await memFs.file(testFile).writeAsString('main() {}');
|
|
|
|
List<String> args = [
|
|
'drive',
|
|
'--target=$testApp',
|
|
];
|
|
return createTestCommandRunner(command).run(args).then((int code) {
|
|
expect(code, equals(0));
|
|
BufferLogger buffer = logger;
|
|
expect(buffer.errorText, isEmpty);
|
|
});
|
|
});
|
|
});
|
|
}
|