Files
flutter/test/routine/workout_plans_screen_test.dart

134 lines
4.7 KiB
Dart

/*
* This file is part of wger Workout Manager <https://github.com/wger-project>.
* Copyright (C) 2020, 2021 wger Team
*
* wger Workout Manager is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* wger Workout Manager is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:http/http.dart' as http;
import 'package:mockito/annotations.dart';
import 'package:mockito/mockito.dart';
import 'package:provider/provider.dart';
import 'package:wger/models/routines/routine.dart';
import 'package:wger/providers/base_provider.dart';
import 'package:wger/providers/exercises.dart';
import 'package:wger/providers/routine.dart';
import 'package:wger/screens/form_screen.dart';
import 'package:wger/screens/routines_screen.dart';
import 'package:wger/widgets/nutrition/forms.dart';
import 'package:wger/widgets/routines/forms.dart';
import 'workout_plans_screen_test.mocks.dart';
@GenerateMocks([WgerBaseProvider])
void main() {
var mockBaseProvider = MockWgerBaseProvider();
final testExercisesProvider = ExercisesProvider(mockBaseProvider);
setUp(() {
mockBaseProvider = MockWgerBaseProvider();
});
Widget createHomeScreen({locale = 'en'}) {
final uri = Uri(
scheme: 'https',
host: 'localhost',
path: 'api/v2/workout/',
);
when(mockBaseProvider.makeUrl('workout', query: anyNamed('query'))).thenReturn(uri);
when(mockBaseProvider.deleteRequest(any, any)).thenAnswer((_) async => http.Response('', 204));
return ChangeNotifierProvider<RoutineProvider>(
create: (context) => RoutineProvider(
mockBaseProvider,
testExercisesProvider,
[
Routine(id: 1, creationDate: DateTime(2021, 01, 01), name: 'test 1'),
Routine(id: 2, creationDate: DateTime(2021, 02, 12), name: 'test 2'),
],
),
child: MaterialApp(
locale: Locale(locale),
localizationsDelegates: AppLocalizations.localizationsDelegates,
supportedLocales: AppLocalizations.supportedLocales,
home: RoutinesScreen(),
routes: {
FormScreen.routeName: (ctx) => FormScreen(),
},
),
);
}
testWidgets('Test the widgets on the workout plans screen', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen());
//debugDumpApp();
expect(find.text('Routines'), findsOneWidget);
expect(find.byType(Dismissible), findsNWidgets(2));
expect(find.byType(ListTile), findsNWidgets(2));
});
testWidgets('Test deleting an item by dragging the dismissible', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen());
await tester.drag(find.byKey(const Key('1')), const Offset(-500.0, 0.0));
await tester.pumpAndSettle();
// Confirmation dialog
expect(find.byType(AlertDialog), findsOneWidget);
// Confirm
await tester.tap(find.text('Delete'));
await tester.pumpAndSettle();
expect(find.byType(ListTile), findsOneWidget);
});
/*
testWidgets('Test updating the list by dragging it down', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen());
await tester.fling(find.byKey(const Key('1')), const Offset(0, 300), 1000);
await tester.pumpAndSettle();
//verify(mockWorkoutProvider.fetchAndSetAllPlansSparse());
});
*/
testWidgets('Test the form on the workout plan screen', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen());
expect(find.byType(PlanForm), findsNothing);
await tester.tap(find.byType(FloatingActionButton));
await tester.pumpAndSettle();
expect(find.byType(RoutineForm), findsOneWidget);
});
testWidgets('Tests the localization of dates - EN', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen());
expect(find.text('1/1/2021'), findsOneWidget);
expect(find.text('2/12/2021'), findsOneWidget);
});
testWidgets('Tests the localization of dates - DE', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen(locale: 'de'));
expect(find.text('1.1.2021'), findsOneWidget);
expect(find.text('12.2.2021'), findsOneWidget);
});
}