mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.6 KiB
114 lines
3.6 KiB
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:mocktail/mocktail.dart';
|
|
import 'package:pinball/how_to_play/how_to_play.dart';
|
|
import 'package:pinball/l10n/l10n.dart';
|
|
import 'package:platform_helper/platform_helper.dart';
|
|
|
|
import '../helpers/helpers.dart';
|
|
|
|
class _MockPlatformHelper extends Mock implements PlatformHelper {}
|
|
|
|
void main() {
|
|
group('HowToPlayDialog', () {
|
|
late AppLocalizations l10n;
|
|
late PlatformHelper platformHelper;
|
|
|
|
setUp(() async {
|
|
l10n = await AppLocalizations.delegate.load(const Locale('en'));
|
|
platformHelper = _MockPlatformHelper();
|
|
});
|
|
|
|
testWidgets(
|
|
'can be instantiated without passing in a platform helper',
|
|
(tester) async {
|
|
await tester.pumpApp(
|
|
HowToPlayDialog(
|
|
onDismissCallback: () {},
|
|
),
|
|
);
|
|
expect(find.byType(HowToPlayDialog), findsOneWidget);
|
|
},
|
|
);
|
|
|
|
testWidgets('displays content for desktop', (tester) async {
|
|
when(() => platformHelper.isMobile).thenAnswer((_) => false);
|
|
await tester.pumpApp(
|
|
HowToPlayDialog(
|
|
platformHelper: platformHelper,
|
|
onDismissCallback: () {},
|
|
),
|
|
);
|
|
expect(find.text(l10n.howToPlay), findsOneWidget);
|
|
expect(find.text(l10n.tipsForFlips), findsOneWidget);
|
|
expect(find.text(l10n.launchControls), findsOneWidget);
|
|
expect(find.text(l10n.flipperControls), findsOneWidget);
|
|
expect(find.byType(RotatedBox), findsNWidgets(7)); // controls
|
|
});
|
|
|
|
testWidgets('displays content for mobile', (tester) async {
|
|
when(() => platformHelper.isMobile).thenAnswer((_) => true);
|
|
await tester.pumpApp(
|
|
HowToPlayDialog(
|
|
platformHelper: platformHelper,
|
|
onDismissCallback: () {},
|
|
),
|
|
);
|
|
expect(find.text(l10n.howToPlay), findsOneWidget);
|
|
expect(find.text(l10n.tipsForFlips), findsOneWidget);
|
|
expect(find.text(l10n.tapAndHoldRocket), findsOneWidget);
|
|
expect(find.text(l10n.tapLeftRightScreen), findsOneWidget);
|
|
});
|
|
|
|
testWidgets('disappears after 3 seconds', (tester) async {
|
|
await tester.pumpApp(
|
|
Builder(
|
|
builder: (context) {
|
|
return TextButton(
|
|
onPressed: () => showDialog<void>(
|
|
context: context,
|
|
builder: (_) => HowToPlayDialog(
|
|
onDismissCallback: () {},
|
|
),
|
|
),
|
|
child: const Text('test'),
|
|
);
|
|
},
|
|
),
|
|
);
|
|
expect(find.byType(HowToPlayDialog), findsNothing);
|
|
await tester.tap(find.text('test'));
|
|
await tester.pumpAndSettle();
|
|
expect(find.byType(HowToPlayDialog), findsOneWidget);
|
|
await tester.pump(const Duration(seconds: 4));
|
|
await tester.pumpAndSettle();
|
|
expect(find.byType(HowToPlayDialog), findsNothing);
|
|
});
|
|
|
|
testWidgets('can be dismissed', (tester) async {
|
|
await tester.pumpApp(
|
|
Builder(
|
|
builder: (context) {
|
|
return TextButton(
|
|
onPressed: () => showDialog<void>(
|
|
context: context,
|
|
builder: (_) => HowToPlayDialog(
|
|
onDismissCallback: () {},
|
|
),
|
|
),
|
|
child: const Text('test'),
|
|
);
|
|
},
|
|
),
|
|
);
|
|
expect(find.byType(HowToPlayDialog), findsNothing);
|
|
await tester.tap(find.text('test'));
|
|
await tester.pumpAndSettle();
|
|
|
|
await tester.tapAt(Offset.zero);
|
|
await tester.pumpAndSettle();
|
|
expect(find.byType(HowToPlayDialog), findsNothing);
|
|
});
|
|
});
|
|
}
|