mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
<!-- start_original_pr_link --> Reverts: flutter/flutter#182395 <!-- end_original_pr_link --> <!-- start_initiating_author --> Initiated by: gaaclarke <!-- end_initiating_author --> <!-- start_revert_reason --> Reason for reverting: this is causing breakages on the dashboard example: https://logs.chromium.org/logs/flutter/buildbucket/cr-buildbucket/8689933991528003217/+/u/run_test.dart_for_framework_tests_shard_and_subshard_libraries/stdout ``` 10:36 +9458 ~24: /b/s/w/ir/x/w/flutter/packages/flutter/test/material/dialog_test.dart: Dialog children padding is correct AlertDialog padding is correct when only icon, title a <!-- end_revert_reason --> <!-- start_original_pr_author --> Original PR Author: justinmc <!-- end_original_pr_author --> <!-- start_reviewers --> Reviewed By: {Renzo-Olivares, victorsanni, navaronbracke} <!-- end_reviewers --> <!-- start_revert_body --> This change reverts the following previous change: This PR moves: * TestTextField from editable_text_utils.dart to editable_text_tester.dart * TestListTile from list_tile_test_utils.dart to list_tile_tester.dart * TestButton from utils.dart to button_tester.dart The purpose is to align with other Test* widgets, such as TestWidgetsApp in [widgets_app_tester.dart](https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/widgets_app_tester.dart) and TestSemantics in [semantics_tester.dart](https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/semantics_tester.dart). We should continue to follow this pattern in the future, such as in https://github.com/flutter/flutter/pull/181722. <!-- end_revert_body --> Co-authored-by: auto-submit[bot] <flutter-engprod-team@google.com>
208 lines
7.4 KiB
Dart
208 lines
7.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/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/src/foundation/platform.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import '../widgets/editable_text_utils.dart';
|
|
|
|
Finder findCupertinoOverflowNextButton() {
|
|
return find.byWidgetPredicate((Widget widget) {
|
|
return widget is CustomPaint &&
|
|
'${widget.painter?.runtimeType}' == '_RightCupertinoChevronPainter';
|
|
});
|
|
}
|
|
|
|
Finder findCupertinoOverflowBackButton() {
|
|
return find.byWidgetPredicate((Widget widget) {
|
|
return widget is CustomPaint &&
|
|
'${widget.painter?.runtimeType}' == '_LeftCupertinoChevronPainter';
|
|
});
|
|
}
|
|
|
|
Future<void> tapCupertinoOverflowNextButton(WidgetTester tester) async {
|
|
await tester.tapAt(tester.getCenter(findCupertinoOverflowNextButton()));
|
|
await tester.pumpAndSettle();
|
|
}
|
|
|
|
void expectNoCupertinoToolbar() {
|
|
expect(find.byType(CupertinoButton), findsNothing);
|
|
}
|
|
|
|
// Check that the Cupertino text selection toolbars show the expected buttons
|
|
// when the content is partially selected.
|
|
void expectCupertinoToolbarForPartialSelection() {
|
|
if (isContextMenuProvidedByPlatform) {
|
|
expectNoCupertinoToolbar();
|
|
return;
|
|
}
|
|
|
|
switch (defaultTargetPlatform) {
|
|
case TargetPlatform.android:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(5));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Share...'), findsOneWidget);
|
|
expect(find.text('Select All'), findsOneWidget);
|
|
case TargetPlatform.iOS:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(6));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Share...'), findsOneWidget);
|
|
expect(find.text('Look Up'), findsOneWidget);
|
|
expect(find.text('Search Web'), findsOneWidget);
|
|
case TargetPlatform.macOS:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(3));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
case TargetPlatform.fuchsia:
|
|
case TargetPlatform.linux:
|
|
case TargetPlatform.windows:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(4));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Select All'), findsOneWidget);
|
|
}
|
|
}
|
|
|
|
// Check that the Cupertino text selection toolbar shows the expected buttons
|
|
// when the content is fully selected.
|
|
void expectCupertinoToolbarForFullSelection() {
|
|
if (isContextMenuProvidedByPlatform) {
|
|
expectNoCupertinoToolbar();
|
|
return;
|
|
}
|
|
|
|
switch (defaultTargetPlatform) {
|
|
case TargetPlatform.android:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(4));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Share...'), findsOneWidget);
|
|
case TargetPlatform.iOS:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(6));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Share...'), findsOneWidget);
|
|
expect(find.text('Look Up'), findsOneWidget);
|
|
expect(find.text('Search Web'), findsOneWidget);
|
|
case TargetPlatform.fuchsia:
|
|
case TargetPlatform.linux:
|
|
case TargetPlatform.macOS:
|
|
case TargetPlatform.windows:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(3));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
}
|
|
}
|
|
|
|
// Check that the Cupertino text selection toolbar is correct for a collapsed selection.
|
|
void expectCupertinoToolbarForCollapsedSelection() {
|
|
if (isContextMenuProvidedByPlatform) {
|
|
expectNoCupertinoToolbar();
|
|
return;
|
|
}
|
|
|
|
switch (defaultTargetPlatform) {
|
|
case TargetPlatform.android:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(4));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Share...'), findsOneWidget);
|
|
case TargetPlatform.iOS:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(2));
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Select All'), findsOneWidget);
|
|
case TargetPlatform.fuchsia:
|
|
case TargetPlatform.linux:
|
|
case TargetPlatform.windows:
|
|
case TargetPlatform.macOS:
|
|
expect(find.byType(CupertinoButton), findsNWidgets(1));
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
}
|
|
}
|
|
|
|
void expectNoMaterialToolbar() {
|
|
expect(find.byType(TextButton), findsNothing);
|
|
}
|
|
|
|
// Check that the Material text selection toolbars show the expected buttons
|
|
// when the content is partially selected.
|
|
void expectMaterialToolbarForPartialSelection() {
|
|
if (isContextMenuProvidedByPlatform) {
|
|
expectNoMaterialToolbar();
|
|
return;
|
|
}
|
|
|
|
switch (defaultTargetPlatform) {
|
|
case TargetPlatform.android:
|
|
expect(find.byType(TextButton), findsNWidgets(5));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Share'), findsOneWidget);
|
|
expect(find.text('Select all'), findsOneWidget);
|
|
case TargetPlatform.iOS:
|
|
case TargetPlatform.macOS:
|
|
case TargetPlatform.fuchsia:
|
|
case TargetPlatform.linux:
|
|
case TargetPlatform.windows:
|
|
expect(find.byType(TextButton), findsNWidgets(4));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Select all'), findsOneWidget);
|
|
}
|
|
}
|
|
|
|
// Check that the Material text selection toolbar shows the expected buttons
|
|
// when the content is fully selected.
|
|
void expectMaterialToolbarForFullSelection() {
|
|
if (isContextMenuProvidedByPlatform) {
|
|
expectNoMaterialToolbar();
|
|
return;
|
|
}
|
|
|
|
switch (defaultTargetPlatform) {
|
|
case TargetPlatform.android:
|
|
expect(find.byType(TextButton), findsNWidgets(4));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
expect(find.text('Share'), findsOneWidget);
|
|
case TargetPlatform.iOS:
|
|
case TargetPlatform.fuchsia:
|
|
case TargetPlatform.linux:
|
|
case TargetPlatform.macOS:
|
|
case TargetPlatform.windows:
|
|
expect(find.byType(TextButton), findsNWidgets(3));
|
|
expect(find.text('Cut'), findsOneWidget);
|
|
expect(find.text('Copy'), findsOneWidget);
|
|
expect(find.text('Paste'), findsOneWidget);
|
|
}
|
|
}
|
|
|
|
Finder findMaterialOverflowNextButton() {
|
|
return find.byKey(StandardComponentType.moreButton.key);
|
|
}
|
|
|
|
Finder findMaterialOverflowBackButton() {
|
|
return find.byKey(StandardComponentType.backButton.key);
|
|
}
|
|
|
|
Future<void> tapMaterialOverflowNextButton(WidgetTester tester) async {
|
|
await tester.tapAt(tester.getCenter(findMaterialOverflowNextButton()));
|
|
await tester.pumpAndSettle();
|
|
}
|