mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
6995cc2b38
* refactor(mobile): encapsulate most access to photomanager in repository
73 lines
2.7 KiB
Dart
73 lines
2.7 KiB
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:immich_mobile/entities/backup_album.entity.dart';
|
|
import 'package:immich_mobile/services/album.service.dart';
|
|
import 'package:mocktail/mocktail.dart';
|
|
import '../fixtures/album.stub.dart';
|
|
import '../repository.mocks.dart';
|
|
import '../service.mocks.dart';
|
|
|
|
void main() {
|
|
late AlbumService sut;
|
|
late MockApiService apiService;
|
|
late MockUserService userService;
|
|
late MockSyncService syncService;
|
|
late MockAlbumRepository albumRepository;
|
|
late MockAssetRepository assetRepository;
|
|
late MockUserRepository userRepository;
|
|
late MockBackupRepository backupRepository;
|
|
late MockAlbumMediaRepository albumMediaRepository;
|
|
|
|
setUp(() {
|
|
apiService = MockApiService();
|
|
userService = MockUserService();
|
|
syncService = MockSyncService();
|
|
albumRepository = MockAlbumRepository();
|
|
assetRepository = MockAssetRepository();
|
|
userRepository = MockUserRepository();
|
|
backupRepository = MockBackupRepository();
|
|
albumMediaRepository = MockAlbumMediaRepository();
|
|
|
|
sut = AlbumService(
|
|
apiService,
|
|
userService,
|
|
syncService,
|
|
albumRepository,
|
|
assetRepository,
|
|
userRepository,
|
|
backupRepository,
|
|
albumMediaRepository,
|
|
);
|
|
});
|
|
|
|
group('refreshDeviceAlbums', () {
|
|
test('empty selection with one album in db', () async {
|
|
when(() => backupRepository.getIdsBySelection(BackupSelection.exclude))
|
|
.thenAnswer((_) async => []);
|
|
when(() => backupRepository.getIdsBySelection(BackupSelection.select))
|
|
.thenAnswer((_) async => []);
|
|
when(() => albumRepository.count(local: true)).thenAnswer((_) async => 1);
|
|
when(() => syncService.removeAllLocalAlbumsAndAssets())
|
|
.thenAnswer((_) async => true);
|
|
final result = await sut.refreshDeviceAlbums();
|
|
expect(result, false);
|
|
verify(() => syncService.removeAllLocalAlbumsAndAssets());
|
|
});
|
|
|
|
test('one selected albums, two on device', () async {
|
|
when(() => backupRepository.getIdsBySelection(BackupSelection.exclude))
|
|
.thenAnswer((_) async => []);
|
|
when(() => backupRepository.getIdsBySelection(BackupSelection.select))
|
|
.thenAnswer((_) async => [AlbumStub.oneAsset.localId!]);
|
|
when(() => albumMediaRepository.getAll())
|
|
.thenAnswer((_) async => [AlbumStub.oneAsset, AlbumStub.twoAsset]);
|
|
when(() => syncService.syncLocalAlbumAssetsToDb(any(), any()))
|
|
.thenAnswer((_) async => true);
|
|
final result = await sut.refreshDeviceAlbums();
|
|
expect(result, true);
|
|
verify(
|
|
() => syncService.syncLocalAlbumAssetsToDb([AlbumStub.oneAsset], null),
|
|
).called(1);
|
|
verifyNoMoreInteractions(syncService);
|
|
});
|
|
});
|
|
}
|