mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-23 04:45:21 +02:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { testDb, mockInstance } from '@n8n/backend-test-utils';
|
|
import { CommandMetadata, type CommandClass } from '@n8n/decorators';
|
|
import { Container } from '@n8n/di';
|
|
import argvParser from 'yargs-parser';
|
|
|
|
import { MessageEventBus } from '@/eventbus/message-event-bus/message-event-bus';
|
|
import { TelemetryEventRelay } from '@/events/relays/telemetry.event-relay';
|
|
|
|
mockInstance(MessageEventBus);
|
|
|
|
export const setupTestCommand = <T extends CommandClass>(Command: T) => {
|
|
// mock SIGINT/SIGTERM registration
|
|
process.once = jest.fn();
|
|
process.exit = jest.fn() as never;
|
|
|
|
beforeAll(async () => {
|
|
await testDb.init();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
mockInstance(TelemetryEventRelay);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await testDb.terminate();
|
|
|
|
jest.restoreAllMocks();
|
|
});
|
|
|
|
const run = async (argv: string[] = []) => {
|
|
const command = new Command();
|
|
const rawFlags = argvParser(argv, { string: ['id'] });
|
|
const entry = Container.get(CommandMetadata)
|
|
.getEntries()
|
|
.find(([, e]) => e.class === Command)?.[1];
|
|
command.flags = entry?.flagsSchema ? entry.flagsSchema.parse(rawFlags) : rawFlags;
|
|
await command.init?.();
|
|
await command.run();
|
|
return command;
|
|
};
|
|
|
|
return { run };
|
|
};
|