2024-06-18 01:50:39 -07:00
|
|
|
import type { Config } from '@oclif/core';
|
|
|
|
import type { Class } from 'n8n-core';
|
|
|
|
import { mock } from 'jest-mock-extended';
|
|
|
|
|
|
|
|
import type { BaseCommand } from '@/commands/BaseCommand';
|
|
|
|
import * as testDb from '../testDb';
|
|
|
|
|
|
|
|
export const setupTestCommand = <T extends BaseCommand>(Command: Class<T>) => {
|
|
|
|
const config = mock<Config>();
|
|
|
|
config.runHook.mockResolvedValue({ successes: [], failures: [] });
|
|
|
|
|
|
|
|
// mock SIGINT/SIGTERM registration
|
|
|
|
process.once = jest.fn();
|
2024-07-04 09:07:47 -07:00
|
|
|
process.exit = jest.fn() as never;
|
2024-06-18 01:50:39 -07:00
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
await testDb.init();
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
await testDb.terminate();
|
|
|
|
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
const run = async (argv: string[] = []) => {
|
|
|
|
const command = new Command(argv, config);
|
|
|
|
await command.init();
|
|
|
|
await command.run();
|
|
|
|
return command;
|
|
|
|
};
|
|
|
|
|
|
|
|
return { run };
|
|
|
|
};
|