mirror of
https://github.com/immich-app/immich.git
synced 2024-12-21 01:39:59 +02:00
f64db3a2f9
* Add integration tests for the login process * Reorganize tests * Test wrong instance URL * Run mobile unit tests in CI * Fix CI * Pin Flutter Version to 3.3.10 * Push something stupid to re-trigger CI
57 lines
1.6 KiB
Dart
57 lines
1.6 KiB
Dart
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:immich_mobile/main.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
import 'package:meta/meta.dart';
|
|
import 'package:immich_mobile/main.dart' as app;
|
|
|
|
import 'login_helper.dart';
|
|
|
|
class ImmichTestHelper {
|
|
|
|
final WidgetTester tester;
|
|
|
|
ImmichTestHelper(this.tester);
|
|
|
|
ImmichTestLoginHelper? _loginHelper;
|
|
|
|
ImmichTestLoginHelper get loginHelper {
|
|
_loginHelper ??= ImmichTestLoginHelper(tester);
|
|
return _loginHelper!;
|
|
}
|
|
|
|
static Future<IntegrationTestWidgetsFlutterBinding> initialize() async {
|
|
final binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive;
|
|
|
|
// Load hive, localization...
|
|
await app.initApp();
|
|
|
|
return binding;
|
|
}
|
|
|
|
static Future<void> loadApp(WidgetTester tester) async {
|
|
// Clear all data from Hive
|
|
await Hive.deleteFromDisk();
|
|
await app.openBoxes();
|
|
// Load main Widget
|
|
await tester.pumpWidget(app.getMainWidget());
|
|
// Post run tasks
|
|
await tester.pumpAndSettle();
|
|
await EasyLocalization.ensureInitialized();
|
|
}
|
|
|
|
}
|
|
|
|
@isTest
|
|
void immichWidgetTest(String description, Future<void> Function(WidgetTester, ImmichTestHelper) test) {
|
|
|
|
testWidgets(description, (widgetTester) async {
|
|
await ImmichTestHelper.loadApp(widgetTester);
|
|
await test(widgetTester, ImmichTestHelper(widgetTester));
|
|
}, semanticsEnabled: false);
|
|
|
|
} |