2026-06-03 19:41:52 -04:00
|
|
|
import 'package:encrypter/encrypter/xor.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
|
import 'package:frontend/settings/settings.dart';
|
2026-06-04 08:39:37 -04:00
|
|
|
import 'package:frontend/utils/pref_utils.dart';
|
2026-06-03 19:41:52 -04:00
|
|
|
|
|
|
|
|
import '../helpers/backend_test_harness.dart';
|
|
|
|
|
import '../helpers/pump_app.dart';
|
|
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
|
setUp(() async {
|
|
|
|
|
await setUpBackendForTest(
|
|
|
|
|
prefs: {
|
|
|
|
|
'base_url': 'http://my.server/api',
|
|
|
|
|
'api_key': XOR().xorEncode('topsecret'),
|
|
|
|
|
'theme': 'catppuccin_mocha',
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
testWidgets('prefills the form from stored preferences', (tester) async {
|
|
|
|
|
await pumpScreen(tester, const Settings());
|
|
|
|
|
|
|
|
|
|
expect(find.text('http://my.server/api'), findsOneWidget);
|
|
|
|
|
expect(find.text('Catppuccin Mocha'), findsOneWidget);
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-04 08:39:37 -04:00
|
|
|
testWidgets('validates an empty base URL when testing the connection', (
|
|
|
|
|
tester,
|
|
|
|
|
) async {
|
2026-06-03 19:41:52 -04:00
|
|
|
await pumpScreen(tester, const Settings());
|
|
|
|
|
|
|
|
|
|
await tester.enterText(find.byType(TextFormField).first, '');
|
2026-06-04 08:39:37 -04:00
|
|
|
await tester.tap(find.widgetWithText(FilledButton, 'Test'));
|
2026-06-03 19:41:52 -04:00
|
|
|
await tester.pump();
|
|
|
|
|
|
|
|
|
|
expect(find.text('The URL cannot be empty'), findsOneWidget);
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-04 08:39:37 -04:00
|
|
|
testWidgets('disables Save once the connection details are edited', (
|
|
|
|
|
tester,
|
|
|
|
|
) async {
|
2026-06-03 19:41:52 -04:00
|
|
|
await pumpScreen(tester, const Settings());
|
2026-06-04 08:39:37 -04:00
|
|
|
final saveButton = find.widgetWithText(FilledButton, 'Save');
|
2026-06-03 19:41:52 -04:00
|
|
|
|
|
|
|
|
expect(
|
2026-06-04 08:39:37 -04:00
|
|
|
tester.widget<FilledButton>(saveButton).onPressed,
|
2026-06-03 19:41:52 -04:00
|
|
|
isNotNull,
|
|
|
|
|
reason: 'enabled for the unmodified, prefilled form',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
await tester.enterText(
|
|
|
|
|
find.byType(TextFormField).first,
|
|
|
|
|
'http://changed/api',
|
|
|
|
|
);
|
|
|
|
|
await tester.pump();
|
|
|
|
|
|
|
|
|
|
expect(
|
2026-06-04 08:39:37 -04:00
|
|
|
tester.widget<FilledButton>(saveButton).onPressed,
|
2026-06-03 19:41:52 -04:00
|
|
|
isNull,
|
|
|
|
|
reason: 'disabled until the new connection is tested',
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-04 08:39:37 -04:00
|
|
|
testWidgets('saving the unmodified form shows a success message', (
|
|
|
|
|
tester,
|
|
|
|
|
) async {
|
2026-06-03 19:41:52 -04:00
|
|
|
await pumpScreen(tester, const Settings());
|
|
|
|
|
|
2026-06-04 08:39:37 -04:00
|
|
|
await tester.tap(find.widgetWithText(FilledButton, 'Save'));
|
2026-06-03 19:41:52 -04:00
|
|
|
await pumpUntilFound(tester, find.text('Settings saved successfully'));
|
|
|
|
|
|
|
|
|
|
expect(find.text('Settings saved successfully'), findsOneWidget);
|
|
|
|
|
});
|
2026-06-04 08:39:37 -04:00
|
|
|
|
|
|
|
|
testWidgets('shows the welcome intro when no server is configured', (
|
|
|
|
|
tester,
|
|
|
|
|
) async {
|
|
|
|
|
await PrefUtil.setValue('base_url', '');
|
|
|
|
|
await pumpScreen(tester, const Settings());
|
|
|
|
|
|
|
|
|
|
expect(find.textContaining('Welcome to OOTT'), findsOneWidget);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
testWidgets('hides the welcome intro once a server is configured', (
|
|
|
|
|
tester,
|
|
|
|
|
) async {
|
|
|
|
|
await PrefUtil.setValue('base_url', 'http://my.server/api');
|
|
|
|
|
await pumpScreen(tester, const Settings());
|
|
|
|
|
|
|
|
|
|
expect(find.textContaining('Welcome to OOTT'), findsNothing);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
testWidgets('explains why Save is disabled after editing the connection', (
|
|
|
|
|
tester,
|
|
|
|
|
) async {
|
|
|
|
|
await pumpScreen(tester, const Settings());
|
|
|
|
|
|
|
|
|
|
// Editing the connection requires re-testing before saving.
|
|
|
|
|
await tester.enterText(
|
|
|
|
|
find.byType(TextFormField).first,
|
|
|
|
|
'http://changed/api',
|
|
|
|
|
);
|
|
|
|
|
await tester.pump();
|
|
|
|
|
|
|
|
|
|
expect(
|
|
|
|
|
find.textContaining('Test the connection before saving'),
|
|
|
|
|
findsOneWidget,
|
|
|
|
|
);
|
|
|
|
|
});
|
2026-06-03 19:41:52 -04:00
|
|
|
}
|