From 60d32e45346e42b116d50aedb849ed97b7cbd6fb Mon Sep 17 00:00:00 2001 From: Kostia Sokolovskyi Date: Wed, 29 May 2024 14:10:34 +0200 Subject: [PATCH] Add tests for animated_switcher.0.dart API example. (#149180) This PR contributes to https://github.com/flutter/flutter/issues/130459 ### Description - Adds tests for `examples/api/lib/widgets/animated_switcher/animated_switcher.0.dart` --- dev/bots/check_code_samples.dart | 1 - .../animated_switcher.0.dart | 3 +- .../animated_switcher.0_test.dart | 99 +++++++++++++++++++ 3 files changed, 101 insertions(+), 2 deletions(-) create mode 100644 examples/api/test/widgets/animated_switcher/animated_switcher.0_test.dart diff --git a/dev/bots/check_code_samples.dart b/dev/bots/check_code_samples.dart index 1d99960b5f380..afe26431fdfce 100644 --- a/dev/bots/check_code_samples.dart +++ b/dev/bots/check_code_samples.dart @@ -378,7 +378,6 @@ final Set _knownMissingTests = { 'examples/api/test/widgets/nested_scroll_view/nested_scroll_view_state.0_test.dart', 'examples/api/test/widgets/scroll_position/scroll_metrics_notification.0_test.dart', 'examples/api/test/widgets/media_query/media_query_data.system_gesture_insets.0_test.dart', - 'examples/api/test/widgets/animated_switcher/animated_switcher.0_test.dart', 'examples/api/test/widgets/animated_list/animated_list.0_test.dart', 'examples/api/test/widgets/focus_traversal/focus_traversal_group.0_test.dart', 'examples/api/test/widgets/focus_traversal/ordered_traversal_policy.0_test.dart', diff --git a/examples/api/lib/widgets/animated_switcher/animated_switcher.0.dart b/examples/api/lib/widgets/animated_switcher/animated_switcher.0.dart index 14055674a74c7..8138ef10aac7e 100644 --- a/examples/api/lib/widgets/animated_switcher/animated_switcher.0.dart +++ b/examples/api/lib/widgets/animated_switcher/animated_switcher.0.dart @@ -23,7 +23,8 @@ class AnimatedSwitcherExample extends StatefulWidget { const AnimatedSwitcherExample({super.key}); @override - State createState() => _AnimatedSwitcherExampleState(); + State createState() => + _AnimatedSwitcherExampleState(); } class _AnimatedSwitcherExampleState extends State { diff --git a/examples/api/test/widgets/animated_switcher/animated_switcher.0_test.dart b/examples/api/test/widgets/animated_switcher/animated_switcher.0_test.dart new file mode 100644 index 0000000000000..dea3a416928c5 --- /dev/null +++ b/examples/api/test/widgets/animated_switcher/animated_switcher.0_test.dart @@ -0,0 +1,99 @@ +// 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/animated_switcher/animated_switcher.0.dart' + as example; +import 'package:flutter_test/flutter_test.dart'; + +void main() { + testWidgets('Increments counter on button tap', (WidgetTester tester) async { + await tester.pumpWidget( + const example.AnimatedSwitcherExampleApp(), + ); + + int counter = 0; + + expect(find.text('$counter'), findsOneWidget); + + while (counter < 10) { + // Tap on the button to increment the counter. + await tester.tap( + find.ancestor( + of: find.text('Increment'), + matching: find.byType(ElevatedButton), + ), + ); + await tester.pumpAndSettle(); + + counter += 1; + + expect(find.text('${counter - 1}'), findsNothing); + expect(find.text('$counter'), findsOneWidget); + } + }); + + testWidgets('Animates counter change', (WidgetTester tester) async { + await tester.pumpWidget( + const example.AnimatedSwitcherExampleApp(), + ); + + // The animation duration defined in the example app. + const Duration animationDuration = Duration(milliseconds: 500); + + final Finder zeroTransitionFinder = find.ancestor( + of: find.text('0'), + matching: find.byType(ScaleTransition), + ); + final Finder oneTransitionFinder = find.ancestor( + of: find.text('1'), + matching: find.byType(ScaleTransition), + ); + + expect(zeroTransitionFinder, findsOneWidget); + ScaleTransition zeroTransition = tester.widget(zeroTransitionFinder); + expect(zeroTransition.scale.value, equals(1.0)); + + expect(oneTransitionFinder, findsNothing); + + // Tap on the button to increment the counter. + await tester.tap( + find.ancestor( + of: find.text('Increment'), + matching: find.byType(ElevatedButton), + ), + ); + await tester.pump(); + + expect(zeroTransitionFinder, findsOneWidget); + zeroTransition = tester.widget(zeroTransitionFinder); + expect(zeroTransition.scale.value, equals(1.0)); + + expect(oneTransitionFinder, findsOneWidget); + ScaleTransition oneTransition = tester.widget(oneTransitionFinder); + expect(oneTransition.scale.value, equals(0.0)); + + // Advance animation to the middle. + await tester.pump(animationDuration ~/ 2); + + expect(zeroTransitionFinder, findsOneWidget); + zeroTransition = tester.widget(zeroTransitionFinder); + expect(zeroTransition.scale.value, equals(0.5)); + + expect(oneTransitionFinder, findsOneWidget); + oneTransition = tester.widget(oneTransitionFinder); + expect(oneTransition.scale.value, equals(0.5)); + + // Advance animation to the end. + await tester.pump(animationDuration ~/ 2); + + expect(zeroTransitionFinder, findsOneWidget); + zeroTransition = tester.widget(zeroTransitionFinder); + expect(zeroTransition.scale.value, equals(0.0)); + + expect(oneTransitionFinder, findsOneWidget); + oneTransition = tester.widget(oneTransitionFinder); + expect(oneTransition.scale.value, equals(1.0)); + }); +}