| // Copyright 2015 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 'dart:io'; |
| |
| import 'package:path/path.dart' as path; |
| import 'package:test/src/executable.dart' as executable; // ignore: implementation_imports |
| |
| import '../artifacts.dart'; |
| import '../build_configuration.dart'; |
| import '../globals.dart'; |
| import '../runner/flutter_command.dart'; |
| import '../test/flutter_platform.dart' as loader; |
| |
| class TestCommand extends FlutterCommand { |
| TestCommand() { |
| usesPubOption(); |
| } |
| |
| @override |
| String get name => 'test'; |
| |
| @override |
| String get description => 'Run Flutter unit tests for the current project (Linux only).'; |
| |
| @override |
| bool get requiresProjectRoot => false; |
| |
| @override |
| Validator projectRootValidator = () { |
| if (!FileSystemEntity.isFileSync('pubspec.yaml')) { |
| printError( |
| 'Error: No pubspec.yaml file found in the current working directory.\n' |
| 'Run this command from the root of your project. Test files must be\n' |
| 'called *_test.dart and must reside in the package\'s \'test\'\n' |
| 'directory (or one of its subdirectories).'); |
| return false; |
| } |
| return true; |
| }; |
| |
| Future<String> _getShellPath(BuildConfiguration config) async { |
| if (config.type == BuildType.prebuilt) { |
| Artifact artifact = ArtifactStore.getArtifact( |
| type: ArtifactType.shell, targetPlatform: config.targetPlatform); |
| return ArtifactStore.getPath(artifact); |
| } else { |
| switch (config.targetPlatform) { |
| case TargetPlatform.linux_x64: |
| return path.join(config.buildDir, 'sky_shell'); |
| case TargetPlatform.darwin_x64: |
| return path.join(config.buildDir, 'SkyShell.app', 'Contents', 'MacOS', 'SkyShell'); |
| default: |
| throw new Exception('Unsupported platform.'); |
| } |
| } |
| } |
| |
| Iterable<String> _findTests(Directory directory) { |
| return directory.listSync(recursive: true, followLinks: false) |
| .where((FileSystemEntity entity) => entity.path.endsWith('_test.dart') && |
| FileSystemEntity.isFileSync(entity.path)) |
| .map((FileSystemEntity entity) => path.absolute(entity.path)); |
| } |
| |
| Directory get _currentPackageTestDir { |
| // We don't scan the entire package, only the test/ subdirectory, so that |
| // files with names like like "hit_test.dart" don't get run. |
| return new Directory('test'); |
| } |
| |
| Future<int> _runTests(List<String> testArgs, Directory testDirectory) async { |
| Directory currentDirectory = Directory.current; |
| try { |
| Directory.current = testDirectory; |
| return await executable.main(testArgs); |
| } finally { |
| Directory.current = currentDirectory; |
| } |
| } |
| |
| @override |
| Future<int> runInProject() async { |
| List<String> testArgs = argResults.rest.map((String testPath) => path.absolute(testPath)).toList(); |
| |
| if (!projectRootValidator()) |
| return 1; |
| |
| Directory testDir = _currentPackageTestDir; |
| |
| if (testArgs.isEmpty) { |
| if (!testDir.existsSync()) { |
| printError("Test directory '${testDir.path}' not found."); |
| return 1; |
| } |
| |
| testArgs.addAll(_findTests(testDir)); |
| } |
| |
| testArgs.insert(0, '--'); |
| if (Platform.environment['TERM'] == 'dumb') |
| testArgs.insert(0, '--no-color'); |
| List<BuildConfiguration> configs = buildConfigurations; |
| bool foundOne = false; |
| loader.installHook(); |
| for (BuildConfiguration config in configs) { |
| if (!config.testable) |
| continue; |
| foundOne = true; |
| loader.shellPath = path.absolute(await _getShellPath(config)); |
| if (!FileSystemEntity.isFileSync(loader.shellPath)) { |
| printError('Cannot find Flutter shell at ${loader.shellPath}'); |
| return 1; |
| } |
| await _runTests(testArgs, testDir); |
| if (exitCode != 0) |
| return exitCode; |
| } |
| if (!foundOne) { |
| printError('At least one of --engine-debug or --engine-release must be set, to specify the local build products to test.'); |
| return 1; |
| } |
| |
| return 0; |
| } |
| } |