mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04:00
821 lines
29 KiB
TypeScript
821 lines
29 KiB
TypeScript
import {
|
|
LibraryResponseDto,
|
|
LibraryType,
|
|
LoginResponseDto,
|
|
ScanLibraryDto,
|
|
getAllLibraries,
|
|
scanLibrary,
|
|
} from '@immich/sdk';
|
|
import { cpSync, existsSync } from 'node:fs';
|
|
import { Socket } from 'socket.io-client';
|
|
import { userDto, uuidDto } from 'src/fixtures';
|
|
import { errorDto } from 'src/responses';
|
|
import { app, asBearerAuth, testAssetDir, testAssetDirInternal, utils } from 'src/utils';
|
|
import request from 'supertest';
|
|
import { utimes } from 'utimes';
|
|
import { afterAll, beforeAll, beforeEach, describe, expect, it } from 'vitest';
|
|
|
|
const scan = async (accessToken: string, id: string, dto: ScanLibraryDto = {}) =>
|
|
scanLibrary({ id, scanLibraryDto: dto }, { headers: asBearerAuth(accessToken) });
|
|
|
|
describe('/library', () => {
|
|
let admin: LoginResponseDto;
|
|
let user: LoginResponseDto;
|
|
let library: LibraryResponseDto;
|
|
let websocket: Socket;
|
|
|
|
beforeAll(async () => {
|
|
await utils.resetDatabase();
|
|
admin = await utils.adminSetup();
|
|
await utils.resetAdminConfig(admin.accessToken);
|
|
user = await utils.userSetup(admin.accessToken, userDto.user1);
|
|
library = await utils.createLibrary(admin.accessToken, { ownerId: admin.userId, type: LibraryType.External });
|
|
websocket = await utils.connectWebsocket(admin.accessToken);
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetA.png`);
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryB/assetB.png`);
|
|
});
|
|
|
|
afterAll(() => {
|
|
utils.disconnectWebsocket(websocket);
|
|
utils.resetTempFolder();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
utils.resetEvents();
|
|
});
|
|
|
|
describe('GET /library', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).get('/library');
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should start with a default upload library', async () => {
|
|
const { status, body } = await request(app).get('/library').set('Authorization', `Bearer ${admin.accessToken}`);
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
ownerId: admin.userId,
|
|
type: LibraryType.Upload,
|
|
name: 'Default Library',
|
|
refreshedAt: null,
|
|
assetCount: 0,
|
|
importPaths: [],
|
|
exclusionPatterns: [],
|
|
}),
|
|
]),
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('POST /library', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).post('/library').send({});
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should require admin authentication', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${user.accessToken}`)
|
|
.send({ ownerId: admin.userId, type: LibraryType.External });
|
|
|
|
expect(status).toBe(403);
|
|
expect(body).toEqual(errorDto.forbidden);
|
|
});
|
|
|
|
it('should create an external library with defaults', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ ownerId: admin.userId, type: LibraryType.External });
|
|
|
|
expect(status).toBe(201);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
name: 'New External Library',
|
|
refreshedAt: null,
|
|
assetCount: 0,
|
|
importPaths: [],
|
|
exclusionPatterns: [],
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should create an external library with options', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
name: 'My Awesome Library',
|
|
importPaths: ['/path/to/import'],
|
|
exclusionPatterns: ['**/Raw/**'],
|
|
});
|
|
|
|
expect(status).toBe(201);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
name: 'My Awesome Library',
|
|
importPaths: ['/path/to/import'],
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should not create an external library with duplicate import paths', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
name: 'My Awesome Library',
|
|
importPaths: ['/path', '/path'],
|
|
exclusionPatterns: ['**/Raw/**'],
|
|
});
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest(["All importPaths's elements must be unique"]));
|
|
});
|
|
|
|
it('should not create an external library with duplicate exclusion patterns', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
name: 'My Awesome Library',
|
|
importPaths: ['/path/to/import'],
|
|
exclusionPatterns: ['**/Raw/**', '**/Raw/**'],
|
|
});
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest(["All exclusionPatterns's elements must be unique"]));
|
|
});
|
|
|
|
it('should create an upload library with defaults', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ ownerId: admin.userId, type: LibraryType.Upload });
|
|
|
|
expect(status).toBe(201);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
ownerId: admin.userId,
|
|
type: LibraryType.Upload,
|
|
name: 'New Upload Library',
|
|
refreshedAt: null,
|
|
assetCount: 0,
|
|
importPaths: [],
|
|
exclusionPatterns: [],
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should create an upload library with options', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ ownerId: admin.userId, type: LibraryType.Upload, name: 'My Awesome Library' });
|
|
|
|
expect(status).toBe(201);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
name: 'My Awesome Library',
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should not allow upload libraries to have import paths', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ ownerId: admin.userId, type: LibraryType.Upload, importPaths: ['/path/to/import'] });
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest('Upload libraries cannot have import paths'));
|
|
});
|
|
|
|
it('should not allow upload libraries to have exclusion patterns', async () => {
|
|
const { status, body } = await request(app)
|
|
.post('/library')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ ownerId: admin.userId, type: LibraryType.Upload, exclusionPatterns: ['**/Raw/**'] });
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest('Upload libraries cannot have exclusion patterns'));
|
|
});
|
|
});
|
|
|
|
describe('PUT /library/:id', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).put(`/library/${uuidDto.notFound}`).send({});
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should change the library name', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ name: 'New Library Name' });
|
|
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
name: 'New Library Name',
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should not set an empty name', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ name: '' });
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest(['name should not be empty']));
|
|
});
|
|
|
|
it('should change the import paths', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ importPaths: [testAssetDirInternal] });
|
|
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
importPaths: [testAssetDirInternal],
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should reject an empty import path', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ importPaths: [''] });
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest(['each value in importPaths should not be empty']));
|
|
});
|
|
|
|
it('should reject duplicate import paths', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ importPaths: ['/path', '/path'] });
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest(["All importPaths's elements must be unique"]));
|
|
});
|
|
|
|
it('should change the exclusion pattern', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ exclusionPatterns: ['**/Raw/**'] });
|
|
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
exclusionPatterns: ['**/Raw/**'],
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should reject duplicate exclusion patterns', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ exclusionPatterns: ['**/*.jpg', '**/*.jpg'] });
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest(["All exclusionPatterns's elements must be unique"]));
|
|
});
|
|
|
|
it('should reject an empty exclusion pattern', async () => {
|
|
const { status, body } = await request(app)
|
|
.put(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send({ exclusionPatterns: [''] });
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest(['each value in exclusionPatterns should not be empty']));
|
|
});
|
|
});
|
|
|
|
describe('GET /library/:id', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).get(`/library/${uuidDto.notFound}`);
|
|
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should require admin access', async () => {
|
|
const { status, body } = await request(app)
|
|
.get(`/library/${uuidDto.notFound}`)
|
|
.set('Authorization', `Bearer ${user.accessToken}`);
|
|
expect(status).toBe(403);
|
|
expect(body).toEqual(errorDto.forbidden);
|
|
});
|
|
|
|
it('should get library by id', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
});
|
|
|
|
const { status, body } = await request(app)
|
|
.get(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`);
|
|
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual(
|
|
expect.objectContaining({
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
name: 'New External Library',
|
|
refreshedAt: null,
|
|
assetCount: 0,
|
|
importPaths: [],
|
|
exclusionPatterns: [],
|
|
}),
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('GET /library/:id/statistics', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).get(`/library/${uuidDto.notFound}/statistics`);
|
|
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
});
|
|
|
|
describe('POST /library/:id/scan', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).post(`/library/${uuidDto.notFound}/scan`).send({});
|
|
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should not scan an upload library', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.Upload,
|
|
});
|
|
|
|
const { status, body } = await request(app)
|
|
.post(`/library/${library.id}/scan`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`);
|
|
|
|
expect(status).toBe(400);
|
|
expect(body).toEqual(errorDto.badRequest('Can only refresh external libraries'));
|
|
});
|
|
|
|
it('should scan external library', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp/directoryA`],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForWebsocketEvent({ event: 'assetUpload', total: 1 });
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, {
|
|
originalPath: `${testAssetDirInternal}/temp/directoryA/assetA.png`,
|
|
});
|
|
expect(assets.count).toBe(1);
|
|
});
|
|
|
|
it('should scan external library with exclusion pattern', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
exclusionPatterns: ['**/directoryA'],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForWebsocketEvent({ event: 'assetUpload', total: 1 });
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(assets.count).toBe(1);
|
|
expect(assets.items[0].originalPath.includes('directoryB'));
|
|
});
|
|
|
|
it('should scan multiple import paths', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp/directoryA`, `${testAssetDirInternal}/temp/directoryB`],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForWebsocketEvent({ event: 'assetUpload', total: 2 });
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(assets.count).toBe(2);
|
|
expect(assets.items.find((asset) => asset.originalPath.includes('directoryA'))).toBeDefined();
|
|
expect(assets.items.find((asset) => asset.originalPath.includes('directoryB'))).toBeDefined();
|
|
});
|
|
|
|
it('should pick up new files', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForWebsocketEvent({ event: 'assetUpload', total: 2 });
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(assets.count).toBe(2);
|
|
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetB.png`);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForWebsocketEvent({ event: 'assetUpload', total: 3 });
|
|
|
|
const { assets: newAssets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(newAssets.count).toBe(3);
|
|
utils.removeImageFile(`${testAssetDir}/temp/directoryA/assetB.png`);
|
|
});
|
|
|
|
it('should offline missing files', async () => {
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetB.png`);
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
utils.removeImageFile(`${testAssetDir}/temp/directoryA/assetB.png`);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(assets.items).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
isOffline: true,
|
|
originalFileName: 'assetB.png',
|
|
}),
|
|
]),
|
|
);
|
|
});
|
|
|
|
it('should scan new files', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetC.png`);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
utils.removeImageFile(`${testAssetDir}/temp/directoryA/assetC.png`);
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(assets.items).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
originalFileName: 'assetC.png',
|
|
}),
|
|
]),
|
|
);
|
|
});
|
|
|
|
describe('with refreshModifiedFiles=true', () => {
|
|
it('should reimport modified files', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
await utimes(`${testAssetDir}/temp/directoryA/assetB.jpg`, 447_775_200_000);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
cpSync(`${testAssetDir}/albums/nature/tanners_ridge.jpg`, `${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
await utimes(`${testAssetDir}/temp/directoryA/assetB.jpg`, 447_775_200_001);
|
|
|
|
await scan(admin.accessToken, library.id, { refreshModifiedFiles: true });
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
await utils.waitForQueueFinish(admin.accessToken, 'metadataExtraction');
|
|
utils.removeImageFile(`${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, {
|
|
libraryId: library.id,
|
|
model: 'NIKON D750',
|
|
});
|
|
expect(assets.count).toBe(1);
|
|
});
|
|
|
|
it('should not reimport unmodified files', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
await utimes(`${testAssetDir}/temp/directoryA/assetB.jpg`, 447_775_200_000);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
cpSync(`${testAssetDir}/albums/nature/tanners_ridge.jpg`, `${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
await utimes(`${testAssetDir}/temp/directoryA/assetB.jpg`, 447_775_200_000);
|
|
|
|
await scan(admin.accessToken, library.id, { refreshModifiedFiles: true });
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
await utils.waitForQueueFinish(admin.accessToken, 'metadataExtraction');
|
|
utils.removeImageFile(`${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, {
|
|
libraryId: library.id,
|
|
model: 'NIKON D750',
|
|
});
|
|
expect(assets.count).toBe(0);
|
|
});
|
|
});
|
|
|
|
describe('with refreshAllFiles=true', () => {
|
|
it('should reimport all files', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
await utimes(`${testAssetDir}/temp/directoryA/assetB.jpg`, 447_775_200_000);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
cpSync(`${testAssetDir}/albums/nature/tanners_ridge.jpg`, `${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
await utimes(`${testAssetDir}/temp/directoryA/assetB.jpg`, 447_775_200_000);
|
|
|
|
await scan(admin.accessToken, library.id, { refreshAllFiles: true });
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
await utils.waitForQueueFinish(admin.accessToken, 'metadataExtraction');
|
|
utils.removeImageFile(`${testAssetDir}/temp/directoryA/assetB.jpg`);
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, {
|
|
libraryId: library.id,
|
|
model: 'NIKON D750',
|
|
});
|
|
expect(assets.count).toBe(1);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('POST /library/:id/removeOffline', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).post(`/library/${uuidDto.notFound}/removeOffline`).send({});
|
|
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should remove offline files', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
utils.createImageFile(`${testAssetDir}/temp/directoryA/assetB.png`);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
const { assets: initialAssets } = await utils.metadataSearch(admin.accessToken, {
|
|
libraryId: library.id,
|
|
});
|
|
expect(initialAssets.count).toBe(3);
|
|
|
|
utils.removeImageFile(`${testAssetDir}/temp/directoryA/assetB.png`);
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
const { assets: offlineAssets } = await utils.metadataSearch(admin.accessToken, {
|
|
libraryId: library.id,
|
|
isOffline: true,
|
|
});
|
|
expect(offlineAssets.count).toBe(1);
|
|
|
|
const { status } = await request(app)
|
|
.post(`/library/${library.id}/removeOffline`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send();
|
|
expect(status).toBe(204);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
await utils.waitForQueueFinish(admin.accessToken, 'backgroundTask');
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(assets.count).toBe(2);
|
|
});
|
|
|
|
it('should not remove online files', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
const { assets: assetsBefore } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
expect(assetsBefore.count).toBeGreaterThan(1);
|
|
|
|
const { status } = await request(app)
|
|
.post(`/library/${library.id}/removeOffline`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`)
|
|
.send();
|
|
expect(status).toBe(204);
|
|
await utils.waitForQueueFinish(admin.accessToken, 'library');
|
|
|
|
const { assets } = await utils.metadataSearch(admin.accessToken, { libraryId: library.id });
|
|
|
|
expect(assets).toEqual(assetsBefore);
|
|
});
|
|
});
|
|
|
|
describe('POST /library/:id/validate', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).post(`/library/${uuidDto.notFound}/validate`).send({});
|
|
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should pass with no import paths', async () => {
|
|
const response = await utils.validateLibrary(admin.accessToken, library.id, { importPaths: [] });
|
|
expect(response.importPaths).toEqual([]);
|
|
});
|
|
|
|
it('should fail if path does not exist', async () => {
|
|
const pathToTest = `${testAssetDirInternal}/does/not/exist`;
|
|
|
|
const response = await utils.validateLibrary(admin.accessToken, library.id, {
|
|
importPaths: [pathToTest],
|
|
});
|
|
|
|
expect(response.importPaths?.length).toEqual(1);
|
|
const pathResponse = response?.importPaths?.at(0);
|
|
|
|
expect(pathResponse).toEqual({
|
|
importPath: pathToTest,
|
|
isValid: false,
|
|
message: `Path does not exist (ENOENT)`,
|
|
});
|
|
});
|
|
|
|
it('should fail if path is a file', async () => {
|
|
const pathToTest = `${testAssetDirInternal}/albums/nature/el_torcal_rocks.jpg`;
|
|
|
|
const response = await utils.validateLibrary(admin.accessToken, library.id, {
|
|
importPaths: [pathToTest],
|
|
});
|
|
|
|
expect(response.importPaths?.length).toEqual(1);
|
|
const pathResponse = response?.importPaths?.at(0);
|
|
|
|
expect(pathResponse).toEqual({
|
|
importPath: pathToTest,
|
|
isValid: false,
|
|
message: `Not a directory`,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('DELETE /library/:id', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(app).delete(`/library/${uuidDto.notFound}`);
|
|
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorDto.unauthorized);
|
|
});
|
|
|
|
it('should not delete the last upload library', async () => {
|
|
const libraries = await getAllLibraries(
|
|
{ $type: LibraryType.Upload },
|
|
{ headers: asBearerAuth(admin.accessToken) },
|
|
);
|
|
|
|
const adminLibraries = libraries.filter((library) => library.ownerId === admin.userId);
|
|
expect(adminLibraries.length).toBeGreaterThanOrEqual(1);
|
|
const lastLibrary = adminLibraries.pop() as LibraryResponseDto;
|
|
|
|
// delete all but the last upload library
|
|
for (const library of adminLibraries) {
|
|
const { status } = await request(app)
|
|
.delete(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`);
|
|
expect(status).toBe(204);
|
|
}
|
|
|
|
const { status, body } = await request(app)
|
|
.delete(`/library/${lastLibrary.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`);
|
|
|
|
expect(body).toEqual(errorDto.noDeleteUploadLibrary);
|
|
expect(status).toBe(400);
|
|
});
|
|
|
|
it('should delete an external library', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
});
|
|
|
|
const { status, body } = await request(app)
|
|
.delete(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`);
|
|
|
|
expect(status).toBe(204);
|
|
expect(body).toEqual({});
|
|
|
|
const libraries = await getAllLibraries({}, { headers: asBearerAuth(admin.accessToken) });
|
|
expect(libraries).not.toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
id: library.id,
|
|
}),
|
|
]),
|
|
);
|
|
});
|
|
|
|
it('should delete an external library with assets', async () => {
|
|
const library = await utils.createLibrary(admin.accessToken, {
|
|
ownerId: admin.userId,
|
|
type: LibraryType.External,
|
|
importPaths: [`${testAssetDirInternal}/temp`],
|
|
});
|
|
|
|
await scan(admin.accessToken, library.id);
|
|
await utils.waitForWebsocketEvent({ event: 'assetUpload', total: 2 });
|
|
|
|
const { status, body } = await request(app)
|
|
.delete(`/library/${library.id}`)
|
|
.set('Authorization', `Bearer ${admin.accessToken}`);
|
|
|
|
expect(status).toBe(204);
|
|
expect(body).toEqual({});
|
|
|
|
const libraries = await getAllLibraries({}, { headers: asBearerAuth(admin.accessToken) });
|
|
expect(libraries).not.toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
id: library.id,
|
|
}),
|
|
]),
|
|
);
|
|
|
|
// ensure no files get deleted
|
|
expect(existsSync(`${testAssetDir}/temp/directoryA/assetA.png`)).toBe(true);
|
|
expect(existsSync(`${testAssetDir}/temp/directoryB/assetB.png`)).toBe(true);
|
|
});
|
|
});
|
|
});
|