Fix Linux_android_emu tests late initialization errors (#152932)

This does not fix the issue underlying
https://github.com/flutter/flutter/issues/152684, but may prevent `adb
logcat` from ending before we've captured the logs that explain why the
app or emulator are potentially crashing.

Fixes Fixes https://github.com/flutter/flutter/issues/152899
This commit is contained in:
Zachary Anderson
2024-08-06 14:48:50 -07:00
committed by GitHub
parent 521b0b327c
commit c4e19962bb
5 changed files with 39 additions and 37 deletions

View File

@@ -6,14 +6,14 @@ import 'package:flutter_driver/flutter_driver.dart';
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
Future<void> main() async {
late FlutterDriver driver;
FlutterDriver? driver;
setUpAll(() async {
driver = await FlutterDriver.connect();
});
tearDownAll(() {
driver.close();
driver?.close();
});
// Each test below must return back to the home page after finishing.
@@ -21,14 +21,14 @@ Future<void> main() async {
test('MotionEvent recomposition', () async {
final SerializableFinder motionEventsListTile =
find.byValueKey('MotionEventsListTile');
await driver.tap(motionEventsListTile);
await driver.runUnsynchronized(() async {
driver.waitFor(find.byValueKey('PlatformView'));
await driver?.tap(motionEventsListTile);
await driver?.runUnsynchronized(() async {
driver?.waitFor(find.byValueKey('PlatformView'));
});
final String errorMessage = await driver.requestData('run test');
final String errorMessage = (await driver?.requestData('run test'))!;
expect(errorMessage, '');
final SerializableFinder backButton = find.byValueKey('back');
await driver.tap(backButton);
await driver?.tap(backButton);
}, timeout: Timeout.none);
group('WindowManager', ()
@@ -36,32 +36,32 @@ Future<void> main() async {
setUpAll(() async {
final SerializableFinder wmListTile =
find.byValueKey('WmIntegrationsListTile');
await driver.tap(wmListTile);
await driver?.tap(wmListTile);
});
tearDownAll(() async {
await driver.waitFor(find.pageBack());
await driver.tap(find.pageBack());
await driver?.waitFor(find.pageBack());
await driver?.tap(find.pageBack());
});
test('AlertDialog from platform view context', () async {
final SerializableFinder showAlertDialog = find.byValueKey(
'ShowAlertDialog');
await driver.waitFor(showAlertDialog);
await driver.tap(showAlertDialog);
final String status = await driver.getText(find.byValueKey('Status'));
await driver?.waitFor(showAlertDialog);
await driver?.tap(showAlertDialog);
final String status = (await driver?.getText(find.byValueKey('Status')))!;
expect(status, 'Success');
}, timeout: Timeout.none);
test('Child windows can handle touches', () async {
final SerializableFinder addWindow = find.byValueKey('AddWindow');
await driver.waitFor(addWindow);
await driver.tap(addWindow);
await driver?.waitFor(addWindow);
await driver?.tap(addWindow);
final SerializableFinder tapWindow = find.byValueKey('TapWindow');
await driver.tap(tapWindow);
final String windowClickCount = await driver.getText(
await driver?.tap(tapWindow);
final String windowClickCount = (await driver?.getText(
find.byValueKey('WindowClickCount'),
);
))!;
expect(windowClickCount, 'Click count: 1');
}, timeout: Timeout.none, skip: true); // TODO(garyq): Skipped, see https://github.com/flutter/flutter/issues/88479
});