mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import nock from 'nock';
|
|
|
|
import { testWorkflows } from '@test/nodes/Helpers';
|
|
|
|
jest.mock('jsonwebtoken', () => ({
|
|
sign: jest.fn().mockReturnValue('signature'),
|
|
}));
|
|
|
|
describe('Test Google BigQuery V2, executeQuery', () => {
|
|
nock('https://oauth2.googleapis.com')
|
|
.persist()
|
|
.post(
|
|
'/token',
|
|
'grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=signature',
|
|
)
|
|
.reply(200, { access_token: 'token' });
|
|
|
|
nock('https://bigquery.googleapis.com/bigquery')
|
|
.post('/v2/projects/test-project/jobs', {
|
|
configuration: {
|
|
query: {
|
|
query: 'SELECT * FROM bigquery_node_dev_test_dataset.test_json;',
|
|
useLegacySql: false,
|
|
},
|
|
},
|
|
})
|
|
.reply(200, {
|
|
jobReference: {
|
|
jobId: 'job_123',
|
|
},
|
|
status: {
|
|
state: 'DONE',
|
|
},
|
|
})
|
|
.get('/v2/projects/test-project/queries/job_123')
|
|
.reply(200)
|
|
.get('/v2/projects/test-project/queries/job_123?maxResults=1000&timeoutMs=10000')
|
|
.reply(200, { rows: [], schema: {} });
|
|
|
|
const workflows = ['nodes/Google/BigQuery/test/v2/node/executeQuery.workflow.json'];
|
|
testWorkflows(workflows);
|
|
});
|