flutter/examples/api/test/widgets/safe_area/safe_area.0_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

108 lines
3.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/widgets/safe_area/safe_area.0.dart' as example;
import 'package:flutter_test/flutter_test.dart';
example.InsetsState get insetsState => example.InsetsState.instance;
void main() {
testWidgets('SafeArea widget count', (WidgetTester tester) async {
await tester.pumpWidget(const example.Insets());
// 1 SafeArea and 2 ListTile widgets.
expect(find.byType(SafeArea), findsNWidgets(3));
insetsState.toggle(example.Toggle.appBar, true);
await tester.pump();
expect(find.byType(SafeArea), findsNWidgets(4));
});
testWidgets('ListTile removes side padding from its content', (WidgetTester tester) async {
await tester.pumpWidget(const example.Insets());
late BuildContext context;
late EdgeInsets padding;
final Finder findBody = find.byType(example.SafeAreaExample);
final Finder findListTile = find.text(example.Toggle.appBar.label).first;
context = tester.element(findBody);
padding = MediaQuery.paddingOf(context);
expect(padding.top, greaterThan(0));
expect(padding.bottom, greaterThan(0));
expect(padding.left, greaterThan(0));
expect(padding.right, greaterThan(0));
context = tester.element(findListTile);
padding = MediaQuery.paddingOf(context);
expect(padding.top, greaterThan(0));
expect(padding.bottom, greaterThan(0));
expect(padding.left, 0);
expect(padding.right, 0);
});
testWidgets('AppBar removes top padding of Scaffold body', (WidgetTester tester) async {
await tester.pumpWidget(const example.Insets());
final BuildContext context = tester.element(find.text('no safe area'));
// Double-check that side & bottom padding are unchanged.
void verifySidesAndBottom() {
final EdgeInsets padding = MediaQuery.paddingOf(context);
expect(padding.left, example.Inset.sides.of(context));
expect(padding.right, example.Inset.sides.of(context));
expect(padding.bottom, example.Inset.bottom.of(context));
}
final double topInset = example.Inset.top.of(context);
expect(topInset, greaterThan(0));
expect(MediaQuery.paddingOf(context).top, topInset);
verifySidesAndBottom();
insetsState.toggle(example.Toggle.appBar, true);
await tester.pump();
expect(example.Inset.top.of(context), greaterThan(0));
expect(MediaQuery.paddingOf(context).top, 0);
verifySidesAndBottom();
});
testWidgets('SafeArea removes all padding', (WidgetTester tester) async {
await tester.pumpWidget(const example.Insets());
BuildContext context = tester.element(find.text('no safe area'));
expect(MediaQuery.paddingOf(context), insetsState.insets);
insetsState.toggle(example.Toggle.safeArea, true);
await tester.pump();
context = tester.element(find.text('safe area!'));
expect(MediaQuery.paddingOf(context), EdgeInsets.zero);
});
// Regression test for https://github.com/flutter/flutter/issues/159340.
testWidgets('App displays without layout issues', (WidgetTester tester) async {
// Set the app's size to to match the default DartPad demo screen.
await tester.pumpWidget(
const Center(child: SizedBox(width: 500.0, height: 480.0, child: example.Insets())),
);
double appScreenHeight() => tester.getRect(find.byType(example.Insets)).height;
expect(appScreenHeight(), 480);
expect(insetsState.insets, const EdgeInsets.fromLTRB(8.0, 25.0, 8.0, 12.0));
// Drag each slider to its maximum value.
for (int index = 0; index < 3; index++) {
await tester.drag(find.byType(Slider).at(index), const Offset(500.0, 0.0));
await tester.pumpAndSettle();
expect(tester.takeException(), isNull);
}
expect(appScreenHeight(), 480);
expect(insetsState.insets, const EdgeInsets.all(50));
});
}