mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
1c6178759c
Ensure all errors in `cli` inherit from `ApplicationError` to continue normalizing all the errors we report to Sentry Follow-up to: https://github.com/n8n-io/n8n/pull/7820
41 lines
1.7 KiB
TypeScript
41 lines
1.7 KiB
TypeScript
import { mock } from 'jest-mock-extended';
|
|
import type { ICredentialTypes } from 'n8n-workflow';
|
|
import type { Config } from '@/config';
|
|
import type { TranslationRequest } from '@/controllers/translation.controller';
|
|
import {
|
|
TranslationController,
|
|
CREDENTIAL_TRANSLATIONS_DIR,
|
|
} from '@/controllers/translation.controller';
|
|
import { BadRequestError } from '@/errors/response-errors/bad-request.error';
|
|
|
|
describe('TranslationController', () => {
|
|
const config = mock<Config>();
|
|
const credentialTypes = mock<ICredentialTypes>();
|
|
const controller = new TranslationController(config, credentialTypes);
|
|
|
|
describe('getCredentialTranslation', () => {
|
|
it('should throw 400 on invalid credential types', async () => {
|
|
const credentialType = 'not-a-valid-credential-type';
|
|
const req = mock<TranslationRequest.Credential>({ query: { credentialType } });
|
|
credentialTypes.recognizes.calledWith(credentialType).mockReturnValue(false);
|
|
|
|
await expect(controller.getCredentialTranslation(req)).rejects.toThrowError(
|
|
new BadRequestError(`Invalid Credential type: "${credentialType}"`),
|
|
);
|
|
});
|
|
|
|
it('should return translation json on valid credential types', async () => {
|
|
const credentialType = 'credential-type';
|
|
const req = mock<TranslationRequest.Credential>({ query: { credentialType } });
|
|
config.getEnv.calledWith('defaultLocale').mockReturnValue('de');
|
|
credentialTypes.recognizes.calledWith(credentialType).mockReturnValue(true);
|
|
const response = { translation: 'string' };
|
|
jest.mock(`${CREDENTIAL_TRANSLATIONS_DIR}/de/credential-type.json`, () => response, {
|
|
virtual: true,
|
|
});
|
|
|
|
expect(await controller.getCredentialTranslation(req)).toEqual(response);
|
|
});
|
|
});
|
|
});
|