mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01:00
4a8887f37b
* refactor(server): delete assets endpoint * fix: formatting * chore: cleanup * chore: open api * chore(mobile): replace DeleteAssetDTO with BulkIdsDTOs * feat: trash an asset * chore(server): formatting * chore: open api * chore: wording * chore: open-api * feat(server): add withDeleted to getAssets queries * WIP: mobile-recycle-bin * feat(server): recycle-bin to system config * feat(web): use recycle-bin system config * chore(server): domain assetcore removed * chore(server): rename recycle-bin to trash * chore(web): rename recycle-bin to trash * chore(server): always send soft deleted assets for getAllByUserId * chore(web): formatting * feat(server): permanent delete assets older than trashed period * feat(web): trash empty placeholder image * feat(server): empty trash * feat(web): empty trash * WIP: mobile-recycle-bin * refactor(server): empty / restore trash to separate endpoint * test(server): handle failures * test(server): fix e2e server-info test * test(server): deletion test refactor * feat(mobile): use map settings from server-config to enable / disable map * feat(mobile): trash asset * fix(server): operations on assets in trash * feat(web): show trash statistics * fix(web): handle trash enabled * fix(mobile): restore updates from trash * fix(server): ignore trashed assets for person * fix(server): add / remove search index when trashed / restored * chore(web): format * fix(server): asset service test * fix(server): include trashed assts for duplicates from uploads * feat(mobile): no dialog for trash, always dialog for permanent delete * refactor(mobile): use isar where instead of dart filter * refactor(mobile): asset provide - handle deletes in single db txn * chore(mobile): review changes * feat(web): confirmation before empty trash * server: review changes * fix(server): handle library changes * fix: filter external assets from getting trashed / deleted * fix(server): empty-bin * feat: broadcast config update events through ws * change order of trash button on mobile * styling * fix(mobile): do not show trashed toast for local only assets --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
165 lines
5.2 KiB
TypeScript
165 lines
5.2 KiB
TypeScript
import { LoginResponseDto } from '@app/domain';
|
|
import { AppModule, ServerInfoController } from '@app/immich';
|
|
import { INestApplication } from '@nestjs/common';
|
|
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { api } from '@test/api';
|
|
import { db } from '@test/db';
|
|
import { errorStub } from '@test/fixtures';
|
|
import request from 'supertest';
|
|
|
|
describe(`${ServerInfoController.name} (e2e)`, () => {
|
|
let app: INestApplication;
|
|
let server: any;
|
|
let accessToken: string;
|
|
let loginResponse: LoginResponseDto;
|
|
|
|
beforeAll(async () => {
|
|
const moduleFixture: TestingModule = await Test.createTestingModule({
|
|
imports: [AppModule],
|
|
}).compile();
|
|
|
|
app = await moduleFixture.createNestApplication().init();
|
|
server = app.getHttpServer();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await db.reset();
|
|
await api.authApi.adminSignUp(server);
|
|
loginResponse = await api.authApi.adminLogin(server);
|
|
accessToken = loginResponse.accessToken;
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await db.disconnect();
|
|
await app.close();
|
|
});
|
|
|
|
describe('GET /server-info', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(server).get('/server-info');
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorStub.unauthorized);
|
|
});
|
|
|
|
it('should return the disk information', async () => {
|
|
const { status, body } = await request(server).get('/server-info').set('Authorization', `Bearer ${accessToken}`);
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
diskAvailable: expect.any(String),
|
|
diskAvailableRaw: expect.any(Number),
|
|
diskSize: expect.any(String),
|
|
diskSizeRaw: expect.any(Number),
|
|
diskUsagePercentage: expect.any(Number),
|
|
diskUse: expect.any(String),
|
|
diskUseRaw: expect.any(Number),
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/ping', () => {
|
|
it('should respond with pong', async () => {
|
|
const { status, body } = await request(server).get('/server-info/ping');
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({ res: 'pong' });
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/version', () => {
|
|
it('should respond with the server version', async () => {
|
|
const { status, body } = await request(server).get('/server-info/version');
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
major: expect.any(Number),
|
|
minor: expect.any(Number),
|
|
patch: expect.any(Number),
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/features', () => {
|
|
it('should respond with the server features', async () => {
|
|
const { status, body } = await request(server).get('/server-info/features');
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
clipEncode: true,
|
|
configFile: false,
|
|
facialRecognition: true,
|
|
map: true,
|
|
reverseGeocoding: true,
|
|
oauth: false,
|
|
oauthAutoLaunch: false,
|
|
passwordLogin: true,
|
|
search: false,
|
|
sidecar: true,
|
|
tagImage: true,
|
|
trash: true,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/config', () => {
|
|
it('should respond with the server configuration', async () => {
|
|
const { status, body } = await request(server).get('/server-info/config');
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
loginPageMessage: '',
|
|
oauthButtonText: 'Login with OAuth',
|
|
mapTileUrl: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
trashDays: 30,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/stats', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(server).get('/server-info/stats');
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorStub.unauthorized);
|
|
});
|
|
|
|
it('should only work for admins', async () => {
|
|
const loginDto = { email: 'test@immich.app', password: 'Immich123' };
|
|
await api.userApi.create(server, accessToken, { ...loginDto, firstName: 'test', lastName: 'test' });
|
|
const { accessToken: userAccessToken } = await api.authApi.login(server, loginDto);
|
|
const { status, body } = await request(server)
|
|
.get('/server-info/stats')
|
|
.set('Authorization', `Bearer ${userAccessToken}`);
|
|
expect(status).toBe(403);
|
|
expect(body).toEqual(errorStub.forbidden);
|
|
});
|
|
|
|
it('should return the server stats', async () => {
|
|
const { status, body } = await request(server)
|
|
.get('/server-info/stats')
|
|
.set('Authorization', `Bearer ${accessToken}`);
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
photos: 0,
|
|
usage: 0,
|
|
usageByUser: [
|
|
{
|
|
photos: 0,
|
|
usage: 0,
|
|
userFirstName: 'Immich',
|
|
userId: loginResponse.userId,
|
|
userLastName: 'Admin',
|
|
videos: 0,
|
|
},
|
|
],
|
|
videos: 0,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/media-types', () => {
|
|
it('should return accepted media types', async () => {
|
|
const { status, body } = await request(server).get('/server-info/media-types');
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
sidecar: ['.xmp'],
|
|
image: expect.any(Array),
|
|
video: expect.any(Array),
|
|
});
|
|
});
|
|
});
|
|
});
|