2023-07-31 21:28:07 -04:00
|
|
|
export const fileStub = {
|
|
|
|
livePhotoStill: Object.freeze({
|
2024-01-04 20:45:16 +00:00
|
|
|
uuid: 'random-uuid',
|
2023-07-31 21:28:07 -04:00
|
|
|
originalPath: 'fake_path/asset_1.jpeg',
|
|
|
|
checksum: Buffer.from('file hash', 'utf8'),
|
|
|
|
originalName: 'asset_1.jpeg',
|
2024-01-12 18:43:36 -06:00
|
|
|
size: 42,
|
2023-07-31 21:28:07 -04:00
|
|
|
}),
|
|
|
|
livePhotoMotion: Object.freeze({
|
2024-01-22 10:04:45 -08:00
|
|
|
uuid: 'live-photo-motion-asset',
|
2023-07-31 21:28:07 -04:00
|
|
|
originalPath: 'fake_path/asset_1.mp4',
|
|
|
|
checksum: Buffer.from('live photo file hash', 'utf8'),
|
|
|
|
originalName: 'asset_1.mp4',
|
2024-01-12 18:43:36 -06:00
|
|
|
size: 69,
|
2023-07-31 21:28:07 -04:00
|
|
|
}),
|
|
|
|
};
|