mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
117 lines
3.8 KiB
TypeScript
117 lines
3.8 KiB
TypeScript
import { UserService } from 'src/services/user.service';
|
|
import { TestContext, TestFactory } from 'test/factory';
|
|
import { getKyselyDB, newTestService } from 'test/utils';
|
|
|
|
describe.concurrent(UserService.name, () => {
|
|
let sut: UserService;
|
|
let context: TestContext;
|
|
|
|
beforeAll(async () => {
|
|
const db = await getKyselyDB();
|
|
context = await TestContext.from(db).withUser({ isAdmin: true }).create();
|
|
({ sut } = newTestService(UserService, context));
|
|
});
|
|
|
|
describe('create', () => {
|
|
it('should create a user', async () => {
|
|
const userDto = TestFactory.user();
|
|
|
|
await expect(sut.createUser(userDto)).resolves.toEqual(
|
|
expect.objectContaining({
|
|
id: userDto.id,
|
|
name: userDto.name,
|
|
email: userDto.email,
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should reject user with duplicate email', async () => {
|
|
const userDto = TestFactory.user();
|
|
const userDto2 = TestFactory.user({ email: userDto.email });
|
|
|
|
await sut.createUser(userDto);
|
|
|
|
await expect(sut.createUser(userDto2)).rejects.toThrow('User exists');
|
|
});
|
|
|
|
it('should not return password', async () => {
|
|
const user = await sut.createUser(TestFactory.user());
|
|
|
|
expect((user as any).password).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('get', () => {
|
|
it('should get a user', async () => {
|
|
const userDto = TestFactory.user();
|
|
|
|
await context.createUser(userDto);
|
|
|
|
await expect(sut.get(userDto.id)).resolves.toEqual(
|
|
expect.objectContaining({
|
|
id: userDto.id,
|
|
name: userDto.name,
|
|
email: userDto.email,
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should not return password', async () => {
|
|
const { id } = await context.createUser();
|
|
|
|
const user = await sut.get(id);
|
|
|
|
expect((user as any).password).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('updateMe', () => {
|
|
it('should update a user', async () => {
|
|
const userDto = TestFactory.user();
|
|
const sessionDto = TestFactory.session({ userId: userDto.id });
|
|
const authDto = TestFactory.auth({ user: userDto });
|
|
|
|
const before = await context.createUser(userDto);
|
|
await context.createSession(sessionDto);
|
|
|
|
const newUserDto = TestFactory.user();
|
|
|
|
const after = await sut.updateMe(authDto, { name: newUserDto.name, email: newUserDto.email });
|
|
|
|
if (!before || !after) {
|
|
expect.fail('User should be found');
|
|
}
|
|
|
|
expect(before.updatedAt).toBeDefined();
|
|
expect(after.updatedAt).toBeDefined();
|
|
expect(before.updatedAt).not.toEqual(after.updatedAt);
|
|
expect(after).toEqual(expect.objectContaining({ name: newUserDto.name, email: newUserDto.email }));
|
|
});
|
|
});
|
|
|
|
describe('setLicense', () => {
|
|
const userLicense = {
|
|
licenseKey: 'IMCL-FF69-TUK1-RWZU-V9Q8-QGQS-S5GC-X4R2-UFK4',
|
|
activationKey:
|
|
'KuX8KsktrBSiXpQMAH0zLgA5SpijXVr_PDkzLdWUlAogCTMBZ0I3KCHXK0eE9EEd7harxup8_EHMeqAWeHo5VQzol6LGECpFv585U9asXD4Zc-UXt3mhJr2uhazqipBIBwJA2YhmUCDy8hiyiGsukDQNu9Rg9C77UeoKuZBWVjWUBWG0mc1iRqfvF0faVM20w53czAzlhaMxzVGc3Oimbd7xi_CAMSujF_2y8QpA3X2fOVkQkzdcH9lV0COejl7IyH27zQQ9HrlrXv3Lai5Hw67kNkaSjmunVBxC5PS0TpKoc9SfBJMaAGWnaDbjhjYUrm-8nIDQnoeEAidDXVAdPw',
|
|
};
|
|
it('should set a license', async () => {
|
|
const userDto = TestFactory.user();
|
|
const sessionDto = TestFactory.session({ userId: userDto.id });
|
|
const authDto = TestFactory.auth({ user: userDto });
|
|
|
|
await context.getFactory().withUser(userDto).withSession(sessionDto).create();
|
|
|
|
await expect(sut.getLicense(authDto)).rejects.toThrowError();
|
|
|
|
const after = await sut.setLicense(authDto, userLicense);
|
|
|
|
expect(after.licenseKey).toEqual(userLicense.licenseKey);
|
|
expect(after.activationKey).toEqual(userLicense.activationKey);
|
|
|
|
const getResponse = await sut.getLicense(authDto);
|
|
expect(getResponse).toEqual(after);
|
|
});
|
|
});
|
|
});
|