mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
af32183728
* refactor: autoroutex pushroute * refactor: autoroutex popRoute * refactor: autoroutex navigate and replace * chore: add doc comments for extension methods * refactor: Add LoggerMixin and refactor Album activities to use mixin * refactor: Activity page * chore: activity user from user constructor * fix: update current asset after build method * refactor: tests with similar structure as lib * chore: remove avoid-declaring-call-method rule from dcm analysis * test: fix proper expect order * test: activity_statistics_provider_test * test: activity_provider_test * test: use proper matchers * test: activity_text_field_test & dismissible_activity_test added * test: add http mock to return transparent image * test: download isar core libs during test * test: add widget tags to widget test cases * test: activity_tile_test * build: currentAlbumProvider to generator * movie add / remove like to activity input tile * test: activities_page_test.dart * chore: better error logs * chore: dismissibleactivity as statelesswidget --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
58 lines
1.6 KiB
Dart
58 lines
1.6 KiB
Dart
import 'package:immich_mobile/shared/models/album.dart';
|
|
|
|
import 'asset.stub.dart';
|
|
import 'user.stub.dart';
|
|
|
|
final class AlbumStub {
|
|
const AlbumStub._();
|
|
|
|
static final emptyAlbum = Album(
|
|
name: "empty-album",
|
|
localId: "empty-album-local",
|
|
remoteId: "empty-album-remote",
|
|
createdAt: DateTime(2000),
|
|
modifiedAt: DateTime(2023),
|
|
shared: false,
|
|
activityEnabled: false,
|
|
startDate: DateTime(2020),
|
|
);
|
|
|
|
static final sharedWithUser = Album(
|
|
name: "empty-album-shared-with-user",
|
|
localId: "empty-album-shared-with-user-local",
|
|
remoteId: "empty-album-shared-with-user-remote",
|
|
createdAt: DateTime(2023),
|
|
modifiedAt: DateTime(2023),
|
|
shared: true,
|
|
activityEnabled: false,
|
|
endDate: DateTime(2020),
|
|
)..sharedUsers.addAll([UserStub.admin]);
|
|
|
|
static final oneAsset = Album(
|
|
name: "album-with-single-asset",
|
|
localId: "album-with-single-asset-local",
|
|
remoteId: "album-with-single-asset-remote",
|
|
createdAt: DateTime(2022),
|
|
modifiedAt: DateTime(2023),
|
|
shared: false,
|
|
activityEnabled: false,
|
|
startDate: DateTime(2020),
|
|
endDate: DateTime(2023),
|
|
)..assets.addAll([AssetStub.image1]);
|
|
|
|
static final twoAsset = Album(
|
|
name: "album-with-two-assets",
|
|
localId: "album-with-two-assets-local",
|
|
remoteId: "album-with-two-assets-remote",
|
|
createdAt: DateTime(2001),
|
|
modifiedAt: DateTime(2010),
|
|
shared: false,
|
|
activityEnabled: false,
|
|
startDate: DateTime(2019),
|
|
endDate: DateTime(2020),
|
|
)
|
|
..assets.addAll([AssetStub.image1, AssetStub.image2])
|
|
..activityEnabled = true
|
|
..owner.value = UserStub.admin;
|
|
}
|