flutter/packages/integration_test/test/binding_fail_test.dart
Michael Goderbauer 5491c8c146
Auto-format Framework (#160545)
This auto-formats all *.dart files in the repository outside of the
`engine` subdirectory and enforces that these files stay formatted with
a presubmit check.

**Reviewers:** Please carefully review all the commits except for the
one titled "formatted". The "formatted" commit was auto-generated by
running `dev/tools/format.sh -a -f`. The other commits were hand-crafted
to prepare the repo for the formatting change. I recommend reviewing the
commits one-by-one via the "Commits" tab and avoiding Github's "Files
changed" tab as it will likely slow down your browser because of the
size of this PR.

---------

Co-authored-by: Kate Lovett <katelovett@google.com>
Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
2024-12-19 20:06:21 +00:00

103 lines
3.8 KiB
Dart

// 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.
/// @docImport 'package:integration_test/integration_test.dart';
library;
import 'dart:convert';
import 'dart:io';
import 'package:flutter_test/flutter_test.dart';
import 'package:path/path.dart' as path;
final String bat = Platform.isWindows ? '.bat' : '';
final String _flutterBin = path.join(Directory.current.parent.parent.path, 'bin', 'flutter$bat');
const String _integrationResultsPrefix = 'IntegrationTestWidgetsFlutterBinding test results:';
const String _failureExcerpt = r'Expected: <false>\n Actual: <true>';
Future<void> main() async {
group('Integration binding result', () {
test('when multiple tests pass', () async {
final Map<String, dynamic>? results = await _runTest(
path.join('test', 'data', 'pass_test_script.dart'),
);
expect(
results,
equals(<String, dynamic>{'passing test 1': 'success', 'passing test 2': 'success'}),
);
});
test('when multiple tests fail', () async {
final Map<String, dynamic>? results = await _runTest(
path.join('test', 'data', 'fail_test_script.dart'),
);
expect(results, hasLength(2));
expect(results, containsPair('failing test 1', contains(_failureExcerpt)));
expect(results, containsPair('failing test 2', contains(_failureExcerpt)));
});
test('when one test passes, then another fails', () async {
final Map<String, dynamic>? results = await _runTest(
path.join('test', 'data', 'pass_then_fail_test_script.dart'),
);
expect(results, hasLength(2));
expect(results, containsPair('passing test', equals('success')));
expect(results, containsPair('failing test', contains(_failureExcerpt)));
});
test('when one test fails, then another passes', () async {
final Map<String, dynamic>? results = await _runTest(
path.join('test', 'data', 'fail_then_pass_test_script.dart'),
);
expect(results, hasLength(2));
expect(results, containsPair('failing test', contains(_failureExcerpt)));
expect(results, containsPair('passing test', equals('success')));
});
});
}
/// Runs a test script and returns the [IntegrationTestWidgetsFlutterBinding.results].
///
/// [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<dynamic>((String line) {
try {
return jsonDecode(line);
} on FormatException {
// Only interested in test events which are JSON.
}
})
.expand<Map<String, dynamic>>((dynamic json) {
if (json is List<dynamic>) {
return json.cast();
}
return <Map<String, dynamic>>[if (json != null) json as Map<String, dynamic>];
})
.where((Map<String, dynamic> testEvent) => 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>?;
}