refactor: Overhaul nodes-testing setup - Part 1 (no-changelog) (#14303)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2025-04-01 10:15:13 +02:00
committed by GitHub
parent f85b851851
commit 73e8d76e13
165 changed files with 3397 additions and 6453 deletions

View File

@@ -1,6 +1,6 @@
import type { IHttpRequestMethods } from 'n8n-workflow';
import nock from 'nock';
import { equalityTest, setup, workflowToTests } from '@test/nodes/Helpers';
import { testWorkflows } from '@test/nodes/Helpers';
const API_RESPONSE = {
object: 'page',
@@ -61,24 +61,13 @@ const API_RESPONSE = {
request_id: 'a4683091-f165-4f10-92b4-a629b8b1266e',
};
jest.mock('../../../../shared/GenericFunctions', () => {
const originalModule = jest.requireActual('../../../../shared/GenericFunctions');
return {
...originalModule,
notionApiRequest: jest.fn(async function (method: IHttpRequestMethods) {
if (method === 'PATCH') {
return API_RESPONSE;
}
}),
};
});
describe('Test NotionV2, databasePage => update', () => {
const workflows = ['nodes/Notion/test/node/v2/databasePage/update.workflow.json'];
const tests = workflowToTests(workflows);
const nodeTypes = setup(tests);
nock('https://api.notion.com')
.patch('/v1/pages/15bfb9cb4cf081c7aab4c5855b8cb6c3', {
properties: { Name: { title: [{ text: { content: 'Updated Name' } }] } },
})
.reply(200, API_RESPONSE);
for (const testData of tests) {
test(testData.description, async () => await equalityTest(testData, nodeTypes));
}
const workflows = ['nodes/Notion/test/node/v2/databasePage/update.workflow.json'];
testWorkflows(workflows);
});