2023-11-07 04:48:48 -08:00
|
|
|
import { Container } from 'typedi';
|
|
|
|
|
|
|
|
import { NodeApiError, NodeOperationError, Workflow } from 'n8n-workflow';
|
|
|
|
import type { IWebhookData, WorkflowActivateMode } from 'n8n-workflow';
|
|
|
|
import { ActiveWorkflows } from 'n8n-core';
|
|
|
|
|
|
|
|
import { ActiveExecutions } from '@/ActiveExecutions';
|
|
|
|
import { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
|
|
|
import config from '@/config';
|
|
|
|
import { ExternalHooks } from '@/ExternalHooks';
|
|
|
|
import { Push } from '@/push';
|
|
|
|
import { SecretsHelper } from '@/SecretsHelpers';
|
|
|
|
import { WebhookService } from '@/services/webhook.service';
|
|
|
|
import * as WebhookHelpers from '@/WebhookHelpers';
|
|
|
|
import * as AdditionalData from '@/WorkflowExecuteAdditionalData';
|
|
|
|
import { WorkflowRunner } from '@/WorkflowRunner';
|
2023-11-10 06:04:26 -08:00
|
|
|
import type { User } from '@db/entities/User';
|
|
|
|
import type { WebhookEntity } from '@db/entities/WebhookEntity';
|
2023-11-07 04:48:48 -08:00
|
|
|
import { NodeTypes } from '@/NodeTypes';
|
|
|
|
import { MultiMainInstancePublisher } from '@/services/orchestration/main/MultiMainInstance.publisher.ee';
|
2023-11-10 06:04:26 -08:00
|
|
|
|
|
|
|
import { mockInstance } from '../shared/mocking';
|
|
|
|
import { chooseRandomly } from './shared/random';
|
|
|
|
import { setSchedulerAsLoadedNode } from './shared/utils';
|
|
|
|
import * as testDb from './shared/testDb';
|
2023-11-08 07:29:39 -08:00
|
|
|
import { createOwner } from './shared/db/users';
|
|
|
|
import { createWorkflow } from './shared/db/workflows';
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
mockInstance(ActiveExecutions);
|
|
|
|
mockInstance(ActiveWorkflows);
|
|
|
|
mockInstance(Push);
|
|
|
|
mockInstance(SecretsHelper);
|
|
|
|
mockInstance(MultiMainInstancePublisher);
|
|
|
|
|
|
|
|
const webhookService = mockInstance(WebhookService);
|
|
|
|
|
|
|
|
setSchedulerAsLoadedNode();
|
|
|
|
|
|
|
|
const externalHooks = mockInstance(ExternalHooks);
|
|
|
|
|
|
|
|
let activeWorkflowRunner: ActiveWorkflowRunner;
|
|
|
|
let owner: User;
|
|
|
|
|
|
|
|
const NON_LEADERSHIP_CHANGE_MODES: WorkflowActivateMode[] = [
|
|
|
|
'init',
|
|
|
|
'create',
|
|
|
|
'update',
|
|
|
|
'activate',
|
|
|
|
'manual',
|
|
|
|
];
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
await testDb.init();
|
|
|
|
|
|
|
|
activeWorkflowRunner = Container.get(ActiveWorkflowRunner);
|
2023-11-08 07:29:39 -08:00
|
|
|
owner = await createOwner();
|
2023-11-07 04:48:48 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(async () => {
|
|
|
|
await activeWorkflowRunner.removeAll();
|
|
|
|
activeWorkflowRunner.removeAllQueuedWorkflowActivations();
|
|
|
|
await testDb.truncate(['Workflow']);
|
|
|
|
config.load(config.default);
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
await testDb.terminate();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('init()', () => {
|
|
|
|
test('should call `ExternalHooks.run()`', async () => {
|
|
|
|
const runSpy = jest.spyOn(externalHooks, 'run');
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
expect(runSpy).toHaveBeenCalledTimes(1);
|
|
|
|
const [hook, arg] = runSpy.mock.calls[0];
|
|
|
|
expect(hook).toBe('activeWorkflows.initialized');
|
|
|
|
expect(arg).toBeEmptyArray();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should start with no active workflows', async () => {
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
const inStorage = activeWorkflowRunner.allActiveInStorage();
|
|
|
|
await expect(inStorage).resolves.toHaveLength(0);
|
|
|
|
|
|
|
|
const inMemory = activeWorkflowRunner.allActiveInMemory();
|
|
|
|
expect(inMemory).toHaveLength(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should start with one active workflow', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
const inStorage = activeWorkflowRunner.allActiveInStorage();
|
|
|
|
await expect(inStorage).resolves.toHaveLength(1);
|
|
|
|
|
|
|
|
const inMemory = activeWorkflowRunner.allActiveInMemory();
|
|
|
|
expect(inMemory).toHaveLength(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should start with multiple active workflows', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
await createWorkflow({ active: true }, owner);
|
|
|
|
await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
const inStorage = activeWorkflowRunner.allActiveInStorage();
|
|
|
|
await expect(inStorage).resolves.toHaveLength(2);
|
|
|
|
|
|
|
|
const inMemory = activeWorkflowRunner.allActiveInMemory();
|
|
|
|
expect(inMemory).toHaveLength(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should pre-check that every workflow can be activated', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
await createWorkflow({ active: true }, owner);
|
|
|
|
await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
const precheckSpy = jest
|
|
|
|
.spyOn(Workflow.prototype, 'checkIfWorkflowCanBeActivated')
|
|
|
|
.mockReturnValue(true);
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
expect(precheckSpy).toHaveBeenCalledTimes(2);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('removeAll()', () => {
|
|
|
|
test('should remove all active workflows from memory', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
await createWorkflow({ active: true }, owner);
|
|
|
|
await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
await activeWorkflowRunner.removeAll();
|
|
|
|
|
|
|
|
const inMemory = activeWorkflowRunner.allActiveInMemory();
|
|
|
|
expect(inMemory).toHaveLength(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('remove()', () => {
|
|
|
|
test('should call `ActiveWorkflowRunner.clearWebhooks()`', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
const clearWebhooksSpy = jest.spyOn(activeWorkflowRunner, 'clearWebhooks');
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
await activeWorkflowRunner.remove(workflow.id);
|
|
|
|
|
|
|
|
expect(clearWebhooksSpy).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('isActive()', () => {
|
|
|
|
test('should return `true` for active workflow in storage', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
const isActiveInStorage = activeWorkflowRunner.isActive(workflow.id);
|
|
|
|
await expect(isActiveInStorage).resolves.toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should return `false` for inactive workflow in storage', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: false }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
const isActiveInStorage = activeWorkflowRunner.isActive(workflow.id);
|
|
|
|
await expect(isActiveInStorage).resolves.toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('runWorkflow()', () => {
|
|
|
|
test('should call `WorkflowRunner.run()`', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
const additionalData = await AdditionalData.getBase('fake-user-id');
|
|
|
|
|
|
|
|
const runSpy = jest
|
|
|
|
.spyOn(WorkflowRunner.prototype, 'run')
|
|
|
|
.mockResolvedValue('fake-execution-id');
|
|
|
|
|
|
|
|
const [node] = workflow.nodes;
|
|
|
|
|
|
|
|
await activeWorkflowRunner.runWorkflow(workflow, node, [[]], additionalData, 'trigger');
|
|
|
|
|
|
|
|
expect(runSpy).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('executeErrorWorkflow()', () => {
|
|
|
|
test('should call `WorkflowExecuteAdditionalData.executeErrorWorkflow()`', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
const [node] = workflow.nodes;
|
|
|
|
const error = new NodeOperationError(node, 'Fake error message');
|
|
|
|
const executeSpy = jest.spyOn(AdditionalData, 'executeErrorWorkflow');
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
activeWorkflowRunner.executeErrorWorkflow(error, workflow, 'trigger');
|
|
|
|
|
|
|
|
expect(executeSpy).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should be called on failure to activate due to 401', async () => {
|
2023-11-08 07:29:39 -08:00
|
|
|
const storedWorkflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
const [node] = storedWorkflow.nodes;
|
|
|
|
const executeSpy = jest.spyOn(activeWorkflowRunner, 'executeErrorWorkflow');
|
|
|
|
|
|
|
|
jest.spyOn(activeWorkflowRunner, 'add').mockImplementation(() => {
|
|
|
|
throw new NodeApiError(node, {
|
|
|
|
httpCode: '401',
|
|
|
|
message: 'Authorization failed - please check your credentials',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
expect(executeSpy).toHaveBeenCalledTimes(1);
|
|
|
|
const [error, workflow] = executeSpy.mock.calls[0];
|
|
|
|
expect(error.message).toContain('Authorization');
|
|
|
|
expect(workflow.id).toBe(storedWorkflow.id);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('add()', () => {
|
|
|
|
describe('in single-main scenario', () => {
|
|
|
|
test('leader should add webhooks, triggers and pollers', async () => {
|
|
|
|
const mode = chooseRandomly(NON_LEADERSHIP_CHANGE_MODES);
|
|
|
|
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
const addWebhooksSpy = jest.spyOn(activeWorkflowRunner, 'addWebhooks');
|
|
|
|
const addTriggersAndPollersSpy = jest.spyOn(activeWorkflowRunner, 'addTriggersAndPollers');
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
|
|
|
|
addWebhooksSpy.mockReset();
|
|
|
|
addTriggersAndPollersSpy.mockReset();
|
|
|
|
|
|
|
|
await activeWorkflowRunner.add(workflow.id, mode);
|
|
|
|
|
|
|
|
expect(addWebhooksSpy).toHaveBeenCalledTimes(1);
|
|
|
|
expect(addTriggersAndPollersSpy).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('in multi-main scenario', () => {
|
|
|
|
describe('leader', () => {
|
|
|
|
test('on regular activation mode, leader should add webhooks only', async () => {
|
|
|
|
const mode = chooseRandomly(NON_LEADERSHIP_CHANGE_MODES);
|
|
|
|
|
|
|
|
jest.replaceProperty(activeWorkflowRunner, 'isMultiMainScenario', true);
|
|
|
|
|
|
|
|
mockInstance(MultiMainInstancePublisher, { isLeader: true });
|
|
|
|
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
const addWebhooksSpy = jest.spyOn(activeWorkflowRunner, 'addWebhooks');
|
|
|
|
const addTriggersAndPollersSpy = jest.spyOn(activeWorkflowRunner, 'addTriggersAndPollers');
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
addWebhooksSpy.mockReset();
|
|
|
|
addTriggersAndPollersSpy.mockReset();
|
|
|
|
|
|
|
|
await activeWorkflowRunner.add(workflow.id, mode);
|
|
|
|
|
|
|
|
expect(addWebhooksSpy).toHaveBeenCalledTimes(1);
|
|
|
|
expect(addTriggersAndPollersSpy).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('on activation via leadership change, leader should add triggers and pollers only', async () => {
|
|
|
|
const mode = 'leadershipChange';
|
|
|
|
|
|
|
|
jest.replaceProperty(activeWorkflowRunner, 'isMultiMainScenario', true);
|
|
|
|
|
|
|
|
mockInstance(MultiMainInstancePublisher, { isLeader: true });
|
|
|
|
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
const addWebhooksSpy = jest.spyOn(activeWorkflowRunner, 'addWebhooks');
|
|
|
|
const addTriggersAndPollersSpy = jest.spyOn(activeWorkflowRunner, 'addTriggersAndPollers');
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
addWebhooksSpy.mockReset();
|
|
|
|
addTriggersAndPollersSpy.mockReset();
|
|
|
|
|
|
|
|
await activeWorkflowRunner.add(workflow.id, mode);
|
|
|
|
|
|
|
|
expect(addWebhooksSpy).not.toHaveBeenCalled();
|
|
|
|
expect(addTriggersAndPollersSpy).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('follower', () => {
|
|
|
|
test('on regular activation mode, follower should not add webhooks, triggers or pollers', async () => {
|
|
|
|
const mode = chooseRandomly(NON_LEADERSHIP_CHANGE_MODES);
|
|
|
|
|
|
|
|
jest.replaceProperty(activeWorkflowRunner, 'isMultiMainScenario', true);
|
|
|
|
|
|
|
|
mockInstance(MultiMainInstancePublisher, { isLeader: false });
|
|
|
|
|
2023-11-08 07:29:39 -08:00
|
|
|
const workflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
const addWebhooksSpy = jest.spyOn(activeWorkflowRunner, 'addWebhooks');
|
|
|
|
const addTriggersAndPollersSpy = jest.spyOn(activeWorkflowRunner, 'addTriggersAndPollers');
|
|
|
|
|
|
|
|
await activeWorkflowRunner.init();
|
|
|
|
addWebhooksSpy.mockReset();
|
|
|
|
addTriggersAndPollersSpy.mockReset();
|
|
|
|
|
|
|
|
await activeWorkflowRunner.add(workflow.id, mode);
|
|
|
|
|
|
|
|
expect(addWebhooksSpy).not.toHaveBeenCalled();
|
|
|
|
expect(addTriggersAndPollersSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('addWebhooks()', () => {
|
|
|
|
test('should call `WebhookService.storeWebhook()`', async () => {
|
|
|
|
const mockWebhook = { path: 'fake-path' } as unknown as IWebhookData;
|
|
|
|
const mockWebhookEntity = { webhookPath: 'fake-path' } as unknown as WebhookEntity;
|
|
|
|
|
|
|
|
jest.spyOn(WebhookHelpers, 'getWorkflowWebhooks').mockReturnValue([mockWebhook]);
|
|
|
|
webhookService.createWebhook.mockReturnValue(mockWebhookEntity);
|
|
|
|
|
|
|
|
const additionalData = await AdditionalData.getBase('fake-user-id');
|
|
|
|
|
2023-11-08 07:29:39 -08:00
|
|
|
const dbWorkflow = await createWorkflow({ active: true }, owner);
|
2023-11-07 04:48:48 -08:00
|
|
|
|
|
|
|
const workflow = new Workflow({
|
|
|
|
id: dbWorkflow.id,
|
|
|
|
name: dbWorkflow.name,
|
|
|
|
nodes: dbWorkflow.nodes,
|
|
|
|
connections: dbWorkflow.connections,
|
|
|
|
active: dbWorkflow.active,
|
|
|
|
nodeTypes: Container.get(NodeTypes),
|
|
|
|
staticData: dbWorkflow.staticData,
|
|
|
|
settings: dbWorkflow.settings,
|
|
|
|
});
|
|
|
|
|
|
|
|
const [node] = dbWorkflow.nodes;
|
|
|
|
|
|
|
|
jest.spyOn(Workflow.prototype, 'getNode').mockReturnValue(node);
|
|
|
|
jest.spyOn(Workflow.prototype, 'checkIfWorkflowCanBeActivated').mockReturnValue(true);
|
|
|
|
jest.spyOn(Workflow.prototype, 'createWebhookIfNotExists').mockResolvedValue(undefined);
|
|
|
|
|
|
|
|
await activeWorkflowRunner.addWebhooks(workflow, additionalData, 'trigger', 'init');
|
|
|
|
|
|
|
|
expect(webhookService.storeWebhook).toHaveBeenCalledTimes(1);
|
|
|
|
});
|
|
|
|
});
|