flutter/examples/api/test/material/snack_bar/snack_bar.2_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

150 lines
5.9 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/material.dart';
import 'package:flutter_api_samples/material/snack_bar/snack_bar.2.dart' as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('Shows correct static elements', (WidgetTester tester) async {
await tester.pumpWidget(const example.SnackBarExampleApp());
expect(find.byType(SnackBar), findsNothing);
expect(find.widgetWithText(AppBar, 'SnackBar Sample'), findsOneWidget);
expect(find.widgetWithText(FloatingActionButton, 'Show Snackbar'), findsOneWidget);
expect(find.text('Behavior'), findsOneWidget);
expect(find.text('Fixed'), findsOneWidget);
expect(find.text('Floating'), findsOneWidget);
expect(find.text('Content'), findsOneWidget);
expect(find.widgetWithText(SwitchListTile, 'Include close Icon'), findsOneWidget);
expect(find.widgetWithText(SwitchListTile, 'Multi Line Text'), findsOneWidget);
expect(find.widgetWithText(SwitchListTile, 'Include Action'), findsOneWidget);
expect(find.widgetWithText(SwitchListTile, 'Long Action Label'), findsOneWidget);
await tester.scrollUntilVisible(find.byType(Slider), 30);
expect(find.text('Action new-line overflow threshold'), findsOneWidget);
expect(find.byType(Slider), findsOneWidget);
});
testWidgets('Applies default configuration to snackbar', (WidgetTester tester) async {
await tester.pumpWidget(const example.SnackBarExampleApp());
expect(find.byType(SnackBar), findsNothing);
expect(find.text('Single Line Snack Bar'), findsNothing);
expect(find.textContaining('spans across multiple lines'), findsNothing);
expect(find.text('Long Action Text'), findsNothing);
expect(find.text('Action'), findsNothing);
expect(find.byIcon(Icons.close), findsNothing);
await tester.tap(find.text('Show Snackbar'));
await tester.pumpAndSettle();
expect(find.byType(SnackBar), findsOneWidget);
expect(find.text('Single Line Snack Bar'), findsOneWidget);
expect(find.text('Action'), findsOneWidget);
expect(find.byIcon(Icons.close), findsOneWidget);
expect(tester.widget<SnackBar>(find.byType(SnackBar)).behavior, SnackBarBehavior.floating);
await tester.tap(find.byIcon(Icons.close));
await tester.pumpAndSettle();
expect(find.byType(SnackBar), findsNothing);
});
testWidgets('Can configure fixed snack bar with long text', (WidgetTester tester) async {
await tester.pumpWidget(const example.SnackBarExampleApp());
await tester.tap(find.text('Fixed'));
await tester.tap(find.text('Multi Line Text'));
await tester.tap(find.text('Long Action Label'));
await tester.tap(find.text('Show Snackbar'));
await tester.pumpAndSettle();
expect(find.byType(SnackBar), findsOneWidget);
expect(find.textContaining('spans across multiple lines'), findsOneWidget);
expect(find.text('Long Action Text'), findsOneWidget);
expect(find.byIcon(Icons.close), findsOneWidget);
expect(tester.widget<SnackBar>(find.byType(SnackBar)).behavior, SnackBarBehavior.fixed);
await tester.tap(find.byIcon(Icons.close));
await tester.pumpAndSettle();
expect(find.byType(SnackBar), findsNothing);
});
testWidgets('Can configure to remove action and close icon', (WidgetTester tester) async {
await tester.pumpWidget(const example.SnackBarExampleApp());
await tester.tap(find.text('Include close Icon'));
await tester.tap(find.text('Include Action'));
await tester.tap(find.text('Show Snackbar'));
await tester.pumpAndSettle();
expect(find.byType(SnackBar), findsOneWidget);
expect(find.byType(SnackBarAction), findsNothing);
expect(find.byIcon(Icons.close), findsNothing);
});
testWidgets('Higher overflow threshold leads to smaller snack bars', (WidgetTester tester) async {
await tester.pumpWidget(const example.SnackBarExampleApp());
await tester.tap(find.text('Fixed'));
await tester.tap(find.text('Multi Line Text'));
await tester.tap(find.text('Long Action Label'));
// Establish max size with low threshold (causes overflow)
await tester.scrollUntilVisible(find.byType(Slider), 30);
TestGesture gesture = await tester.startGesture(tester.getCenter(find.byType(Slider)));
await gesture.moveTo(tester.getBottomLeft(find.byType(Slider)));
await gesture.up();
await tester.tapAt(tester.getBottomLeft(find.byType(Slider)));
await tester.tap(find.text('Show Snackbar'));
await tester.pumpAndSettle();
final double highSnackBar = tester.getSize(find.byType(SnackBar)).height;
await tester.tap(find.byIcon(Icons.close));
await tester.pumpAndSettle();
// Configure high threshold (everything is in one row)
gesture = await tester.startGesture(tester.getCenter(find.byType(Slider)));
await gesture.moveTo(tester.getTopRight(find.byType(Slider)));
await gesture.up();
await tester.tapAt(tester.getTopRight(find.byType(Slider)));
await tester.tap(find.text('Show Snackbar'));
await tester.pumpAndSettle();
expect(tester.getSize(find.byType(SnackBar)).height, lessThan(highSnackBar));
});
testWidgets('Disable unusable elements', (WidgetTester tester) async {
await tester.pumpWidget(const example.SnackBarExampleApp());
expect(find.text('Long Action Label'), findsOneWidget);
expect(
tester
.widget<SwitchListTile>(
find.ancestor(
of: find.text('Long Action Label'),
matching: find.byType(SwitchListTile),
),
)
.onChanged,
isNotNull,
);
await tester.tap(find.text('Include Action'));
await tester.pumpAndSettle();
expect(
tester
.widget<SwitchListTile>(
find.ancestor(
of: find.text('Long Action Label'),
matching: find.byType(SwitchListTile),
),
)
.onChanged,
isNull,
);
});
}