Skip to content

Commit

Permalink
Add tests for material banner example (#147733)
Browse files Browse the repository at this point in the history
  • Loading branch information
derdilla authored May 23, 2024
1 parent 82c3b38 commit 1c1516c
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
27 changes: 27 additions & 0 deletions examples/api/test/material/banner/material_banner.0_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ import 'package:flutter_api_samples/material/banner/material_banner.0.dart' as e
import 'package:flutter_test/flutter_test.dart';

void main() {
testWidgets('Shows all elements', (WidgetTester tester) async {
await tester.pumpWidget(
const example.MaterialBannerExampleApp(),
);

expect(find.byType(MaterialBanner), findsOneWidget);
expect(find.byType(AppBar), findsOneWidget);
expect(find.byType(TextButton), findsNWidgets(2));
expect(find.text('Hello, I am a Material Banner'), findsOneWidget);
expect(find.text('The MaterialBanner is below'), findsOneWidget);
expect(find.text('OPEN'), findsOneWidget);
expect(find.text('DISMISS'), findsOneWidget);
expect(find.byIcon(Icons.agriculture_outlined), findsOneWidget);
});

testWidgets('BottomNavigationBar Updates Screen Content', (WidgetTester tester) async {
await tester.pumpWidget(
const example.MaterialBannerExampleApp(),
Expand All @@ -18,4 +33,16 @@ void main() {
expect(find.widgetWithText(TextButton, 'OPEN'), findsOne);
expect(find.widgetWithText(TextButton, 'DISMISS'), findsOne);
});

testWidgets('The banner is below the text saying so', (WidgetTester tester) async {
await tester.pumpWidget(
const example.MaterialBannerExampleApp(),
);

expect(find.byType(MaterialBanner), findsOneWidget);
expect(find.text('The MaterialBanner is below'), findsOneWidget);
final double bannerY = tester.getCenter(find.byType(MaterialBanner)).dy;
final double textY = tester.getCenter(find.text('The MaterialBanner is below')).dy;
expect(bannerY, greaterThan(textY));
});
}
35 changes: 34 additions & 1 deletion examples/api/test/material/banner/material_banner.1_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,32 @@
// found in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:flutter_api_samples/material/banner/material_banner.1.dart' as example;
import 'package:flutter_api_samples/material/banner/material_banner.1.dart'
as example;
import 'package:flutter_test/flutter_test.dart';

void main() {
testWidgets('Shows all elements when needed', (WidgetTester tester) async {
await tester.pumpWidget(const example.MaterialBannerExampleApp());
await tester.pumpAndSettle();
expect(find.text('The MaterialBanner is below'), findsOneWidget);
expect(find.text('Show MaterialBanner'), findsOneWidget);
expect(find.byType(MaterialBanner), findsNothing);
expect(find.text('DISMISS'), findsNothing);
expect(find.byIcon(Icons.agriculture_outlined), findsNothing);

await tester.tap(find.text('Show MaterialBanner'));
await tester.pumpAndSettle();
expect(find.byType(MaterialBanner), findsOneWidget);
expect(find.text('DISMISS'), findsOneWidget);
expect(find.byIcon(Icons.agriculture_outlined), findsOneWidget);

final MaterialBanner banner = tester.widget<MaterialBanner>(
find.byType(MaterialBanner),
);
expect(banner.backgroundColor, Colors.green);
});

testWidgets('BottomNavigationBar Updates Screen Content', (WidgetTester tester) async {
await tester.pumpWidget(
const example.MaterialBannerExampleApp(),
Expand All @@ -20,6 +42,17 @@ void main() {
expect(find.text('Hello, I am a Material Banner'), findsOne);
expect(find.byIcon(Icons.agriculture_outlined), findsOne);
expect(find.widgetWithText(TextButton, 'DISMISS'), findsOne);
});

testWidgets('The banner is below the text saying so', (WidgetTester tester) async {
await tester.pumpWidget(const example.MaterialBannerExampleApp());
await tester.tap(find.text('Show MaterialBanner'));
await tester.pumpAndSettle();

expect(find.byType(MaterialBanner), findsOneWidget);
expect(find.text('The MaterialBanner is below'), findsOneWidget);
final double bannerY = tester.getCenter(find.byType(MaterialBanner)).dy;
final double textY = tester.getCenter(find.text('The MaterialBanner is below')).dy;
expect(bannerY, greaterThan(textY));
});
}

0 comments on commit 1c1516c

Please sign in to comment.