mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04:00
* Add new cli * Remove old readme * Add documentation to readme file * Add github workflow tests for cli * Fix typo in docs * Add usage info to readme * Add package-lock.json * Fix tsconfig * Cleanup * Fix lint * Cleanup package.json * Fix accidental server change * Remove rootdir from cli * Remove tsbuildinfo * Add prettierignore * Make CLI use internal openapi specs * Add ignore and dry-run features * Sort paths alphabetically * Don't remove substring * Remove shorthand for delete * Remove unused import * Remove chokidar * Set correct openapi cli generator script * Add progress bar * Rename target to asset * Add deletion progress bar * Ignore require statement * Use read streams instead of readfile * Fix github feedback * Fix upload requires * More github comments * Cleanup messages * Cleaner pattern concats * Github comments --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
96 lines
3.1 KiB
TypeScript
96 lines
3.1 KiB
TypeScript
import { SessionService } from './session.service';
|
|
import mockfs from 'mock-fs';
|
|
import fs from 'node:fs';
|
|
import yaml from 'yaml';
|
|
import { LoginError } from '../cores/errors/login-error';
|
|
|
|
const mockPingServer = jest.fn(() => Promise.resolve({ data: { res: 'pong' } }));
|
|
const mockUserInfo = jest.fn(() => Promise.resolve({ data: { email: 'admin@example.com' } }));
|
|
|
|
jest.mock('../api/open-api', () => {
|
|
return {
|
|
__esModule: true,
|
|
...jest.requireActual('../api/open-api'),
|
|
UserApi: jest.fn().mockImplementation(() => {
|
|
return { getMyUserInfo: mockUserInfo };
|
|
}),
|
|
ServerInfoApi: jest.fn().mockImplementation(() => {
|
|
return { pingServer: mockPingServer };
|
|
}),
|
|
};
|
|
});
|
|
|
|
describe('SessionService', () => {
|
|
let sessionService: SessionService;
|
|
beforeAll(() => {
|
|
// Write a dummy output before mock-fs to prevent some annoying errors
|
|
console.log();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
const configDir = '/config';
|
|
sessionService = new SessionService(configDir);
|
|
});
|
|
|
|
it('should connect to immich', async () => {
|
|
mockfs({
|
|
'/config/auth.yml': 'apiKey: pNussssKSYo5WasdgalvKJ1n9kdvaasdfbluPg\ninstanceUrl: https://test/api',
|
|
});
|
|
await sessionService.connect();
|
|
expect(mockPingServer).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('should error if no auth file exists', async () => {
|
|
mockfs();
|
|
await sessionService.connect().catch((error) => {
|
|
expect(error.message).toEqual('No auth file exist. Please login first');
|
|
});
|
|
});
|
|
|
|
it('should error if auth file is missing instance URl', async () => {
|
|
mockfs({
|
|
'/config/auth.yml': 'foo: pNussssKSYo5WasdgalvKJ1n9kdvaasdfbluPg\napiKey: https://test/api',
|
|
});
|
|
await sessionService.connect().catch((error) => {
|
|
expect(error).toBeInstanceOf(LoginError);
|
|
expect(error.message).toEqual('Instance URL missing in auth config file /config/auth.yml');
|
|
});
|
|
});
|
|
|
|
it('should error if auth file is missing api key', async () => {
|
|
mockfs({
|
|
'/config/auth.yml': 'instanceUrl: pNussssKSYo5WasdgalvKJ1n9kdvaasdfbluPg\nbar: https://test/api',
|
|
});
|
|
await sessionService.connect().catch((error) => {
|
|
expect(error).toBeInstanceOf(LoginError);
|
|
expect(error.message).toEqual('API key missing in auth config file /config/auth.yml');
|
|
});
|
|
});
|
|
|
|
it('should create auth file when logged in', async () => {
|
|
mockfs();
|
|
|
|
await sessionService.keyLogin('https://test/api', 'pNussssKSYo5WasdgalvKJ1n9kdvaasdfbluPg');
|
|
|
|
const data: string = await fs.promises.readFile('/config/auth.yml', 'utf8');
|
|
const authConfig = yaml.parse(data);
|
|
expect(authConfig.instanceUrl).toBe('https://test/api');
|
|
expect(authConfig.apiKey).toBe('pNussssKSYo5WasdgalvKJ1n9kdvaasdfbluPg');
|
|
});
|
|
|
|
it('should delete auth file when logging out', async () => {
|
|
mockfs({
|
|
'/config/auth.yml': 'apiKey: pNussssKSYo5WasdgalvKJ1n9kdvaasdfbluPg\ninstanceUrl: https://test/api',
|
|
});
|
|
await sessionService.logout();
|
|
|
|
await fs.promises.access('/auth.yml', fs.constants.F_OK).catch((error) => {
|
|
expect(error.message).toContain('ENOENT');
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
mockfs.restore();
|
|
});
|
|
});
|