// 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 'package:flutter_tools/src/base/file_system.dart'; import 'package:flutter_tools/src/base/io.dart'; import 'package:flutter_tools/src/cache.dart'; import 'package:flutter_tools/src/dart/sdk.dart'; import 'package:path/path.dart' as path; import 'package:test/test.dart'; import 'src/context.dart'; // This test depends on some files in ///dev/automated_tests/flutter_test/* void main() { group('test', () { final String automatedTestsDirectory = path.join('..', '..', 'dev', 'automated_tests'); final String flutterTestDirectory = path.join(automatedTestsDirectory, 'flutter_test'); testUsingContext('TestAsyncUtils guarded function test', () async { Cache.flutterRoot = '../..'; return _testFile('test_async_utils_guarded', 1, automatedTestsDirectory, flutterTestDirectory); }); testUsingContext('TestAsyncUtils unguarded function test', () async { Cache.flutterRoot = '../..'; return _testFile('test_async_utils_unguarded', 1, automatedTestsDirectory, flutterTestDirectory); }); testUsingContext('Missing flutter_test dependency', () async { final String missingDependencyTests = path.join('..', '..', 'dev', 'missing_dependency_tests'); Cache.flutterRoot = '../..'; return _testFile('trivial', 1, missingDependencyTests, missingDependencyTests); }); }); } Future _testFile(String testName, int wantedExitCode, String workingDirectory, String testDirectory) async { final String fullTestName = path.join(testDirectory, '${testName}_test.dart'); final File testFile = fs.file(fullTestName); expect(testFile.existsSync(), true); final String fullTestExpectation = path.join(testDirectory, '${testName}_expectation.txt'); final File expectationFile = fs.file(fullTestExpectation); expect(expectationFile.existsSync(), true); final ProcessResult exec = await Process.run( path.join(dartSdkPath, 'bin', 'dart'), [ path.absolute(path.join('bin', 'flutter_tools.dart')), 'test', '--no-color', fullTestName ], workingDirectory: workingDirectory ); expect(exec.exitCode, wantedExitCode); final List output = exec.stdout.split('\n'); output.add('<>'); output.addAll(exec.stderr.split('\n')); final List expectations = fs.file(fullTestExpectation).readAsLinesSync(); bool allowSkip = false; int expectationLineNumber = 0; int outputLineNumber = 0; bool haveSeenStdErrMarker = false; while (expectationLineNumber < expectations.length) { expect(output, hasLength(greaterThan(outputLineNumber))); final String expectationLine = expectations[expectationLineNumber]; final String outputLine = output[outputLineNumber]; if (expectationLine == '<>') { allowSkip = true; expectationLineNumber += 1; continue; } if (allowSkip) { if (!new RegExp(expectationLine).hasMatch(outputLine)) { outputLineNumber += 1; continue; } allowSkip = false; } if (expectationLine == '<>') { expect(haveSeenStdErrMarker, isFalse); haveSeenStdErrMarker = true; } expect(outputLine, matches(expectationLine), verbose: true, reason: 'Full output:\n- - - -----8<----- - - -\n${output.join("\n")}\n- - - -----8<----- - - -'); expectationLineNumber += 1; outputLineNumber += 1; } expect(allowSkip, isFalse); if (!haveSeenStdErrMarker) expect(exec.stderr, ''); }