Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add term settings page golden tests. #1710

Merged
merged 4 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,212 @@
// Copyright (c) 2024 Sharezone UG (haftungsbeschränkt)
// Licensed under the EUPL-1.2-or-later.
//
// You may obtain a copy of the Licence at:
// https://joinup.ec.europa.eu/software/page/eupl
//
// SPDX-License-Identifier: EUPL-1.2

import 'dart:math';

import 'package:design/design.dart';
import 'package:fast_immutable_collections/fast_immutable_collections.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:golden_toolkit/golden_toolkit.dart';
import 'package:mockito/annotations.dart';
import 'package:mockito/mockito.dart';
import 'package:provider/provider.dart';
import 'package:sharezone/grades/grades_service/grades_service.dart';
import 'package:sharezone/grades/pages/term_settings_page/term_settings_page.dart';
import 'package:sharezone/grades/pages/term_settings_page/term_settings_page_controller.dart';
import 'package:sharezone/grades/pages/term_settings_page/term_settings_page_controller_factory.dart';
import 'package:sharezone/grades/pages/term_settings_page/term_settings_page_view.dart';
import 'package:sharezone_widgets/sharezone_widgets.dart';

import 'term_settings_page_test.mocks.dart';

@GenerateNiceMocks([
MockSpec<TermSettingsPageController>(),
MockSpec<TermSettingsPageControllerFactory>(),
])
void main() {
group(TermSettingsPage, () {
const termId = TermId('term-1');
late TermSettingsPageController controller;
late TermSettingsPageControllerFactory controllerFactory;

setUp(() {
controller = MockTermSettingsPageController();
controllerFactory = MockTermSettingsPageControllerFactory();
when(controllerFactory.create(termId)).thenReturn(controller);
});

void setState(TermSettingsState state) {
// Mockito does not support mocking sealed classes yet, so we have to
// provide a dummy implementation of the state.
//
// Ticket: https://github.com/dart-lang/mockito/issues/675
provideDummy<TermSettingsState>(state);
when(controller.state).thenReturn(state);
}

void setLoaded2() {
final random = Random(35);
setState(
TermSettingsLoaded(
TermSettingsPageView(
name: '11/23',
isActiveTerm: true,
gradingSystem: GradingSystem.zeroToFifteenPoints,
finalGradeType: GradeType.writtenExam,
selectableGradingTypes: const IListConst([]),
weights: IMapConst({
GradeType.writtenExam.id: const Weight.factor(2),
GradeType.oralParticipation.id: const Weight.factor(.5),
GradeType.presentation.id: const Weight.factor(1),
}),
subjects: IListConst([
(
displayName: 'Deutsch',
abbreviation: 'DE',
design: Design.random(random),
id: const SubjectId('d'),
weight: const Weight.factor(1),
),
(
displayName: 'Englisch',
abbreviation: 'E',
design: Design.random(random),
id: const SubjectId('e'),
weight: const Weight.factor(2),
),
]),
),
),
);
}

void setLoaded1() {
final random = Random(42);
setState(
TermSettingsLoaded(
TermSettingsPageView(
name: '10/22',
isActiveTerm: true,
gradingSystem: GradingSystem.oneToSixWithPlusAndMinus,
finalGradeType: GradeType.schoolReportGrade,
selectableGradingTypes: const IListConst([]),
weights: IMapConst({
GradeType.writtenExam.id: const Weight.factor(2),
GradeType.oralParticipation.id: const Weight.factor(.5),
GradeType.presentation.id: const Weight.factor(1),
}),
subjects: IListConst([
(
displayName: 'Deutsch',
abbreviation: 'DE',
design: Design.random(random),
id: const SubjectId('d'),
weight: const Weight.factor(1),
),
(
displayName: 'Englisch',
abbreviation: 'E',
design: Design.random(random),
id: const SubjectId('e'),
weight: const Weight.factor(2),
),
]),
),
),
);
}

void setError() {
setState(const TermSettingsError('An error occurred.'));
}

void setLoading() {
setState(const TermSettingsLoading());
}

Future<void> pushTermSettingsPage(
WidgetTester tester, ThemeData theme) async {
await tester.pumpWidgetBuilder(
MultiProvider(providers: [
Provider<GradesService>(
create: (_) => GradesService(),
),
Provider<TermSettingsPageControllerFactory>.value(
value: controllerFactory,
),
ChangeNotifierProvider<TermSettingsPageController>.value(
value: controller,
),
], child: const TermSettingsPage(termId: termId)),
wrapper: materialAppWrapper(theme: theme),
);
}

group('empty', () {
testGoldens('renders as expected (light mode)', (tester) async {
setLoaded1();
await pushTermSettingsPage(tester, getLightTheme());
await multiScreenGolden(tester, 'terms_settings_with_data_1_light');
});

testGoldens('renders as expected (dark mode)', (tester) async {
setLoaded1();
await pushTermSettingsPage(tester, getDarkTheme());
await multiScreenGolden(tester, 'terms_settings_with_data_1_dark');
});
});

group('with data', () {
testGoldens('renders as expected (light mode)', (tester) async {
setLoaded2();
await pushTermSettingsPage(tester, getLightTheme());
await multiScreenGolden(
tester, 'terms_settings_page_with_data_2_light');
});

testGoldens('renders as expected (dark mode)', (tester) async {
setLoaded2();
await pushTermSettingsPage(tester, getDarkTheme());
await multiScreenGolden(tester, 'terms_settings_page_with_data_2_dark');
});
});

group('error', () {
testGoldens('renders as expected (light mode)', (tester) async {
setError();
await pushTermSettingsPage(tester, getLightTheme());
await multiScreenGolden(tester, 'terms_settings_page_error_light');
});

testGoldens('renders as expected (dark mode)', (tester) async {
setError();
await pushTermSettingsPage(tester, getDarkTheme());
await multiScreenGolden(tester, 'terms_settings_page_error_dark');
});
});

group('loading', () {
testGoldens('renders as expected (light mode)', (tester) async {
setLoading();
await pushTermSettingsPage(tester, getLightTheme());
await multiScreenGolden(tester, 'terms_settings_page_loading_light',
customPump: (tester) =>
tester.pump(const Duration(milliseconds: 100)));
});

testGoldens('renders as expected (dark mode)', (tester) async {
setLoading();
await pushTermSettingsPage(tester, getDarkTheme());
await multiScreenGolden(tester, 'terms_settings_page_loading_dark',
customPump: (tester) =>
tester.pump(const Duration(milliseconds: 100)));
});
});
});
}
Loading
Loading