mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
119 lines
3.7 KiB
TypeScript
119 lines
3.7 KiB
TypeScript
import { mockLogger } from '@n8n/backend-test-utils';
|
|
import type { Redis as SingleNodeClient } from 'ioredis';
|
|
import { mock } from 'jest-mock-extended';
|
|
import type { InstanceSettings } from 'n8n-core';
|
|
|
|
import config from '@/config';
|
|
import type { RedisClientService } from '@/services/redis-client.service';
|
|
|
|
import { Publisher } from '../publisher.service';
|
|
import type { PubSub } from '../pubsub.types';
|
|
|
|
describe('Publisher', () => {
|
|
beforeEach(() => {
|
|
config.set('executions.mode', 'queue');
|
|
});
|
|
|
|
const client = mock<SingleNodeClient>();
|
|
const logger = mockLogger();
|
|
const hostId = 'main-bnxa1riryKUNHtln';
|
|
const instanceSettings = mock<InstanceSettings>({ hostId });
|
|
const redisClientService = mock<RedisClientService>({ createClient: () => client });
|
|
|
|
describe('constructor', () => {
|
|
it('should init Redis client in scaling mode', () => {
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
|
|
expect(publisher.getClient()).toEqual(client);
|
|
});
|
|
|
|
it('should not init Redis client in regular mode', () => {
|
|
config.set('executions.mode', 'regular');
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
|
|
expect(publisher.getClient()).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('shutdown', () => {
|
|
it('should disconnect Redis client', () => {
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
publisher.shutdown();
|
|
expect(client.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('publishCommand', () => {
|
|
it('should do nothing if not in scaling mode', async () => {
|
|
config.set('executions.mode', 'regular');
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
const msg = mock<PubSub.Command>({ command: 'reload-license' });
|
|
|
|
await publisher.publishCommand(msg);
|
|
|
|
expect(client.publish).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('should publish command into `n8n.commands` pubsub channel', async () => {
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
const msg = mock<PubSub.Command>({ command: 'reload-license' });
|
|
|
|
await publisher.publishCommand(msg);
|
|
|
|
expect(client.publish).toHaveBeenCalledWith(
|
|
'n8n.commands',
|
|
JSON.stringify({ ...msg, senderId: hostId, selfSend: false, debounce: true }),
|
|
);
|
|
});
|
|
|
|
it('should not debounce `add-webhooks-triggers-and-pollers`', async () => {
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
const msg = mock<PubSub.Command>({ command: 'add-webhooks-triggers-and-pollers' });
|
|
|
|
await publisher.publishCommand(msg);
|
|
|
|
expect(client.publish).toHaveBeenCalledWith(
|
|
'n8n.commands',
|
|
JSON.stringify({
|
|
...msg,
|
|
_isMockObject: true,
|
|
senderId: hostId,
|
|
selfSend: true,
|
|
debounce: false,
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should not debounce `remove-triggers-and-pollers`', async () => {
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
const msg = mock<PubSub.Command>({ command: 'remove-triggers-and-pollers' });
|
|
|
|
await publisher.publishCommand(msg);
|
|
|
|
expect(client.publish).toHaveBeenCalledWith(
|
|
'n8n.commands',
|
|
JSON.stringify({
|
|
...msg,
|
|
_isMockObject: true,
|
|
senderId: hostId,
|
|
selfSend: true,
|
|
debounce: false,
|
|
}),
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('publishWorkerResponse', () => {
|
|
it('should publish worker response into `n8n.worker-response` pubsub channel', async () => {
|
|
const publisher = new Publisher(logger, redisClientService, instanceSettings);
|
|
const msg = mock<PubSub.WorkerResponse>({
|
|
response: 'response-to-get-worker-status',
|
|
});
|
|
|
|
await publisher.publishWorkerResponse(msg);
|
|
|
|
expect(client.publish).toHaveBeenCalledWith('n8n.worker-response', JSON.stringify(msg));
|
|
});
|
|
});
|
|
});
|