mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
86 lines
3.6 KiB
TypeScript
86 lines
3.6 KiB
TypeScript
import { BadRequestException } from '@nestjs/common';
|
|
import { JobName } from 'src/domain/job/job.constants';
|
|
import { IAssetRepository } from 'src/interfaces/asset.repository';
|
|
import { ClientEvent, ICommunicationRepository } from 'src/interfaces/communication.repository';
|
|
import { IJobRepository } from 'src/interfaces/job.repository';
|
|
import { TrashService } from 'src/services/trash.service';
|
|
import { assetStub } from 'test/fixtures/asset.stub';
|
|
import { authStub } from 'test/fixtures/auth.stub';
|
|
import { IAccessRepositoryMock, newAccessRepositoryMock } from 'test/repositories/access.repository.mock';
|
|
import { newAssetRepositoryMock } from 'test/repositories/asset.repository.mock';
|
|
import { newCommunicationRepositoryMock } from 'test/repositories/communication.repository.mock';
|
|
import { newJobRepositoryMock } from 'test/repositories/job.repository.mock';
|
|
|
|
describe(TrashService.name, () => {
|
|
let sut: TrashService;
|
|
let accessMock: IAccessRepositoryMock;
|
|
let assetMock: jest.Mocked<IAssetRepository>;
|
|
let jobMock: jest.Mocked<IJobRepository>;
|
|
let communicationMock: jest.Mocked<ICommunicationRepository>;
|
|
|
|
it('should work', () => {
|
|
expect(sut).toBeDefined();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
accessMock = newAccessRepositoryMock();
|
|
assetMock = newAssetRepositoryMock();
|
|
communicationMock = newCommunicationRepositoryMock();
|
|
jobMock = newJobRepositoryMock();
|
|
|
|
sut = new TrashService(accessMock, assetMock, jobMock, communicationMock);
|
|
});
|
|
|
|
describe('restoreAssets', () => {
|
|
it('should require asset restore access for all ids', async () => {
|
|
await expect(
|
|
sut.restoreAssets(authStub.user1, {
|
|
ids: ['asset-1'],
|
|
}),
|
|
).rejects.toBeInstanceOf(BadRequestException);
|
|
});
|
|
|
|
it('should restore a batch of assets', async () => {
|
|
accessMock.asset.checkOwnerAccess.mockResolvedValue(new Set(['asset1', 'asset2']));
|
|
|
|
await sut.restoreAssets(authStub.user1, { ids: ['asset1', 'asset2'] });
|
|
|
|
expect(assetMock.restoreAll).toHaveBeenCalledWith(['asset1', 'asset2']);
|
|
expect(jobMock.queue.mock.calls).toEqual([]);
|
|
});
|
|
});
|
|
|
|
describe('restore', () => {
|
|
it('should handle an empty trash', async () => {
|
|
assetMock.getByUserId.mockResolvedValue({ items: [], hasNextPage: false });
|
|
await expect(sut.restore(authStub.user1)).resolves.toBeUndefined();
|
|
expect(assetMock.restoreAll).not.toHaveBeenCalled();
|
|
expect(communicationMock.send).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('should restore and notify', async () => {
|
|
assetMock.getByUserId.mockResolvedValue({ items: [assetStub.image], hasNextPage: false });
|
|
await expect(sut.restore(authStub.user1)).resolves.toBeUndefined();
|
|
expect(assetMock.restoreAll).toHaveBeenCalledWith([assetStub.image.id]);
|
|
expect(communicationMock.send).toHaveBeenCalledWith(ClientEvent.ASSET_RESTORE, authStub.user1.user.id, [
|
|
assetStub.image.id,
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('empty', () => {
|
|
it('should handle an empty trash', async () => {
|
|
assetMock.getByUserId.mockResolvedValue({ items: [], hasNextPage: false });
|
|
await expect(sut.empty(authStub.user1)).resolves.toBeUndefined();
|
|
expect(jobMock.queueAll).toHaveBeenCalledWith([]);
|
|
});
|
|
|
|
it('should empty the trash', async () => {
|
|
assetMock.getByUserId.mockResolvedValue({ items: [assetStub.image], hasNextPage: false });
|
|
await expect(sut.empty(authStub.user1)).resolves.toBeUndefined();
|
|
expect(jobMock.queueAll).toHaveBeenCalledWith([
|
|
{ name: JobName.ASSET_DELETION, data: { id: assetStub.image.id } },
|
|
]);
|
|
});
|
|
});
|
|
});
|