test(core): Move unit tests closer to testable components (no-changelog) (#10287)
This commit is contained in:
40
packages/cli/src/Ldap/__tests__/helpers.test.ts
Normal file
40
packages/cli/src/Ldap/__tests__/helpers.test.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
import { UserRepository } from '@/databases/repositories/user.repository';
|
||||
import { mockInstance } from '@test/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();
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user