2024-06-18 01:50:39 -07:00
|
|
|
import { BinaryDataService } from 'n8n-core';
|
|
|
|
import { mock } from 'jest-mock-extended';
|
|
|
|
|
2023-09-07 05:44:19 -07:00
|
|
|
import { Worker } from '@/commands/worker';
|
2023-09-26 04:58:06 -07:00
|
|
|
import config from '@/config';
|
2023-09-07 05:44:19 -07:00
|
|
|
import { ExternalSecretsManager } from '@/ExternalSecrets/ExternalSecretsManager.ee';
|
|
|
|
import { MessageEventBus } from '@/eventbus/MessageEventBus/MessageEventBus';
|
|
|
|
import { LoadNodesAndCredentials } from '@/LoadNodesAndCredentials';
|
|
|
|
import { InternalHooks } from '@/InternalHooks';
|
2023-10-06 04:58:11 -07:00
|
|
|
import { OrchestrationHandlerWorkerService } from '@/services/orchestration/worker/orchestration.handler.worker.service';
|
2024-06-18 01:50:39 -07:00
|
|
|
import { OrchestrationWorkerService } from '@/services/orchestration/worker/orchestration.worker.service';
|
|
|
|
import { License } from '@/License';
|
|
|
|
import { ExternalHooks } from '@/ExternalHooks';
|
|
|
|
import { type JobQueue, Queue } from '@/Queue';
|
2023-09-07 05:44:19 -07:00
|
|
|
|
2024-06-18 01:50:39 -07:00
|
|
|
import { setupTestCommand } from '@test-integration/utils/testCommand';
|
2023-11-10 06:04:26 -08:00
|
|
|
import { mockInstance } from '../../shared/mocking';
|
2024-08-02 07:52:49 -07:00
|
|
|
import { LogStreamingEventRelay } from '@/events/log-streaming-event-relay';
|
2023-11-10 06:04:26 -08:00
|
|
|
|
2024-06-18 01:50:39 -07:00
|
|
|
config.set('executions.mode', 'queue');
|
|
|
|
config.set('binaryDataManager.availableModes', 'filesystem');
|
|
|
|
mockInstance(InternalHooks);
|
|
|
|
mockInstance(LoadNodesAndCredentials);
|
|
|
|
const binaryDataService = mockInstance(BinaryDataService);
|
|
|
|
const externalHooks = mockInstance(ExternalHooks);
|
|
|
|
const externalSecretsManager = mockInstance(ExternalSecretsManager);
|
|
|
|
const license = mockInstance(License);
|
|
|
|
const messageEventBus = mockInstance(MessageEventBus);
|
2024-08-02 07:52:49 -07:00
|
|
|
const logStreamingEventRelay = mockInstance(LogStreamingEventRelay);
|
2024-06-18 01:50:39 -07:00
|
|
|
const orchestrationHandlerWorkerService = mockInstance(OrchestrationHandlerWorkerService);
|
|
|
|
const queue = mockInstance(Queue);
|
|
|
|
const orchestrationWorkerService = mockInstance(OrchestrationWorkerService);
|
|
|
|
const command = setupTestCommand(Worker);
|
|
|
|
|
|
|
|
queue.getBullObjectInstance.mockReturnValue(mock<JobQueue>({ on: jest.fn() }));
|
2023-09-07 05:44:19 -07:00
|
|
|
|
|
|
|
test('worker initializes all its components', async () => {
|
2024-06-18 01:50:39 -07:00
|
|
|
const worker = await command.run();
|
2023-09-07 05:44:19 -07:00
|
|
|
|
2023-09-26 04:58:06 -07:00
|
|
|
expect(worker.queueModeId).toBeDefined();
|
|
|
|
expect(worker.queueModeId).toContain('worker');
|
|
|
|
expect(worker.queueModeId.length).toBeGreaterThan(15);
|
2024-06-18 01:50:39 -07:00
|
|
|
expect(license.init).toHaveBeenCalledTimes(1);
|
|
|
|
expect(binaryDataService.init).toHaveBeenCalledTimes(1);
|
|
|
|
expect(externalHooks.init).toHaveBeenCalledTimes(1);
|
|
|
|
expect(externalSecretsManager.init).toHaveBeenCalledTimes(1);
|
|
|
|
expect(messageEventBus.initialize).toHaveBeenCalledTimes(1);
|
2024-08-02 07:52:49 -07:00
|
|
|
expect(logStreamingEventRelay.init).toHaveBeenCalledTimes(1);
|
2024-06-18 01:50:39 -07:00
|
|
|
expect(queue.init).toHaveBeenCalledTimes(1);
|
|
|
|
expect(queue.process).toHaveBeenCalledTimes(1);
|
|
|
|
expect(orchestrationWorkerService.init).toHaveBeenCalledTimes(1);
|
|
|
|
expect(orchestrationHandlerWorkerService.initWithOptions).toHaveBeenCalledTimes(1);
|
|
|
|
expect(messageEventBus.send).toHaveBeenCalledTimes(1);
|
2023-09-07 05:44:19 -07:00
|
|
|
});
|