Files
flutter/test/weight_screen_test.dart
Roland Geider adb1dec9e6 Revert "Add tests with golden files"
This reverts commit a7b67631df.
2021-04-24 13:47:28 +02:00

111 lines
3.8 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/mockito.dart';
import 'package:provider/provider.dart';
import 'package:wger/providers/body_weight.dart';
import 'package:wger/screens/form_screen.dart';
import 'package:wger/screens/weight_screen.dart';
import 'package:wger/widgets/weight/charts.dart';
import 'package:wger/widgets/weight/forms.dart';
import '../test_data/body_weight.dart';
import 'base_provider_test.mocks.dart';
import 'utils.dart';
void main() {
Widget createHomeScreen({locale = 'en'}) {
final client = MockClient();
when(client.delete(
any,
headers: anyNamed('headers'),
)).thenAnswer((_) async => http.Response('', 200));
when(client.post(
any,
headers: anyNamed('headers'),
body: anyNamed('body'),
)).thenAnswer(
(_) async => http.Response('{"id": 3, "date": "2021-01-01", "weight": "80"}', 200));
return ChangeNotifierProvider<BodyWeight>(
create: (context) => BodyWeight(
testAuthProvider,
[
weightEntry1,
weightEntry2,
],
client,
),
child: MaterialApp(
locale: Locale(locale),
localizationsDelegates: AppLocalizations.localizationsDelegates,
supportedLocales: AppLocalizations.supportedLocales,
home: WeightScreen(),
routes: {
FormScreen.routeName: (ctx) => FormScreen(),
},
),
);
}
testWidgets('Test the widgets on the body weight screen', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen());
//debugDumpApp();
expect(find.text('Weight'), findsOneWidget);
expect(find.byType(WeightChartWidget), 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(Key('1')), Offset(-500.0, 0.0));
await tester.pumpAndSettle();
expect(find.byType(ListTile), findsOneWidget);
});
testWidgets('Test the form on the body weight screen', (WidgetTester tester) async {
await tester.pumpWidget(createHomeScreen());
expect(find.byType(WeightForm), findsNothing);
await tester.tap(find.byType(FloatingActionButton));
await tester.pumpAndSettle();
expect(find.byType(WeightForm), 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('1/10/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('10.1.2021'), findsOneWidget);
});
}