n8n/packages/cli/test/unit/Ldap/helpers.test.ts

41 lines
1.4 KiB
TypeScript

import { UserRepository } from '@/databases/repositories/user.repository';
import { mockInstance } from '../../shared/mocking';
import * as helpers from '@/Ldap/helpers.ee';
import { AuthIdentity } from '@/databases/entities/AuthIdentity';
import { User } from '@/databases/entities/User';
import { generateNanoId } from '@/databases/utils/generators';
const userRepository = mockInstance(UserRepository);
describe('Ldap/helpers', () => {
describe('updateLdapUserOnLocalDb', () => {
// We need to use `save` so that that the subscriber in
// packages/cli/src/databases/entities/Project.ts receives the full user.
// With `update` it would only receive the updated fields, e.g. the `id`
// would be missing.
test('does not use `Repository.update`, but `Repository.save` instead', async () => {
//
// ARRANGE
//
const user = Object.assign(new User(), { id: generateNanoId() } as User);
const authIdentity = Object.assign(new AuthIdentity(), {
user: { id: user.id },
} as AuthIdentity);
const data: Partial<User> = { firstName: 'Nathan', lastName: 'Nathaniel' };
userRepository.findOneBy.mockResolvedValueOnce(user);
//
// ACT
//
await helpers.updateLdapUserOnLocalDb(authIdentity, data);
//
// ASSERT
//
expect(userRepository.save).toHaveBeenCalledWith({ ...user, ...data }, { transaction: true });
expect(userRepository.update).not.toHaveBeenCalled();
});
});
});