mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
import nock from 'nock';
|
|
import { executeWorkflow } from '../ExecuteWorkflow';
|
|
import * as Helpers from '../Helpers';
|
|
import type { WorkflowTestData } from '../types';
|
|
|
|
const records = [
|
|
{
|
|
id: 'rec2BWBoyS5QsS7pT',
|
|
createdTime: '2022-08-25T08:22:34.000Z',
|
|
fields: {
|
|
name: 'Tim',
|
|
email: 'tim@email.com',
|
|
},
|
|
},
|
|
];
|
|
|
|
describe('Execute Airtable Node', () => {
|
|
beforeEach(() => {
|
|
nock.disableNetConnect();
|
|
nock('https://api.airtable.com/v0')
|
|
.get('/appIaXXdDqS5ORr4V/tbljyBEdYzCPF0NDh?pageSize=100')
|
|
.reply(200, { records });
|
|
});
|
|
|
|
afterEach(() => {
|
|
nock.restore();
|
|
});
|
|
|
|
const tests: WorkflowTestData[] = [
|
|
{
|
|
description: 'List Airtable Records',
|
|
input: {
|
|
workflowData: Helpers.readJsonFileSync('test/nodes/Airtable/workflow.json'),
|
|
},
|
|
output: {
|
|
nodeData: {
|
|
Airtable: [[...records.map((r) => ({ json: r }))]],
|
|
},
|
|
},
|
|
},
|
|
];
|
|
|
|
const nodeTypes = Helpers.setup(tests);
|
|
|
|
for (const testData of tests) {
|
|
test(testData.description, async () => {
|
|
try {
|
|
// execute workflow
|
|
await executeWorkflow(testData, nodeTypes);
|
|
} catch (error) {
|
|
expect(error).toBeUndefined();
|
|
expect(error.message).toEqual(
|
|
'The API Key connection was deprecated by Airtable, please use Access Token or OAuth2 instead.',
|
|
);
|
|
}
|
|
});
|
|
}
|
|
});
|