mirror of
https://github.com/immich-app/immich.git
synced 2025-12-26 12:52:16 -08:00
* refactor: device asset entity to use modified time * chore: cleanup * refactor: remove album media dependency from hashservice * refactor: return updated copy of asset * add hash service tests * chore: rename hash batch constants * chore: log the number of assets processed during migration * chore: more logs * refactor: use lookup and more tests * use sort approach * refactor hash service to use for loop instead * refactor: rename to getByIds --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
53 lines
1.2 KiB
Dart
53 lines
1.2 KiB
Dart
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
|
|
final class AssetStub {
|
|
const AssetStub._();
|
|
|
|
static final image1 = Asset(
|
|
checksum: "image1-checksum",
|
|
localId: "image1",
|
|
remoteId: 'image1-remote',
|
|
ownerId: 1,
|
|
fileCreatedAt: DateTime(2019),
|
|
fileModifiedAt: DateTime(2020),
|
|
updatedAt: DateTime.now(),
|
|
durationInSeconds: 0,
|
|
type: AssetType.image,
|
|
fileName: "image1.jpg",
|
|
isFavorite: true,
|
|
isArchived: false,
|
|
isTrashed: false,
|
|
);
|
|
|
|
static final image2 = Asset(
|
|
checksum: "image2-checksum",
|
|
localId: "image2",
|
|
remoteId: 'image2-remote',
|
|
ownerId: 1,
|
|
fileCreatedAt: DateTime(2000),
|
|
fileModifiedAt: DateTime(2010),
|
|
updatedAt: DateTime.now(),
|
|
durationInSeconds: 60,
|
|
type: AssetType.video,
|
|
fileName: "image2.jpg",
|
|
isFavorite: false,
|
|
isArchived: false,
|
|
isTrashed: false,
|
|
);
|
|
|
|
static final image3 = Asset(
|
|
checksum: "image3-checksum",
|
|
localId: "image3",
|
|
ownerId: 1,
|
|
fileCreatedAt: DateTime(2025),
|
|
fileModifiedAt: DateTime(2025),
|
|
updatedAt: DateTime.now(),
|
|
durationInSeconds: 60,
|
|
type: AssetType.image,
|
|
fileName: "image3.jpg",
|
|
isFavorite: true,
|
|
isArchived: false,
|
|
isTrashed: false,
|
|
);
|
|
}
|