mirror of
https://github.com/flutter/samples.git
synced 2026-03-22 04:17:50 +00:00
[testing_app] Fix failing integration tests (#756)
This commit is contained in:
committed by
GitHub
parent
5adf66ba65
commit
59b50ec010
@@ -80,7 +80,7 @@ void main() {
|
||||
|
||||
// Tap on the remove icon.
|
||||
await tester.tap(find.byKey(ValueKey('remove_icon_5')));
|
||||
await tester.pumpAndSettle();
|
||||
await tester.pumpAndSettle(Duration(seconds: 1));
|
||||
|
||||
// Verify if it disappears.
|
||||
expect(find.text('Item 5'), findsNothing);
|
||||
|
||||
@@ -4,20 +4,4 @@
|
||||
|
||||
import 'package:integration_test/integration_test_driver.dart';
|
||||
|
||||
Future<void> main() {
|
||||
return integrationDriver(
|
||||
responseDataCallback: (data) async {
|
||||
// If the tests reported any data, save it to the disk.
|
||||
if (data != null) {
|
||||
for (var entry in data.entries) {
|
||||
print('Writing ${entry.key} to the disk.');
|
||||
// Default storage destination is the 'build' directory.
|
||||
await writeResponseData(
|
||||
entry.value as Map<String, dynamic>,
|
||||
testOutputFilename: entry.key,
|
||||
);
|
||||
}
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
Future<void> main() => integrationDriver();
|
||||
|
||||
@@ -23,96 +23,78 @@ void main() {
|
||||
final listFinder = find.byType(ListView);
|
||||
final scroller = tester.widget<ListView>(listFinder).controller;
|
||||
|
||||
// Record the performance timeline of the following operations.
|
||||
await binding.traceAction(
|
||||
// Record the performance summary as the app scrolls through
|
||||
// the list of items.
|
||||
await binding.watchPerformance(
|
||||
() async {
|
||||
// Record the performance summary as the app scrolls through
|
||||
// the list of items.
|
||||
await binding.watchPerformance(
|
||||
() async {
|
||||
// Quickly scroll all the way down.
|
||||
await scroller.animateTo(
|
||||
7000,
|
||||
duration: const Duration(seconds: 1),
|
||||
curve: Curves.linear,
|
||||
);
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
// Quickly scroll back up all the way.
|
||||
await scroller.animateTo(
|
||||
-7000,
|
||||
duration: const Duration(seconds: 1),
|
||||
curve: Curves.linear,
|
||||
);
|
||||
await tester.pumpAndSettle();
|
||||
},
|
||||
// Send the performance summary to the driver.
|
||||
reportKey: 'scrolling_summary',
|
||||
// Quickly scroll all the way down.
|
||||
await scroller.animateTo(
|
||||
7000,
|
||||
duration: const Duration(seconds: 1),
|
||||
curve: Curves.linear,
|
||||
);
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
// Quickly scroll back up all the way.
|
||||
await scroller.animateTo(
|
||||
-7000,
|
||||
duration: const Duration(seconds: 1),
|
||||
curve: Curves.linear,
|
||||
);
|
||||
await tester.pumpAndSettle();
|
||||
},
|
||||
// Send the timeline data to the driver.
|
||||
// This timeline can be opened in the Chrome browser's tracing tools
|
||||
// by navigating to chrome://tracing.
|
||||
reportKey: 'scrolling_timeline',
|
||||
// Send the performance summary to the driver.
|
||||
reportKey: 'scrolling_summary',
|
||||
);
|
||||
});
|
||||
|
||||
testWidgets('Favorites operations test', (tester) async {
|
||||
await tester.pumpWidget(TestingApp());
|
||||
|
||||
// Record the performance timeline of the following operations.
|
||||
await binding.traceAction(
|
||||
// Record the performance summary as operations are performed
|
||||
// on the favorites list.
|
||||
await binding.watchPerformance(
|
||||
() async {
|
||||
// Record the performance summary as operations are performed
|
||||
// on the favorites list.
|
||||
await binding.watchPerformance(
|
||||
() async {
|
||||
// Create a list of icon keys.
|
||||
final iconKeys = [
|
||||
'icon_0',
|
||||
'icon_1',
|
||||
'icon_2',
|
||||
];
|
||||
// Create a list of icon keys.
|
||||
final iconKeys = [
|
||||
'icon_0',
|
||||
'icon_1',
|
||||
'icon_2',
|
||||
];
|
||||
|
||||
// Add first three items to favorites.
|
||||
for (var icon in iconKeys) {
|
||||
// Tap onto the icon.
|
||||
await tester.tap(find.byKey(ValueKey(icon)));
|
||||
await tester.pumpAndSettle();
|
||||
// Add first three items to favorites.
|
||||
for (var icon in iconKeys) {
|
||||
// Tap onto the icon.
|
||||
await tester.tap(find.byKey(ValueKey(icon)));
|
||||
await tester.pumpAndSettle(Duration(seconds: 1));
|
||||
|
||||
// Verify if appropriate message appears.
|
||||
expect(find.text('Added to favorites.'), findsOneWidget);
|
||||
}
|
||||
// Verify if appropriate message appears.
|
||||
expect(find.text('Added to favorites.'), findsOneWidget);
|
||||
}
|
||||
|
||||
// Tap onto the favorites button on the AppBar.
|
||||
// The Favorites List should appear.
|
||||
await tester.tap(find.text('Favorites'));
|
||||
await tester.pumpAndSettle();
|
||||
// Tap onto the favorites button on the AppBar.
|
||||
// The Favorites List should appear.
|
||||
await tester.tap(find.text('Favorites'));
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
final removeIconKeys = [
|
||||
'remove_icon_0',
|
||||
'remove_icon_1',
|
||||
'remove_icon_2',
|
||||
];
|
||||
final removeIconKeys = [
|
||||
'remove_icon_0',
|
||||
'remove_icon_1',
|
||||
'remove_icon_2',
|
||||
];
|
||||
|
||||
// Remove all the items from favorites.
|
||||
for (final iconKey in removeIconKeys) {
|
||||
// Tap onto the remove icon.
|
||||
await tester.tap(find.byKey(ValueKey(iconKey)));
|
||||
await tester.pumpAndSettle();
|
||||
// Remove all the items from favorites.
|
||||
for (final iconKey in removeIconKeys) {
|
||||
// Tap onto the remove icon.
|
||||
await tester.tap(find.byKey(ValueKey(iconKey)));
|
||||
await tester.pumpAndSettle(Duration(seconds: 1));
|
||||
|
||||
// Verify if appropriate message appears.
|
||||
expect(find.text('Removed from favorites.'), findsOneWidget);
|
||||
}
|
||||
},
|
||||
// Send the performance summary to the driver.
|
||||
reportKey: 'favorites_operations_summary',
|
||||
);
|
||||
// Verify if appropriate message appears.
|
||||
expect(find.text('Removed from favorites.'), findsOneWidget);
|
||||
}
|
||||
},
|
||||
// Send the timeline data to the driver.
|
||||
// This timeline can be opened in the Chrome browser's tracing tools
|
||||
// by navigating to chrome://tracing.
|
||||
reportKey: 'favorites_operations_timeline',
|
||||
// Send the performance summary to the driver.
|
||||
reportKey: 'favorites_operations_summary',
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user