mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
84 lines
2.4 KiB
TypeScript
84 lines
2.4 KiB
TypeScript
import type { IHttpRequestMethods, INodeTypes } from 'n8n-workflow';
|
|
|
|
import nock from 'nock';
|
|
import * as transport from '../../../v2/transport';
|
|
import { setup, workflowToTests } from '@test/nodes/Helpers';
|
|
import type { WorkflowTestData } from '@test/nodes/types';
|
|
import { executeWorkflow } from '@test/nodes/ExecuteWorkflow';
|
|
|
|
jest.mock('../../../v2/transport', () => {
|
|
const originalModule = jest.requireActual('../../../v2/transport');
|
|
return {
|
|
...originalModule,
|
|
googleBigQueryApiRequest: jest.fn(async (method: IHttpRequestMethods, resource: string) => {
|
|
if (
|
|
resource ===
|
|
'/v2/projects/test-project/datasets/bigquery_node_dev_test_dataset/tables/num_text' &&
|
|
method === 'GET'
|
|
) {
|
|
return {
|
|
schema: {
|
|
fields: [
|
|
{ name: 'id', type: 'INT' },
|
|
{ name: 'test', type: 'STRING' },
|
|
],
|
|
},
|
|
};
|
|
}
|
|
if (
|
|
resource ===
|
|
'/v2/projects/test-project/datasets/bigquery_node_dev_test_dataset/tables/num_text/insertAll' &&
|
|
method === 'POST'
|
|
) {
|
|
return { kind: 'bigquery#tableDataInsertAllResponse' };
|
|
}
|
|
}),
|
|
googleApiRequestAllItems: jest.fn(async () => {}),
|
|
};
|
|
});
|
|
|
|
describe('Test Google BigQuery V2, insert auto map', () => {
|
|
const workflows = ['nodes/Google/BigQuery/test/v2/node/insert.autoMapMode.workflow.json'];
|
|
const tests = workflowToTests(workflows);
|
|
|
|
beforeAll(() => {
|
|
nock.disableNetConnect();
|
|
});
|
|
|
|
afterAll(() => {
|
|
nock.restore();
|
|
jest.unmock('../../../v2/transport');
|
|
});
|
|
|
|
const nodeTypes = setup(tests);
|
|
|
|
const testNode = async (testData: WorkflowTestData, types: INodeTypes) => {
|
|
const { result } = await executeWorkflow(testData, types);
|
|
|
|
expect(transport.googleBigQueryApiRequest).toHaveBeenCalledTimes(2);
|
|
expect(transport.googleBigQueryApiRequest).toHaveBeenCalledWith(
|
|
'GET',
|
|
'/v2/projects/test-project/datasets/bigquery_node_dev_test_dataset/tables/num_text',
|
|
{},
|
|
);
|
|
expect(transport.googleBigQueryApiRequest).toHaveBeenCalledWith(
|
|
'POST',
|
|
'/v2/projects/test-project/datasets/bigquery_node_dev_test_dataset/tables/num_text/insertAll',
|
|
{
|
|
rows: [
|
|
{ json: { id: 1, test: '111' } },
|
|
{ json: { id: 2, test: '222' } },
|
|
{ json: { id: 3, test: '333' } },
|
|
],
|
|
traceId: 'trace_id',
|
|
},
|
|
);
|
|
|
|
expect(result.finished).toEqual(true);
|
|
};
|
|
|
|
for (const testData of tests) {
|
|
test(testData.description, async () => await testNode(testData, nodeTypes));
|
|
}
|
|
});
|