mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

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>
70 lines
2.4 KiB
Dart
70 lines
2.4 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.
|
|
|
|
import 'package:flutter_driver/flutter_driver.dart';
|
|
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
|
|
|
|
Future<void> main() async {
|
|
FlutterDriver? driver;
|
|
|
|
setUpAll(() async {
|
|
driver = await FlutterDriver.connect();
|
|
});
|
|
|
|
tearDownAll(() {
|
|
driver?.close();
|
|
});
|
|
|
|
// Each test below must return back to the home page after finishing.
|
|
|
|
test('MotionEvent recomposition', () async {
|
|
final SerializableFinder motionEventsListTile = find.byValueKey('MotionEventsListTile');
|
|
await driver?.tap(motionEventsListTile);
|
|
await driver?.runUnsynchronized(() async {
|
|
driver?.waitFor(find.byValueKey('PlatformView'));
|
|
});
|
|
final String errorMessage = (await driver?.requestData('run test'))!;
|
|
expect(errorMessage, '');
|
|
final SerializableFinder backButton = find.byValueKey('back');
|
|
await driver?.tap(backButton);
|
|
}, timeout: Timeout.none);
|
|
|
|
group('WindowManager', () {
|
|
setUpAll(() async {
|
|
final SerializableFinder wmListTile = find.byValueKey('WmIntegrationsListTile');
|
|
await driver?.tap(wmListTile);
|
|
});
|
|
|
|
tearDownAll(() async {
|
|
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')))!;
|
|
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);
|
|
final SerializableFinder tapWindow = find.byValueKey('TapWindow');
|
|
await driver?.tap(tapWindow);
|
|
final String windowClickCount =
|
|
(await driver?.getText(find.byValueKey('WindowClickCount')))!;
|
|
expect(windowClickCount, 'Click count: 1');
|
|
},
|
|
timeout: Timeout.none,
|
|
// TODO(garyq): Skipped, see https://github.com/flutter/flutter/issues/88479
|
|
skip: true,
|
|
);
|
|
});
|
|
}
|