mirror of
https://github.com/immich-app/immich.git
synced 2024-12-23 02:06:15 +02:00
4e9b96ff1a
* Allow building and installing cli * feat: add format fix * docs: remove cli folder * feat: use immich scoped package * feat: rewrite cli readme * docs: add info on running without building * cleanup * chore: remove import functionality from cli * feat: add logout to cli * docs: add todo for file format from server * docs: add compilation step to cli * fix: success message spacing * feat: can create albums * fix: add check step to cli * fix: typos * feat: pull file formats from server * chore: use crawl service from server * chore: fix lint * docs: add cli documentation * chore: rename ignore pattern * chore: add version number to cli * feat: use sdk * fix: cleanup * feat: album name on windows * chore: remove skipped asset field * feat: add more info to server-info command * chore: cleanup * wip * chore: remove unneeded packages * e2e test can start * git ignore for geocode in cli * add cli e2e to github actions * can do e2e tests in the cli * simplify e2e test * cleanup * set matrix strategy in workflow * run npm ci in server * choose different working directory * check out submodules too * increase test timeout * set node version * cli docker e2e tests * fix cli docker file * run cli e2e in correct folder * set docker context * correct docker build * remove cli from dockerignore * chore: fix docs links * feat: add cli v2 milestone * fix: set correct cli date * remove submodule * chore: add npmignore * chore(cli): push to npm * fix: server e2e * run npm ci in server * remove state from e2e * run npm ci in server * reshuffle docker compose files * use new e2e composes in makefile * increase test timeout to 10 minutes * make github actions run makefile e2e tests * cleanup github test names * assert on server version * chore: split cli e2e tests into one file per command * chore: set cli release working dir * chore: add repo url to npmjs * chore: bump node setup to v4 * chore: normalize the github url * check e2e code in lint * fix lint * test key login flow * feat: allow configurable config dir * fix session service tests * create missing dir * cleanup * bump cli version to 2.0.4 * remove form-data * feat: allow single files as argument * add version option * bump dependencies * fix lint * wip use axios as upload * version bump * cApiTALiZaTiON * don't touch package lock * wip: don't use job queues * don't use make for cli e2e * fix server e2e * chore: remove old gha step * add npm ci to server --------- Co-authored-by: Alex <alex.tran1502@gmail.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
171 lines
5.1 KiB
TypeScript
171 lines
5.1 KiB
TypeScript
import { LoginResponseDto } from '@app/domain';
|
|
import { ServerInfoController } from '@app/immich';
|
|
import { api } from '@test/api';
|
|
import { errorStub, userDto } from '@test/fixtures';
|
|
import { testApp } from '@test/test-utils';
|
|
import request from 'supertest';
|
|
|
|
describe(`${ServerInfoController.name} (e2e)`, () => {
|
|
let server: any;
|
|
let admin: LoginResponseDto;
|
|
let nonAdmin: LoginResponseDto;
|
|
|
|
beforeAll(async () => {
|
|
server = (await testApp.create()).getHttpServer();
|
|
|
|
await testApp.reset();
|
|
await api.authApi.adminSignUp(server);
|
|
admin = await api.authApi.adminLogin(server);
|
|
await api.userApi.create(server, admin.accessToken, userDto.user1);
|
|
nonAdmin = await api.authApi.login(server, userDto.user1);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await testApp.teardown();
|
|
});
|
|
|
|
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 ${admin.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: false,
|
|
configFile: true,
|
|
facialRecognition: false,
|
|
map: true,
|
|
reverseGeocoding: false,
|
|
oauth: false,
|
|
oauthAutoLaunch: false,
|
|
passwordLogin: true,
|
|
search: true,
|
|
sidecar: true,
|
|
tagImage: false,
|
|
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',
|
|
trashDays: 30,
|
|
isInitialized: true,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/statistics', () => {
|
|
it('should require authentication', async () => {
|
|
const { status, body } = await request(server).get('/server-info/statistics');
|
|
expect(status).toBe(401);
|
|
expect(body).toEqual(errorStub.unauthorized);
|
|
});
|
|
|
|
it('should only work for admins', async () => {
|
|
const { status, body } = await request(server)
|
|
.get('/server-info/statistics')
|
|
.set('Authorization', `Bearer ${nonAdmin.accessToken}`);
|
|
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/statistics')
|
|
.set('Authorization', `Bearer ${admin.accessToken}`);
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
photos: 0,
|
|
usage: 0,
|
|
usageByUser: [
|
|
{
|
|
photos: 0,
|
|
usage: 0,
|
|
userName: 'Immich Admin',
|
|
userId: admin.userId,
|
|
videos: 0,
|
|
},
|
|
{
|
|
photos: 0,
|
|
usage: 0,
|
|
userName: 'User 1',
|
|
userId: nonAdmin.userId,
|
|
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),
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('GET /server-info/theme', () => {
|
|
it('should respond with the server theme', async () => {
|
|
const { status, body } = await request(server).get('/server-info/theme');
|
|
expect(status).toBe(200);
|
|
expect(body).toEqual({
|
|
customCss: '',
|
|
});
|
|
});
|
|
});
|
|
});
|