2022-09-08 11:07:27 +02:00
|
|
|
import { IAssetRepository } from './asset-repository';
|
2022-08-27 07:53:37 +02:00
|
|
|
import { AssetService } from './asset.service';
|
2023-01-30 17:14:13 +01:00
|
|
|
import { QueryFailedError, Repository } from 'typeorm';
|
2023-01-12 03:34:36 +01:00
|
|
|
import { AssetEntity, AssetType } from '@app/infra';
|
2022-09-16 23:47:45 +02:00
|
|
|
import { CreateAssetDto } from './dto/create-asset.dto';
|
|
|
|
import { AssetCountByTimeBucket } from './response-dto/asset-count-by-time-group-response.dto';
|
|
|
|
import { TimeGroupEnum } from './dto/get-asset-count-by-time-bucket.dto';
|
|
|
|
import { AssetCountByUserIdResponseDto } from './response-dto/asset-count-by-user-id-response.dto';
|
2022-11-15 16:51:56 +01:00
|
|
|
import { DownloadService } from '../../modules/download/download.service';
|
2023-01-25 17:35:28 +01:00
|
|
|
import { AlbumRepository, IAlbumRepository } from '../album/album-repository';
|
2022-12-16 21:26:12 +01:00
|
|
|
import { StorageService } from '@app/storage';
|
2023-02-03 16:16:25 +01:00
|
|
|
import { ICryptoRepository, IJobRepository, ISharedLinkRepository, IStorageRepository, JobName } from '@app/domain';
|
2023-01-25 17:35:28 +01:00
|
|
|
import {
|
|
|
|
authStub,
|
|
|
|
newCryptoRepositoryMock,
|
|
|
|
newJobRepositoryMock,
|
|
|
|
newSharedLinkRepositoryMock,
|
2023-02-03 16:16:25 +01:00
|
|
|
newStorageRepositoryMock,
|
2023-01-25 17:35:28 +01:00
|
|
|
sharedLinkResponseStub,
|
|
|
|
sharedLinkStub,
|
|
|
|
} from '@app/domain/../test';
|
|
|
|
import { CreateAssetsShareLinkDto } from './dto/create-asset-shared-link.dto';
|
|
|
|
import { BadRequestException, ForbiddenException } from '@nestjs/common';
|
2022-08-27 07:53:37 +02:00
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
const _getCreateAssetDto = (): CreateAssetDto => {
|
|
|
|
const createAssetDto = new CreateAssetDto();
|
|
|
|
createAssetDto.deviceAssetId = 'deviceAssetId';
|
|
|
|
createAssetDto.deviceId = 'deviceId';
|
|
|
|
createAssetDto.assetType = AssetType.OTHER;
|
|
|
|
createAssetDto.createdAt = '2022-06-19T23:41:36.910Z';
|
|
|
|
createAssetDto.modifiedAt = '2022-06-19T23:41:36.910Z';
|
|
|
|
createAssetDto.isFavorite = false;
|
|
|
|
createAssetDto.duration = '0:00:00.000000';
|
|
|
|
|
|
|
|
return createAssetDto;
|
|
|
|
};
|
|
|
|
|
|
|
|
const _getAsset_1 = () => {
|
|
|
|
const asset_1 = new AssetEntity();
|
|
|
|
|
|
|
|
asset_1.id = 'id_1';
|
|
|
|
asset_1.userId = 'user_id_1';
|
|
|
|
asset_1.deviceAssetId = 'device_asset_id_1';
|
|
|
|
asset_1.deviceId = 'device_id_1';
|
|
|
|
asset_1.type = AssetType.VIDEO;
|
|
|
|
asset_1.originalPath = 'fake_path/asset_1.jpeg';
|
|
|
|
asset_1.resizePath = '';
|
|
|
|
asset_1.createdAt = '2022-06-19T23:41:36.910Z';
|
|
|
|
asset_1.modifiedAt = '2022-06-19T23:41:36.910Z';
|
|
|
|
asset_1.isFavorite = false;
|
|
|
|
asset_1.mimeType = 'image/jpeg';
|
|
|
|
asset_1.webpPath = '';
|
|
|
|
asset_1.encodedVideoPath = '';
|
|
|
|
asset_1.duration = '0:00:00.000000';
|
|
|
|
return asset_1;
|
|
|
|
};
|
|
|
|
|
|
|
|
const _getAsset_2 = () => {
|
|
|
|
const asset_2 = new AssetEntity();
|
|
|
|
|
|
|
|
asset_2.id = 'id_2';
|
|
|
|
asset_2.userId = 'user_id_1';
|
|
|
|
asset_2.deviceAssetId = 'device_asset_id_2';
|
|
|
|
asset_2.deviceId = 'device_id_1';
|
|
|
|
asset_2.type = AssetType.VIDEO;
|
|
|
|
asset_2.originalPath = 'fake_path/asset_2.jpeg';
|
|
|
|
asset_2.resizePath = '';
|
|
|
|
asset_2.createdAt = '2022-06-19T23:41:36.910Z';
|
|
|
|
asset_2.modifiedAt = '2022-06-19T23:41:36.910Z';
|
|
|
|
asset_2.isFavorite = false;
|
|
|
|
asset_2.mimeType = 'image/jpeg';
|
|
|
|
asset_2.webpPath = '';
|
|
|
|
asset_2.encodedVideoPath = '';
|
|
|
|
asset_2.duration = '0:00:00.000000';
|
|
|
|
|
|
|
|
return asset_2;
|
|
|
|
};
|
|
|
|
|
|
|
|
const _getAssets = () => {
|
|
|
|
return [_getAsset_1(), _getAsset_2()];
|
|
|
|
};
|
|
|
|
|
|
|
|
const _getAssetCountByTimeBucket = (): AssetCountByTimeBucket[] => {
|
|
|
|
const result1 = new AssetCountByTimeBucket();
|
|
|
|
result1.count = 2;
|
|
|
|
result1.timeBucket = '2022-06-01T00:00:00.000Z';
|
|
|
|
|
|
|
|
const result2 = new AssetCountByTimeBucket();
|
|
|
|
result1.count = 5;
|
|
|
|
result1.timeBucket = '2022-07-01T00:00:00.000Z';
|
|
|
|
|
|
|
|
return [result1, result2];
|
|
|
|
};
|
|
|
|
|
|
|
|
const _getAssetCountByUserId = (): AssetCountByUserIdResponseDto => {
|
|
|
|
const result = new AssetCountByUserIdResponseDto();
|
|
|
|
|
|
|
|
result.videos = 2;
|
|
|
|
result.photos = 2;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
2022-08-27 07:53:37 +02:00
|
|
|
describe('AssetService', () => {
|
2023-01-30 17:14:13 +01:00
|
|
|
let sut: AssetService;
|
2022-08-27 07:53:37 +02:00
|
|
|
let a: Repository<AssetEntity>; // TO BE DELETED AFTER FINISHED REFACTORING
|
|
|
|
let assetRepositoryMock: jest.Mocked<IAssetRepository>;
|
2022-12-04 18:42:36 +01:00
|
|
|
let albumRepositoryMock: jest.Mocked<IAlbumRepository>;
|
2022-11-15 16:51:56 +01:00
|
|
|
let downloadServiceMock: jest.Mocked<Partial<DownloadService>>;
|
2023-01-30 17:14:13 +01:00
|
|
|
let storageServiceMock: jest.Mocked<StorageService>;
|
2023-01-09 21:16:08 +01:00
|
|
|
let sharedLinkRepositoryMock: jest.Mocked<ISharedLinkRepository>;
|
2023-01-25 17:35:28 +01:00
|
|
|
let cryptoMock: jest.Mocked<ICryptoRepository>;
|
2023-01-22 05:13:36 +01:00
|
|
|
let jobMock: jest.Mocked<IJobRepository>;
|
2023-02-03 16:16:25 +01:00
|
|
|
let storageMock: jest.Mocked<IStorageRepository>;
|
2022-08-27 07:53:37 +02:00
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
beforeEach(() => {
|
2022-08-27 07:53:37 +02:00
|
|
|
assetRepositoryMock = {
|
2023-01-30 17:14:13 +01:00
|
|
|
get: jest.fn(),
|
2022-08-27 07:53:37 +02:00
|
|
|
create: jest.fn(),
|
2023-01-30 17:14:13 +01:00
|
|
|
remove: jest.fn(),
|
|
|
|
|
2022-11-08 17:20:36 +01:00
|
|
|
update: jest.fn(),
|
2023-01-27 05:50:22 +01:00
|
|
|
getAll: jest.fn(),
|
|
|
|
getAllVideos: jest.fn(),
|
2022-08-27 07:53:37 +02:00
|
|
|
getAllByUserId: jest.fn(),
|
|
|
|
getAllByDeviceId: jest.fn(),
|
2022-09-04 15:34:39 +02:00
|
|
|
getAssetCountByTimeBucket: jest.fn(),
|
2022-08-27 07:53:37 +02:00
|
|
|
getById: jest.fn(),
|
|
|
|
getDetectedObjectsByUserId: jest.fn(),
|
|
|
|
getLocationsByUserId: jest.fn(),
|
|
|
|
getSearchPropertiesByUserId: jest.fn(),
|
2022-09-04 15:34:39 +02:00
|
|
|
getAssetByTimeBucket: jest.fn(),
|
2022-09-05 21:45:38 +02:00
|
|
|
getAssetByChecksum: jest.fn(),
|
2022-09-07 22:16:18 +02:00
|
|
|
getAssetCountByUserId: jest.fn(),
|
2022-10-06 18:25:54 +02:00
|
|
|
getAssetWithNoEXIF: jest.fn(),
|
|
|
|
getAssetWithNoThumbnail: jest.fn(),
|
|
|
|
getAssetWithNoSmartInfo: jest.fn(),
|
2023-01-22 03:09:02 +01:00
|
|
|
getAssetWithNoEncodedVideo: jest.fn(),
|
2022-10-25 16:51:03 +02:00
|
|
|
getExistingAssets: jest.fn(),
|
2022-12-04 18:42:36 +01:00
|
|
|
countByIdAndUser: jest.fn(),
|
2022-08-27 07:53:37 +02:00
|
|
|
};
|
|
|
|
|
2023-01-25 17:35:28 +01:00
|
|
|
albumRepositoryMock = {
|
|
|
|
getSharedWithUserAlbumCount: jest.fn(),
|
|
|
|
} as unknown as jest.Mocked<AlbumRepository>;
|
|
|
|
|
2022-11-15 16:51:56 +01:00
|
|
|
downloadServiceMock = {
|
|
|
|
downloadArchive: jest.fn(),
|
|
|
|
};
|
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
storageServiceMock = {
|
|
|
|
moveAsset: jest.fn(),
|
|
|
|
removeEmptyDirectories: jest.fn(),
|
|
|
|
} as unknown as jest.Mocked<StorageService>;
|
2023-01-09 21:16:08 +01:00
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
sharedLinkRepositoryMock = newSharedLinkRepositoryMock();
|
2023-01-22 05:13:36 +01:00
|
|
|
jobMock = newJobRepositoryMock();
|
2023-01-25 17:35:28 +01:00
|
|
|
cryptoMock = newCryptoRepositoryMock();
|
2023-02-03 16:16:25 +01:00
|
|
|
storageMock = newStorageRepositoryMock();
|
2023-01-22 05:13:36 +01:00
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
sut = new AssetService(
|
2022-11-19 06:12:54 +01:00
|
|
|
assetRepositoryMock,
|
2022-12-04 18:42:36 +01:00
|
|
|
albumRepositoryMock,
|
2022-11-19 06:12:54 +01:00
|
|
|
a,
|
|
|
|
downloadServiceMock as DownloadService,
|
2023-01-30 17:14:13 +01:00
|
|
|
storageServiceMock,
|
2023-01-09 21:16:08 +01:00
|
|
|
sharedLinkRepositoryMock,
|
2023-01-22 05:13:36 +01:00
|
|
|
jobMock,
|
2023-01-25 17:35:28 +01:00
|
|
|
cryptoMock,
|
2023-02-03 16:16:25 +01:00
|
|
|
storageMock,
|
2022-11-19 06:12:54 +01:00
|
|
|
);
|
2022-08-27 07:53:37 +02:00
|
|
|
});
|
|
|
|
|
2023-01-25 17:35:28 +01:00
|
|
|
describe('createAssetsSharedLink', () => {
|
|
|
|
it('should create an individual share link', async () => {
|
|
|
|
const asset1 = _getAsset_1();
|
|
|
|
const dto: CreateAssetsShareLinkDto = { assetIds: [asset1.id] };
|
|
|
|
|
|
|
|
assetRepositoryMock.getById.mockResolvedValue(asset1);
|
|
|
|
assetRepositoryMock.countByIdAndUser.mockResolvedValue(1);
|
|
|
|
sharedLinkRepositoryMock.create.mockResolvedValue(sharedLinkStub.valid);
|
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
await expect(sut.createAssetsSharedLink(authStub.user1, dto)).resolves.toEqual(sharedLinkResponseStub.valid);
|
2023-01-25 17:35:28 +01:00
|
|
|
|
|
|
|
expect(assetRepositoryMock.getById).toHaveBeenCalledWith(asset1.id);
|
|
|
|
expect(assetRepositoryMock.countByIdAndUser).toHaveBeenCalledWith(asset1.id, authStub.user1.id);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('updateAssetsInSharedLink', () => {
|
|
|
|
it('should require a valid shared link', async () => {
|
|
|
|
const asset1 = _getAsset_1();
|
|
|
|
|
|
|
|
const authDto = authStub.adminSharedLink;
|
|
|
|
const dto = { assetIds: [asset1.id] };
|
|
|
|
|
|
|
|
assetRepositoryMock.getById.mockResolvedValue(asset1);
|
|
|
|
sharedLinkRepositoryMock.get.mockResolvedValue(null);
|
|
|
|
sharedLinkRepositoryMock.hasAssetAccess.mockResolvedValue(true);
|
|
|
|
|
2023-02-15 22:21:22 +01:00
|
|
|
await expect(sut.addAssetsToSharedLink(authDto, dto)).rejects.toBeInstanceOf(BadRequestException);
|
2023-01-25 17:35:28 +01:00
|
|
|
|
|
|
|
expect(assetRepositoryMock.getById).toHaveBeenCalledWith(asset1.id);
|
|
|
|
expect(sharedLinkRepositoryMock.get).toHaveBeenCalledWith(authDto.id, authDto.sharedLinkId);
|
|
|
|
expect(sharedLinkRepositoryMock.save).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2023-02-15 22:21:22 +01:00
|
|
|
it('should add assets to a shared link', async () => {
|
|
|
|
const asset1 = _getAsset_1();
|
|
|
|
|
|
|
|
const authDto = authStub.adminSharedLink;
|
|
|
|
const dto = { assetIds: [asset1.id] };
|
|
|
|
|
|
|
|
assetRepositoryMock.getById.mockResolvedValue(asset1);
|
|
|
|
sharedLinkRepositoryMock.get.mockResolvedValue(sharedLinkStub.valid);
|
|
|
|
sharedLinkRepositoryMock.hasAssetAccess.mockResolvedValue(true);
|
|
|
|
sharedLinkRepositoryMock.save.mockResolvedValue(sharedLinkStub.valid);
|
|
|
|
|
|
|
|
await expect(sut.addAssetsToSharedLink(authDto, dto)).resolves.toEqual(sharedLinkResponseStub.valid);
|
|
|
|
|
|
|
|
expect(assetRepositoryMock.getById).toHaveBeenCalledWith(asset1.id);
|
|
|
|
expect(sharedLinkRepositoryMock.get).toHaveBeenCalledWith(authDto.id, authDto.sharedLinkId);
|
|
|
|
expect(sharedLinkRepositoryMock.save).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2023-01-25 17:35:28 +01:00
|
|
|
it('should remove assets from a shared link', async () => {
|
|
|
|
const asset1 = _getAsset_1();
|
|
|
|
|
|
|
|
const authDto = authStub.adminSharedLink;
|
|
|
|
const dto = { assetIds: [asset1.id] };
|
|
|
|
|
|
|
|
assetRepositoryMock.getById.mockResolvedValue(asset1);
|
|
|
|
sharedLinkRepositoryMock.get.mockResolvedValue(sharedLinkStub.valid);
|
|
|
|
sharedLinkRepositoryMock.hasAssetAccess.mockResolvedValue(true);
|
|
|
|
sharedLinkRepositoryMock.save.mockResolvedValue(sharedLinkStub.valid);
|
|
|
|
|
2023-02-15 22:21:22 +01:00
|
|
|
await expect(sut.removeAssetsFromSharedLink(authDto, dto)).resolves.toEqual(sharedLinkResponseStub.valid);
|
2023-01-25 17:35:28 +01:00
|
|
|
|
|
|
|
expect(assetRepositoryMock.getById).toHaveBeenCalledWith(asset1.id);
|
|
|
|
expect(sharedLinkRepositoryMock.get).toHaveBeenCalledWith(authDto.id, authDto.sharedLinkId);
|
2023-02-15 22:21:22 +01:00
|
|
|
expect(sharedLinkRepositoryMock.save).toHaveBeenCalled();
|
2023-01-25 17:35:28 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
describe('uploadFile', () => {
|
|
|
|
it('should handle a file upload', async () => {
|
|
|
|
const assetEntity = _getAsset_1();
|
|
|
|
const file = {
|
|
|
|
originalPath: 'fake_path/asset_1.jpeg',
|
|
|
|
mimeType: 'image/jpeg',
|
|
|
|
checksum: Buffer.from('file hash', 'utf8'),
|
|
|
|
originalName: 'asset_1.jpeg',
|
|
|
|
};
|
|
|
|
const dto = _getCreateAssetDto();
|
|
|
|
|
|
|
|
assetRepositoryMock.create.mockImplementation(() => Promise.resolve(assetEntity));
|
|
|
|
storageServiceMock.moveAsset.mockResolvedValue({ ...assetEntity, originalPath: 'fake_new_path/asset_123.jpeg' });
|
|
|
|
|
|
|
|
await expect(sut.uploadFile(authStub.user1, dto, file)).resolves.toEqual({ duplicate: false, id: 'id_1' });
|
|
|
|
});
|
2022-08-27 07:53:37 +02:00
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
it('should handle a duplicate', async () => {
|
|
|
|
const file = {
|
|
|
|
originalPath: 'fake_path/asset_1.jpeg',
|
|
|
|
mimeType: 'image/jpeg',
|
|
|
|
checksum: Buffer.from('file hash', 'utf8'),
|
|
|
|
originalName: 'asset_1.jpeg',
|
|
|
|
};
|
|
|
|
const dto = _getCreateAssetDto();
|
|
|
|
const error = new QueryFailedError('', [], '');
|
|
|
|
(error as any).constraint = 'UQ_userid_checksum';
|
|
|
|
|
|
|
|
assetRepositoryMock.create.mockRejectedValue(error);
|
|
|
|
assetRepositoryMock.getAssetByChecksum.mockResolvedValue(_getAsset_1());
|
|
|
|
|
|
|
|
await expect(sut.uploadFile(authStub.user1, dto, file)).resolves.toEqual({ duplicate: true, id: 'id_1' });
|
|
|
|
|
|
|
|
expect(jobMock.add).toHaveBeenCalledWith({
|
|
|
|
name: JobName.DELETE_FILE_ON_DISK,
|
|
|
|
data: { assets: [{ originalPath: 'fake_path/asset_1.jpeg', resizePath: null }] },
|
|
|
|
});
|
|
|
|
expect(storageServiceMock.moveAsset).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should handle a live photo', async () => {
|
|
|
|
const file = {
|
|
|
|
originalPath: 'fake_path/asset_1.jpeg',
|
|
|
|
mimeType: 'image/jpeg',
|
|
|
|
checksum: Buffer.from('file hash', 'utf8'),
|
|
|
|
originalName: 'asset_1.jpeg',
|
|
|
|
};
|
|
|
|
const asset = {
|
|
|
|
id: 'live-photo-asset',
|
|
|
|
originalPath: file.originalPath,
|
|
|
|
userId: authStub.user1.id,
|
|
|
|
type: AssetType.IMAGE,
|
|
|
|
isVisible: true,
|
|
|
|
} as AssetEntity;
|
|
|
|
|
|
|
|
const livePhotoFile = {
|
|
|
|
originalPath: 'fake_path/asset_1.mp4',
|
|
|
|
mimeType: 'image/jpeg',
|
|
|
|
checksum: Buffer.from('live photo file hash', 'utf8'),
|
|
|
|
originalName: 'asset_1.jpeg',
|
|
|
|
};
|
|
|
|
|
|
|
|
const livePhotoAsset = {
|
|
|
|
id: 'live-photo-motion',
|
|
|
|
originalPath: livePhotoFile.originalPath,
|
|
|
|
userId: authStub.user1.id,
|
|
|
|
type: AssetType.VIDEO,
|
|
|
|
isVisible: false,
|
|
|
|
} as AssetEntity;
|
|
|
|
|
|
|
|
const dto = _getCreateAssetDto();
|
|
|
|
const error = new QueryFailedError('', [], '');
|
|
|
|
(error as any).constraint = 'UQ_userid_checksum';
|
|
|
|
|
|
|
|
assetRepositoryMock.create.mockResolvedValueOnce(livePhotoAsset);
|
|
|
|
assetRepositoryMock.create.mockResolvedValueOnce(asset);
|
|
|
|
storageServiceMock.moveAsset.mockImplementation((asset) => Promise.resolve(asset));
|
|
|
|
|
|
|
|
await expect(sut.uploadFile(authStub.user1, dto, file, livePhotoFile)).resolves.toEqual({
|
|
|
|
duplicate: false,
|
|
|
|
id: 'live-photo-asset',
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(jobMock.add.mock.calls).toEqual([
|
|
|
|
[{ name: JobName.ASSET_UPLOADED, data: { asset: livePhotoAsset, fileName: file.originalName } }],
|
|
|
|
[{ name: JobName.ASSET_UPLOADED, data: { asset, fileName: file.originalName } }],
|
|
|
|
]);
|
|
|
|
});
|
2022-09-16 23:47:45 +02:00
|
|
|
});
|
2022-08-27 07:53:37 +02:00
|
|
|
|
|
|
|
it('get assets by device id', async () => {
|
2022-09-16 23:47:45 +02:00
|
|
|
const assets = _getAssets();
|
|
|
|
|
|
|
|
assetRepositoryMock.getAllByDeviceId.mockImplementation(() =>
|
|
|
|
Promise.resolve<string[]>(Array.from(assets.map((asset) => asset.deviceAssetId))),
|
|
|
|
);
|
2022-08-27 07:53:37 +02:00
|
|
|
|
2022-09-16 23:47:45 +02:00
|
|
|
const deviceId = 'device_id_1';
|
2023-01-30 17:14:13 +01:00
|
|
|
const result = await sut.getUserAssetsByDeviceId(authStub.user1, deviceId);
|
2022-08-27 07:53:37 +02:00
|
|
|
|
2022-09-16 23:47:45 +02:00
|
|
|
expect(result.length).toEqual(2);
|
|
|
|
expect(result).toEqual(assets.map((asset) => asset.deviceAssetId));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('get assets count by time bucket', async () => {
|
|
|
|
const assetCountByTimeBucket = _getAssetCountByTimeBucket();
|
|
|
|
|
|
|
|
assetRepositoryMock.getAssetCountByTimeBucket.mockImplementation(() =>
|
|
|
|
Promise.resolve<AssetCountByTimeBucket[]>(assetCountByTimeBucket),
|
|
|
|
);
|
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
const result = await sut.getAssetCountByTimeBucket(authStub.user1, {
|
2022-09-16 23:47:45 +02:00
|
|
|
timeGroup: TimeGroupEnum.Month,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(result.totalCount).toEqual(assetCountByTimeBucket.reduce((a, b) => a + b.count, 0));
|
|
|
|
expect(result.buckets.length).toEqual(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('get asset count by user id', async () => {
|
|
|
|
const assetCount = _getAssetCountByUserId();
|
|
|
|
|
|
|
|
assetRepositoryMock.getAssetCountByUserId.mockImplementation(() =>
|
|
|
|
Promise.resolve<AssetCountByUserIdResponseDto>(assetCount),
|
|
|
|
);
|
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
const result = await sut.getAssetCountByUserId(authStub.user1);
|
2022-09-16 23:47:45 +02:00
|
|
|
|
|
|
|
expect(result).toEqual(assetCount);
|
2022-08-27 07:53:37 +02:00
|
|
|
});
|
2023-01-25 17:35:28 +01:00
|
|
|
|
2023-01-30 17:14:13 +01:00
|
|
|
describe('deleteAll', () => {
|
|
|
|
it('should return failed status when an asset is missing', async () => {
|
|
|
|
assetRepositoryMock.get.mockResolvedValue(null);
|
|
|
|
|
|
|
|
await expect(sut.deleteAll(authStub.user1, { ids: ['asset1'] })).resolves.toEqual([
|
|
|
|
{ id: 'asset1', status: 'FAILED' },
|
|
|
|
]);
|
|
|
|
|
|
|
|
expect(jobMock.add).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return failed status a delete fails', async () => {
|
|
|
|
assetRepositoryMock.get.mockResolvedValue({ id: 'asset1' } as AssetEntity);
|
|
|
|
assetRepositoryMock.remove.mockRejectedValue('delete failed');
|
|
|
|
|
|
|
|
await expect(sut.deleteAll(authStub.user1, { ids: ['asset1'] })).resolves.toEqual([
|
|
|
|
{ id: 'asset1', status: 'FAILED' },
|
|
|
|
]);
|
|
|
|
|
|
|
|
expect(jobMock.add).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should delete a live photo', async () => {
|
|
|
|
assetRepositoryMock.get.mockResolvedValueOnce({ id: 'asset1', livePhotoVideoId: 'live-photo' } as AssetEntity);
|
|
|
|
assetRepositoryMock.get.mockResolvedValueOnce({ id: 'live-photo' } as AssetEntity);
|
|
|
|
|
|
|
|
await expect(sut.deleteAll(authStub.user1, { ids: ['asset1'] })).resolves.toEqual([
|
|
|
|
{ id: 'asset1', status: 'SUCCESS' },
|
|
|
|
{ id: 'live-photo', status: 'SUCCESS' },
|
|
|
|
]);
|
|
|
|
|
|
|
|
expect(jobMock.add).toHaveBeenCalledWith({
|
|
|
|
name: JobName.DELETE_FILE_ON_DISK,
|
|
|
|
data: { assets: [{ id: 'asset1', livePhotoVideoId: 'live-photo' }, { id: 'live-photo' }] },
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should delete a batch of assets', async () => {
|
|
|
|
assetRepositoryMock.get.mockImplementation((id) => Promise.resolve({ id } as AssetEntity));
|
|
|
|
assetRepositoryMock.remove.mockImplementation(() => Promise.resolve());
|
|
|
|
|
|
|
|
await expect(sut.deleteAll(authStub.user1, { ids: ['asset1', 'asset2'] })).resolves.toEqual([
|
|
|
|
{ id: 'asset1', status: 'SUCCESS' },
|
|
|
|
{ id: 'asset2', status: 'SUCCESS' },
|
|
|
|
]);
|
|
|
|
|
|
|
|
expect(jobMock.add.mock.calls).toEqual([
|
|
|
|
[{ name: JobName.DELETE_FILE_ON_DISK, data: { assets: [{ id: 'asset1' }, { id: 'asset2' }] } }],
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-01-25 17:35:28 +01:00
|
|
|
describe('checkDownloadAccess', () => {
|
|
|
|
it('should validate download access', async () => {
|
2023-01-30 17:14:13 +01:00
|
|
|
await sut.checkDownloadAccess(authStub.adminSharedLink);
|
2023-01-25 17:35:28 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should not allow when user is not allowed to download', async () => {
|
2023-01-30 17:14:13 +01:00
|
|
|
expect(() => sut.checkDownloadAccess(authStub.readonlySharedLink)).toThrow(ForbiddenException);
|
2023-01-25 17:35:28 +01:00
|
|
|
});
|
|
|
|
});
|
2023-02-03 16:16:25 +01:00
|
|
|
|
|
|
|
describe('downloadFile', () => {
|
|
|
|
it('should download a single file', async () => {
|
|
|
|
assetRepositoryMock.countByIdAndUser.mockResolvedValue(1);
|
|
|
|
assetRepositoryMock.get.mockResolvedValue(_getAsset_1());
|
|
|
|
|
|
|
|
await sut.downloadFile(authStub.admin, 'id_1');
|
|
|
|
|
|
|
|
expect(storageMock.createReadStream).toHaveBeenCalledWith('fake_path/asset_1.jpeg', 'image/jpeg');
|
|
|
|
});
|
|
|
|
});
|
2022-08-27 07:53:37 +02:00
|
|
|
});
|