blob: db70d5bcbf6d072f0b291e66d8b3097e6a5df7f8 [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 'package:flutter_driver/flutter_driver.dart';
import 'package:integration_ui/keys.dart' as keys;
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
void main() {
group('end-to-end test', () {
late FlutterDriver driver;
setUpAll(() async {
driver = await FlutterDriver.connect();
});
tearDownAll(() async {
await driver.close();
});
test('Ensure keyboard dismissal resizes the view to original size', () async {
await driver.setTextEntryEmulation(enabled: false);
final SerializableFinder heightText = find.byValueKey(keys.kHeightText);
await driver.waitFor(heightText);
// Measure the initial height.
final String startHeight = await driver.getText(heightText);
// Focus the text field to show the keyboard.
final SerializableFinder defaultTextField = find.byValueKey(keys.kDefaultTextField);
await driver.waitFor(defaultTextField);
await driver.tap(defaultTextField);
bool heightTextDidShrink = false;
for (int i = 0; i < 3; ++i) {
await Future<void>.delayed(const Duration(seconds: 1));
// Measure the height with keyboard displayed.
final String heightWithKeyboardShown = await driver.getText(heightText);
if (double.parse(heightWithKeyboardShown) < double.parse(startHeight)) {
heightTextDidShrink = true;
break;
}
}
expect(heightTextDidShrink, isTrue);
// Unfocus the text field to dismiss the keyboard.
final SerializableFinder unfocusButton = find.byValueKey(keys.kUnfocusButton);
await driver.waitFor(unfocusButton);
await driver.tap(unfocusButton);
bool heightTextDidExpand = false;
for (int i = 0; i < 3; ++i) {
await Future<void>.delayed(const Duration(seconds: 1));
// Measure the final height.
final String endHeight = await driver.getText(heightText);
if (endHeight == startHeight) {
heightTextDidExpand = true;
break;
}
}
expect(heightTextDidExpand, isTrue);
}, timeout: Timeout.none);
});
}