mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
464b565283
## Summary We accidentally made some functions `async` in https://github.com/n8n-io/n8n/pull/7846 This PR reverts that change. ## Review / Merge checklist - [x] PR title and summary are descriptive.
76 lines
2.8 KiB
TypeScript
76 lines
2.8 KiB
TypeScript
import { Container } from 'typedi';
|
|
import { DataSource, EntityManager, type EntityMetadata } from 'typeorm';
|
|
import { mock } from 'jest-mock-extended';
|
|
import type { User } from '@db/entities/User';
|
|
import type { CredentialsEntity } from '@db/entities/CredentialsEntity';
|
|
import { SharedCredentials } from '@db/entities/SharedCredentials';
|
|
import { SharedCredentialsRepository } from '@db/repositories/sharedCredentials.repository';
|
|
import { mockInstance } from '../../shared/mocking';
|
|
import { memberPermissions, ownerPermissions } from '@/permissions/roles';
|
|
import { hasScope } from '@n8n/permissions';
|
|
|
|
describe('SharedCredentialsRepository', () => {
|
|
const entityManager = mockInstance(EntityManager);
|
|
const dataSource = mockInstance(DataSource, {
|
|
manager: entityManager,
|
|
getMetadata: () => mock<EntityMetadata>({ target: SharedCredentials }),
|
|
});
|
|
Object.assign(entityManager, { connection: dataSource });
|
|
const repository = Container.get(SharedCredentialsRepository);
|
|
|
|
describe('findCredentialForUser', () => {
|
|
const credentialsId = 'cred_123';
|
|
const sharedCredential = mock<SharedCredentials>();
|
|
sharedCredential.credentials = mock<CredentialsEntity>({ id: credentialsId });
|
|
const owner = mock<User>({
|
|
isOwner: true,
|
|
hasGlobalScope: (scope) =>
|
|
hasScope(scope, {
|
|
global: ownerPermissions,
|
|
}),
|
|
});
|
|
const member = mock<User>({
|
|
isOwner: false,
|
|
id: 'test',
|
|
hasGlobalScope: (scope) =>
|
|
hasScope(scope, {
|
|
global: memberPermissions,
|
|
}),
|
|
});
|
|
|
|
beforeEach(() => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
test('should allow instance owner access to all credentials', async () => {
|
|
entityManager.findOne.mockResolvedValueOnce(sharedCredential);
|
|
const credential = await repository.findCredentialForUser(credentialsId, owner);
|
|
expect(entityManager.findOne).toHaveBeenCalledWith(SharedCredentials, {
|
|
relations: ['credentials'],
|
|
where: { credentialsId },
|
|
});
|
|
expect(credential).toEqual(sharedCredential.credentials);
|
|
});
|
|
|
|
test('should allow members', async () => {
|
|
entityManager.findOne.mockResolvedValueOnce(sharedCredential);
|
|
const credential = await repository.findCredentialForUser(credentialsId, member);
|
|
expect(entityManager.findOne).toHaveBeenCalledWith(SharedCredentials, {
|
|
relations: ['credentials'],
|
|
where: { credentialsId, userId: member.id },
|
|
});
|
|
expect(credential).toEqual(sharedCredential.credentials);
|
|
});
|
|
|
|
test('should return null when no shared credential is found', async () => {
|
|
entityManager.findOne.mockResolvedValueOnce(null);
|
|
const credential = await repository.findCredentialForUser(credentialsId, member);
|
|
expect(entityManager.findOne).toHaveBeenCalledWith(SharedCredentials, {
|
|
relations: ['credentials'],
|
|
where: { credentialsId, userId: member.id },
|
|
});
|
|
expect(credential).toEqual(null);
|
|
});
|
|
});
|
|
});
|