mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import { APIKeyCreateResponseDto } from '@app/domain';
|
|
import { api } from '@test/../e2e/api/client';
|
|
import { restoreTempFolder, testApp } from '@test/../e2e/jobs/utils';
|
|
import { LoginResponseDto } from '@immich/sdk';
|
|
import { ServerInfo } from 'src/commands/server-info';
|
|
import { CLI_BASE_OPTIONS, spyOnConsole } from 'test/cli-test-utils';
|
|
|
|
describe(`server-info (e2e)`, () => {
|
|
let server: any;
|
|
let admin: LoginResponseDto;
|
|
let apiKey: APIKeyCreateResponseDto;
|
|
const consoleSpy = spyOnConsole();
|
|
|
|
beforeAll(async () => {
|
|
server = (await testApp.create()).getHttpServer();
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await testApp.teardown();
|
|
await restoreTempFolder();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await testApp.reset();
|
|
await restoreTempFolder();
|
|
await api.authApi.adminSignUp(server);
|
|
admin = await api.authApi.adminLogin(server);
|
|
apiKey = await api.apiKeyApi.createApiKey(server, admin.accessToken);
|
|
process.env.IMMICH_API_KEY = apiKey.secret;
|
|
});
|
|
|
|
it('should show server version', async () => {
|
|
await new ServerInfo(CLI_BASE_OPTIONS).run();
|
|
|
|
expect(consoleSpy.mock.calls).toEqual([
|
|
[expect.stringMatching(new RegExp('Server is running version \\d+.\\d+.\\d+'))],
|
|
[expect.stringMatching('Supported image types: .*')],
|
|
[expect.stringMatching('Supported video types: .*')],
|
|
['Images: 0, Videos: 0, Total: 0'],
|
|
]);
|
|
});
|
|
});
|