immich/e2e/src/cli/specs/server-info.e2e-spec.ts

25 lines
710 B
TypeScript
Raw Normal View History

import { immichCli, utils } from 'src/utils';
import { beforeAll, describe, expect, it } from 'vitest';
2024-02-19 17:25:57 -05:00
describe(`immich server-info`, () => {
beforeAll(async () => {
await utils.resetDatabase();
await utils.cliLogin();
2024-02-19 17:25:57 -05:00
});
it('should return the server info', async () => {
const { stderr, stdout, exitCode } = await immichCli(['server-info']);
expect(stdout.split('\n')).toEqual([
expect.stringContaining('Server Version:'),
expect.stringContaining('Image Types:'),
expect.stringContaining('Video Types:'),
'Statistics:',
' Images: 0',
' Videos: 0',
' Total: 0',
]);
expect(stderr).toBe('');
expect(exitCode).toBe(0);
});
});