n8n/packages/nodes-base/nodes/Postgres/test/v2/runQueries.test.ts
Iván Ovejero 62c096710f
refactor: Run lintfix (no-changelog) (#7537)
- Fix autofixable violations
- Remove unused directives
- Allow for PascalCased variables - needed for dynamically imported or
assigned classes, decorators, routers, etc.
2023-10-27 14:15:02 +02:00

56 lines
1.4 KiB
TypeScript

import type { IDataObject, IExecuteFunctions, INode } from 'n8n-workflow';
import pgPromise from 'pg-promise';
import { mock } from 'jest-mock-extended';
import type { PgpDatabase } from '../../v2/helpers/interfaces';
import { configureQueryRunner } from '../../v2/helpers/utils';
const node: INode = {
id: '1',
name: 'Postgres node',
typeVersion: 2,
type: 'n8n-nodes-base.postgres',
position: [60, 760],
parameters: {
operation: 'executeQuery',
},
};
const createMockDb = (returnData: IDataObject | IDataObject[]) => {
return {
async any() {
return returnData;
},
async multi() {
return returnData;
},
async tx() {
return returnData;
},
async task() {
return returnData;
},
} as unknown as PgpDatabase;
};
describe('Test PostgresV2, runQueries', () => {
it('should execute, should return success true', async () => {
const pgp = pgPromise();
const db = createMockDb([]);
const dbMultiSpy = jest.spyOn(db, 'multi');
const thisArg = mock<IExecuteFunctions>();
const runQueries = configureQueryRunner.call(thisArg, node, false, pgp, db);
const result = await runQueries([{ query: 'SELECT * FROM table', values: [] }], [], {
nodeVersion: 2.2,
});
expect(result).toBeDefined();
expect(result).toHaveLength(1);
expect(result).toEqual([{ json: { success: true }, pairedItem: [{ item: 0 }] }]);
expect(dbMultiSpy).toHaveBeenCalledWith('SELECT * FROM table');
});
});