blob: adfee1918b6b188e0118b2c5ed58e4904a6694b6 [file] [log] [blame]
// Copyright 2014 The Flutter 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:convert';
import 'dart:io';
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/src/constants.dart';
import 'package:path/path.dart' as path;
import 'utils.dart';
final String _bat = Platform.isWindows ? '.bat' : '';
final String _flutterBin = path.join(Directory.current.parent.parent.parent.path, 'bin', 'flutter$_bat');
const String _integrationResultsPrefix = 'IntegrationTestWidgetsFlutterBinding test results:';
Future<void> main() async {
test('When multiple tests pass', () async {
final Map<String, dynamic> results = await _runTest(path.join('test', 'reporter', 'data', 'pass_test_script.dart'));
expect(results, hasLength(2));
expect(results, containsPair('Passing test 1', _isSuccess));
expect(results, containsPair('Passing test 2', _isSuccess));
});
test('When multiple tests fail', () async {
final Map<String, dynamic> results = await _runTest(path.join('test', 'reporter', 'data', 'fail_test_script.dart'));
expect(results, hasLength(2));
expect(results, containsPair('Failing test 1', _isSerializedFailure));
expect(results, containsPair('Failing test 2', _isSerializedFailure));
});
test('When one test passes, then another fails', () async {
final Map<String, dynamic> results = await _runTest(path.join('test', 'reporter', 'data', 'pass_then_fail_test_script.dart'));
expect(results, hasLength(2));
expect(results, containsPair('Passing test', _isSuccess));
expect(results, containsPair('Failing test', _isSerializedFailure));
});
}
/// Runs a test script and returns the [IntegrationTestWidgetsFlutterBinding.result].
///
/// [scriptPath] is relative to the package root.
Future<Map<String, dynamic>> _runTest(String scriptPath) async {
final Process process = await Process.start(_flutterBin, <String>['test', '--machine', scriptPath]);
/// In the test [tearDownAll] block, the test results are encoded into JSON and
/// are printed with the [_integrationResultsPrefix] prefix.
///
/// See the following for the test event spec which we parse the printed lines
/// out of: https://github.com/dart-lang/test/blob/master/pkgs/test/doc/json_reporter.md
final String testResults = (await process.stdout
.transform(utf8.decoder)
.expand((String text) => text.split('\n'))
.map((String line) {
try {
return jsonDecode(line) as Map<String, dynamic>;
} on FormatException {
// Only interested in test events which are JSON.
}
})
.where((Map<String, dynamic> testEvent) =>
testEvent != null && testEvent['type'] == 'print')
.map((Map<String, dynamic> printEvent) => printEvent['message'] as String)
.firstWhere((String message) =>
message.startsWith(_integrationResultsPrefix)))
.replaceAll(_integrationResultsPrefix, '');
return jsonDecode(testResults) as Map<String, dynamic>;
}
bool _isSuccess(Object object) => object == success;
bool _isSerializedFailure(dynamic object) => object.toString().contains(failureExcerpt);