Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
72 lines
2.2 KiB
TypeScript
72 lines
2.2 KiB
TypeScript
import { mockDeep } from 'jest-mock-extended';
|
|
import type { IExecuteFunctions } from 'n8n-workflow';
|
|
import { sentryIoApiRequest } from '../GenericFunctions';
|
|
|
|
describe('SentryIo GenericFunctions', () => {
|
|
const mockExecuteFunctions = mockDeep<IExecuteFunctions>();
|
|
|
|
beforeEach(() => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
describe('sentryIoApiRequest', () => {
|
|
it('should use sentryIoOAuth2Api credentials', async () => {
|
|
mockExecuteFunctions.getNodeParameter.mockReturnValue('oAuth2');
|
|
|
|
await sentryIoApiRequest.call(mockExecuteFunctions, 'GET', '/test');
|
|
|
|
expect(mockExecuteFunctions.helpers.requestOAuth2).toHaveBeenCalledWith(
|
|
'sentryIoOAuth2Api',
|
|
expect.any(Object),
|
|
);
|
|
});
|
|
|
|
it('should use sentryIoApi credentials', async () => {
|
|
mockExecuteFunctions.getNodeParameter.mockReturnValue('accessToken');
|
|
mockExecuteFunctions.getCredentials.mockResolvedValue({
|
|
token: 'test-token',
|
|
});
|
|
|
|
await sentryIoApiRequest.call(mockExecuteFunctions, 'GET', '/test');
|
|
|
|
expect(mockExecuteFunctions.helpers.request).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
headers: { Authorization: 'Bearer test-token' },
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should use sentryIoServerApi credentials', async () => {
|
|
mockExecuteFunctions.getNodeParameter.mockReturnValue('accessTokenServer');
|
|
mockExecuteFunctions.getCredentials.mockResolvedValue({
|
|
token: 'test-token',
|
|
});
|
|
|
|
await sentryIoApiRequest.call(mockExecuteFunctions, 'GET', '/test');
|
|
|
|
expect(mockExecuteFunctions.helpers.request).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
headers: { Authorization: 'Bearer test-token' },
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should use custom URL from sentryIoServerApi credentials', async () => {
|
|
mockExecuteFunctions.getNodeParameter.mockReturnValue('accessTokenServer');
|
|
mockExecuteFunctions.getCredentials.mockResolvedValue({
|
|
token: 'test-token',
|
|
url: 'https://test.com',
|
|
});
|
|
|
|
await sentryIoApiRequest.call(mockExecuteFunctions, 'GET', '/test');
|
|
|
|
expect(mockExecuteFunctions.helpers.request).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
headers: { Authorization: 'Bearer test-token' },
|
|
uri: 'https://test.com/test',
|
|
}),
|
|
);
|
|
});
|
|
});
|
|
});
|