mirror of
https://github.com/immich-app/immich.git
synced 2025-12-16 01:13:46 +09:00
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Docker / pre-job (push) Has been cancelled
Docker / Re-Tag ML () (push) Has been cancelled
Docker / Re-Tag ML (-armnn) (push) Has been cancelled
Docker / Re-Tag ML (-cuda) (push) Has been cancelled
Docker / Re-Tag ML (-openvino) (push) Has been cancelled
Docker / Re-Tag ML (-rknn) (push) Has been cancelled
Docker / Re-Tag ML (-rocm) (push) Has been cancelled
Docker / Re-Tag Server () (push) Has been cancelled
Docker / Build and Push ML (armnn, linux/arm64, -armnn) (push) Has been cancelled
Docker / Build and Push ML (cpu, ) (push) Has been cancelled
Docker / Build and Push ML (cuda, linux/amd64, -cuda) (push) Has been cancelled
Docker / Build and Push ML (openvino, linux/amd64, -openvino) (push) Has been cancelled
Docker / Build and Push ML (rknn, linux/arm64, -rknn) (push) Has been cancelled
Docker / Build and Push ML (rocm, linux/amd64, {"linux/amd64": "mich"}, -rocm) (push) Has been cancelled
Docker / Build and Push Server (push) Has been cancelled
Docker / Docker Build & Push Server Success (push) Has been cancelled
Docker / Docker Build & Push ML Success (push) Has been cancelled
Docs build / pre-job (push) Has been cancelled
Docs build / Docs Build (push) Has been cancelled
Zizmor / Zizmor (push) Has been cancelled
Static Code Analysis / pre-job (push) Has been cancelled
Static Code Analysis / Run Dart Code Analysis (push) Has been cancelled
Test / pre-job (push) Has been cancelled
Test / Test & Lint Server (push) Has been cancelled
Test / Unit Test CLI (push) Has been cancelled
Test / Unit Test CLI (Windows) (push) Has been cancelled
Test / Lint Web (push) Has been cancelled
Test / Test Web (push) Has been cancelled
Test / Test i18n (push) Has been cancelled
Test / End-to-End Lint (push) Has been cancelled
Test / Medium Tests (Server) (push) Has been cancelled
Test / End-to-End Tests (Server & CLI) (ubuntu-24.04-arm) (push) Has been cancelled
Test / End-to-End Tests (Server & CLI) (ubuntu-latest) (push) Has been cancelled
Test / End-to-End Tests (Web) (ubuntu-24.04-arm) (push) Has been cancelled
Test / End-to-End Tests (Web) (ubuntu-latest) (push) Has been cancelled
Test / End-to-End Tests Success (push) Has been cancelled
Test / Unit Test Mobile (push) Has been cancelled
Test / Unit Test ML (push) Has been cancelled
Test / .github Files Formatting (push) Has been cancelled
Test / ShellCheck (push) Has been cancelled
Test / OpenAPI Clients (push) Has been cancelled
Test / SQL Schema Checks (push) Has been cancelled
fix: do not migrate if already on 15+ Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
132 lines
4.4 KiB
Dart
132 lines
4.4 KiB
Dart
import 'package:drift/drift.dart' hide isNull;
|
|
import 'package:drift/native.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:immich_mobile/domain/models/store.model.dart';
|
|
import 'package:immich_mobile/domain/services/store.service.dart';
|
|
import 'package:immich_mobile/entities/store.entity.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/db.repository.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/store.repository.dart';
|
|
import 'package:immich_mobile/infrastructure/repositories/sync_stream.repository.dart';
|
|
import 'package:immich_mobile/utils/migration.dart';
|
|
import 'package:mocktail/mocktail.dart';
|
|
|
|
import '../../infrastructure/repository.mock.dart';
|
|
|
|
void main() {
|
|
late Drift db;
|
|
late SyncStreamRepository mockSyncStreamRepository;
|
|
|
|
setUpAll(() async {
|
|
db = Drift(DatabaseConnection(NativeDatabase.memory(), closeStreamsSynchronously: true));
|
|
await StoreService.init(storeRepository: DriftStoreRepository(db));
|
|
mockSyncStreamRepository = MockSyncStreamRepository();
|
|
when(() => mockSyncStreamRepository.reset()).thenAnswer((_) async => {});
|
|
});
|
|
|
|
tearDown(() async {
|
|
await Store.clear();
|
|
});
|
|
|
|
group('handleBetaMigration Tests', () {
|
|
group("version < 15", () {
|
|
test('already on new timeline', () async {
|
|
await Store.put(StoreKey.betaTimeline, true);
|
|
|
|
await handleBetaMigration(14, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.betaTimeline), true);
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), false);
|
|
});
|
|
|
|
test('already on old timeline', () async {
|
|
await Store.put(StoreKey.betaTimeline, false);
|
|
|
|
await handleBetaMigration(14, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), true);
|
|
});
|
|
|
|
test('fresh install', () async {
|
|
await Store.delete(StoreKey.betaTimeline);
|
|
await handleBetaMigration(14, true, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.betaTimeline), true);
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), false);
|
|
});
|
|
});
|
|
|
|
group("version == 15", () {
|
|
test('already on new timeline', () async {
|
|
await Store.put(StoreKey.betaTimeline, true);
|
|
|
|
await handleBetaMigration(15, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.betaTimeline), true);
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), false);
|
|
});
|
|
|
|
test('already on old timeline', () async {
|
|
await Store.put(StoreKey.betaTimeline, false);
|
|
|
|
await handleBetaMigration(15, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), true);
|
|
});
|
|
|
|
test('fresh install', () async {
|
|
await Store.delete(StoreKey.betaTimeline);
|
|
await handleBetaMigration(15, true, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.betaTimeline), true);
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), false);
|
|
});
|
|
});
|
|
|
|
group("version > 15", () {
|
|
test('already on new timeline', () async {
|
|
await Store.put(StoreKey.betaTimeline, true);
|
|
|
|
await handleBetaMigration(16, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.betaTimeline), true);
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), false);
|
|
});
|
|
|
|
test('already on old timeline', () async {
|
|
await Store.put(StoreKey.betaTimeline, false);
|
|
|
|
await handleBetaMigration(16, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.betaTimeline), false);
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), false);
|
|
});
|
|
|
|
test('fresh install', () async {
|
|
await Store.delete(StoreKey.betaTimeline);
|
|
await handleBetaMigration(16, true, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.betaTimeline), true);
|
|
expect(Store.tryGet(StoreKey.needBetaMigration), false);
|
|
});
|
|
});
|
|
});
|
|
|
|
group('sync reset tests', () {
|
|
test('version < 16', () async {
|
|
await Store.put(StoreKey.shouldResetSync, false);
|
|
|
|
await handleBetaMigration(15, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.shouldResetSync), true);
|
|
});
|
|
|
|
test('version >= 16', () async {
|
|
await Store.put(StoreKey.shouldResetSync, false);
|
|
|
|
await handleBetaMigration(16, false, mockSyncStreamRepository);
|
|
|
|
expect(Store.tryGet(StoreKey.shouldResetSync), false);
|
|
});
|
|
});
|
|
}
|