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
178 lines
5.4 KiB
TypeScript
178 lines
5.4 KiB
TypeScript
import type { IHookFunctions, IWebhookFunctions } from 'n8n-workflow';
|
|
|
|
import { stripeApiRequest } from '../helpers';
|
|
import { StripeTrigger } from '../StripeTrigger.node';
|
|
import { verifySignature } from '../StripeTriggerHelpers';
|
|
|
|
jest.mock('../helpers', () => ({
|
|
stripeApiRequest: jest.fn(),
|
|
}));
|
|
|
|
jest.mock('../StripeTriggerHelpers', () => ({
|
|
verifySignature: jest.fn().mockResolvedValue(true),
|
|
}));
|
|
|
|
const mockedStripeApiRequest = jest.mocked(stripeApiRequest);
|
|
const mockedVerifySignature = jest.mocked(verifySignature);
|
|
|
|
describe('Stripe Trigger Node', () => {
|
|
let node: StripeTrigger;
|
|
let mockNodeFunctions: IHookFunctions;
|
|
|
|
beforeEach(() => {
|
|
node = new StripeTrigger();
|
|
|
|
mockNodeFunctions = {
|
|
getNodeWebhookUrl: jest.fn().mockReturnValue('https://webhook.url/test'),
|
|
getWorkflow: jest.fn().mockReturnValue({ id: 'test-workflow-id' }),
|
|
getNodeParameter: jest.fn(),
|
|
getCredentials: jest.fn(),
|
|
getWorkflowStaticData: jest.fn().mockReturnValue({}),
|
|
getNode: jest.fn().mockReturnValue({ name: 'StripeTrigger' }),
|
|
getWebhookName: jest.fn().mockReturnValue('default'),
|
|
getContext: jest.fn(),
|
|
getActivationMode: jest.fn(),
|
|
getMode: jest.fn(),
|
|
getNodeExecutionData: jest.fn(),
|
|
getRestApiUrl: jest.fn(),
|
|
getTimezone: jest.fn(),
|
|
helpers: {} as any,
|
|
} as unknown as IHookFunctions;
|
|
|
|
// (mockNodeFunctions.getCredentials as jest.Mock).mockResolvedValue({
|
|
// secretKey: 'sk_test_123',
|
|
// });
|
|
|
|
mockedStripeApiRequest.mockResolvedValue({
|
|
id: 'we_test123',
|
|
secret: 'whsec_test123',
|
|
status: 'enabled',
|
|
enabled_events: ['*'],
|
|
});
|
|
|
|
mockedStripeApiRequest.mockClear();
|
|
});
|
|
|
|
afterAll(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('should not send API version in body if not specified', async () => {
|
|
(mockNodeFunctions.getNodeParameter as jest.Mock).mockImplementation((param) => {
|
|
if (param === 'events') return ['*'];
|
|
return undefined;
|
|
});
|
|
|
|
const expectedRequestBody = {
|
|
url: 'https://webhook.url/test',
|
|
description: 'Created by n8n for workflow ID: test-workflow-id',
|
|
enabled_events: ['*'],
|
|
};
|
|
|
|
const endpoint = '/webhook_endpoints';
|
|
|
|
await node.webhookMethods.default.create.call(mockNodeFunctions);
|
|
expect(mockedStripeApiRequest).toHaveBeenCalledWith('POST', endpoint, expectedRequestBody);
|
|
|
|
const callArgs = mockedStripeApiRequest.mock.calls[0];
|
|
const requestBody = callArgs[2];
|
|
expect(requestBody).not.toHaveProperty('api_version');
|
|
});
|
|
|
|
it('should send API version in body if specified in node parameters', async () => {
|
|
(mockNodeFunctions.getNodeParameter as jest.Mock).mockImplementation((param) => {
|
|
if (param === 'apiVersion') return '2025-05-28.basil';
|
|
if (param === 'events') return ['*'];
|
|
return undefined;
|
|
});
|
|
|
|
const expectedRequestBody = {
|
|
url: 'https://webhook.url/test',
|
|
description: 'Created by n8n for workflow ID: test-workflow-id',
|
|
enabled_events: ['*'],
|
|
api_version: '2025-05-28.basil',
|
|
};
|
|
|
|
const endpoint = '/webhook_endpoints';
|
|
|
|
await node.webhookMethods.default.create.call(mockNodeFunctions);
|
|
expect(mockedStripeApiRequest).toHaveBeenCalledWith('POST', endpoint, expectedRequestBody);
|
|
|
|
const callArgs = mockedStripeApiRequest.mock.calls[0];
|
|
const requestBody = callArgs[2];
|
|
expect(requestBody).toHaveProperty('api_version', '2025-05-28.basil');
|
|
});
|
|
|
|
describe('webhook signature verification', () => {
|
|
let mockWebhookFunctions: IWebhookFunctions;
|
|
const testBody = { type: 'charge.succeeded', id: 'ch_123' };
|
|
const rawBody = JSON.stringify(testBody);
|
|
|
|
beforeEach(() => {
|
|
mockWebhookFunctions = {
|
|
getBodyData: jest.fn().mockReturnValue(testBody),
|
|
getRequestObject: jest.fn().mockReturnValue({
|
|
rawBody: Buffer.from(rawBody),
|
|
body: testBody,
|
|
}),
|
|
getResponseObject: jest.fn().mockReturnValue({
|
|
status: jest.fn().mockReturnThis(),
|
|
send: jest.fn().mockReturnThis(),
|
|
end: jest.fn(),
|
|
}),
|
|
getNodeParameter: jest.fn().mockReturnValue(['*']),
|
|
helpers: {
|
|
returnJsonArray: jest.fn().mockImplementation((data) => [data]),
|
|
},
|
|
} as unknown as IWebhookFunctions;
|
|
|
|
// Reset the verifySignature mock to return true by default
|
|
mockedVerifySignature.mockResolvedValue(true);
|
|
});
|
|
|
|
it('should process webhook with valid signature', async () => {
|
|
mockedVerifySignature.mockResolvedValue(true);
|
|
|
|
const result = await node.webhook.call(mockWebhookFunctions);
|
|
|
|
expect(result).toEqual({
|
|
workflowData: [[testBody]],
|
|
});
|
|
expect(mockedVerifySignature).toHaveBeenCalledWith();
|
|
});
|
|
|
|
it('should reject webhook with invalid signature', async () => {
|
|
mockedVerifySignature.mockResolvedValue(false);
|
|
|
|
const result = await node.webhook.call(mockWebhookFunctions);
|
|
|
|
expect(result).toEqual({
|
|
noWebhookResponse: true,
|
|
});
|
|
expect(mockedVerifySignature).toHaveBeenCalledWith();
|
|
});
|
|
|
|
it('should handle events filtering correctly', async () => {
|
|
mockedVerifySignature.mockResolvedValue(true);
|
|
(mockWebhookFunctions.getNodeParameter as jest.Mock).mockReturnValue([
|
|
'payment_intent.succeeded',
|
|
]);
|
|
|
|
const result = await node.webhook.call(mockWebhookFunctions);
|
|
|
|
expect(result).toEqual({});
|
|
});
|
|
|
|
it('should process webhook when event type matches filter', async () => {
|
|
mockedVerifySignature.mockResolvedValue(true);
|
|
(mockWebhookFunctions.getNodeParameter as jest.Mock).mockReturnValue(['charge.succeeded']);
|
|
|
|
const result = await node.webhook.call(mockWebhookFunctions);
|
|
|
|
expect(result).toEqual({
|
|
workflowData: [[testBody]],
|
|
});
|
|
});
|
|
});
|
|
});
|