mirror of https://github.com/flutter/samples.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.
77 lines
2.4 KiB
77 lines
2.4 KiB
import 'package:compass_app/domain/models/itinerary_config/itinerary_config.dart';
|
|
import 'package:compass_app/ui/results/view_models/results_viewmodel.dart';
|
|
import 'package:compass_app/ui/results/widgets/results_screen.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:mocktail/mocktail.dart';
|
|
import 'package:mocktail_image_network/mocktail_image_network.dart';
|
|
|
|
import '../../../testing/app.dart';
|
|
import '../../../testing/fakes/repositories/fake_destination_repository.dart';
|
|
import '../../../testing/fakes/repositories/fake_itinerary_config_repository.dart';
|
|
import '../../../testing/mocks.dart';
|
|
|
|
void main() {
|
|
group('ResultsScreen widget tests', () {
|
|
late MockGoRouter goRouter;
|
|
late ResultsViewModel viewModel;
|
|
|
|
setUp(() {
|
|
viewModel = ResultsViewModel(
|
|
destinationRepository: FakeDestinationRepository(),
|
|
itineraryConfigRepository: FakeItineraryConfigRepository(
|
|
itineraryConfig: ItineraryConfig(
|
|
continent: 'Europe',
|
|
startDate: DateTime(2024, 01, 01),
|
|
endDate: DateTime(2024, 01, 31),
|
|
guests: 2,
|
|
),
|
|
),
|
|
);
|
|
goRouter = MockGoRouter();
|
|
});
|
|
|
|
Future<void> loadScreen(WidgetTester tester) async {
|
|
await testApp(
|
|
tester,
|
|
ResultsScreen(viewModel: viewModel),
|
|
goRouter: goRouter,
|
|
);
|
|
}
|
|
|
|
testWidgets('should load screen', (WidgetTester tester) async {
|
|
await mockNetworkImages(() async {
|
|
await loadScreen(tester);
|
|
expect(find.byType(ResultsScreen), findsOneWidget);
|
|
});
|
|
});
|
|
|
|
testWidgets('should display destination', (WidgetTester tester) async {
|
|
await mockNetworkImages(() async {
|
|
await loadScreen(tester);
|
|
|
|
// Wait for list to load
|
|
await tester.pumpAndSettle();
|
|
|
|
// Note: Name is converted to uppercase
|
|
expect(find.text('NAME1'), findsOneWidget);
|
|
expect(find.text('tags1'), findsOneWidget);
|
|
});
|
|
});
|
|
|
|
testWidgets('should tap and navigate to activities',
|
|
(WidgetTester tester) async {
|
|
await mockNetworkImages(() async {
|
|
await loadScreen(tester);
|
|
|
|
// Wait for list to load
|
|
await tester.pumpAndSettle();
|
|
|
|
// warnIfMissed false because false negative
|
|
await tester.tap(find.text('NAME1'), warnIfMissed: false);
|
|
|
|
verify(() => goRouter.go('/activities')).called(1);
|
|
});
|
|
});
|
|
});
|
|
}
|