mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 16:44:07 -08:00
99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
import type { CacheService } from '@/services/cache/cache.service';
|
|
import type { OrchestrationService } from '@/services/orchestration.service';
|
|
import type { TestWebhookRegistration } from '@/services/test-webhook-registrations.service';
|
|
import { TestWebhookRegistrationsService } from '@/services/test-webhook-registrations.service';
|
|
import { mock } from 'jest-mock-extended';
|
|
|
|
describe('TestWebhookRegistrationsService', () => {
|
|
const cacheService = mock<CacheService>();
|
|
const registrations = new TestWebhookRegistrationsService(
|
|
cacheService,
|
|
mock<OrchestrationService>({ isMultiMainSetupEnabled: false }),
|
|
);
|
|
|
|
const registration = mock<TestWebhookRegistration>({
|
|
webhook: { httpMethod: 'GET', path: 'hello', webhookId: undefined },
|
|
});
|
|
|
|
const webhookKey = 'GET|hello';
|
|
const cacheKey = 'test-webhooks';
|
|
|
|
describe('register()', () => {
|
|
test('should register a test webhook registration', async () => {
|
|
await registrations.register(registration);
|
|
|
|
expect(cacheService.setHash).toHaveBeenCalledWith(cacheKey, { [webhookKey]: registration });
|
|
});
|
|
|
|
test('should skip setting TTL in single-main setup', async () => {
|
|
await registrations.register(registration);
|
|
|
|
expect(cacheService.expire).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('deregister()', () => {
|
|
test('should deregister a test webhook registration', async () => {
|
|
await registrations.register(registration);
|
|
|
|
await registrations.deregister(webhookKey);
|
|
|
|
expect(cacheService.deleteFromHash).toHaveBeenCalledWith(cacheKey, webhookKey);
|
|
});
|
|
});
|
|
|
|
describe('get()', () => {
|
|
test('should retrieve a test webhook registration', async () => {
|
|
cacheService.getHashValue.mockResolvedValueOnce(registration);
|
|
|
|
const promise = registrations.get(webhookKey);
|
|
|
|
await expect(promise).resolves.toBe(registration);
|
|
});
|
|
|
|
test('should return undefined if no such test webhook registration was found', async () => {
|
|
cacheService.getHashValue.mockResolvedValueOnce(undefined);
|
|
|
|
const promise = registrations.get(webhookKey);
|
|
|
|
await expect(promise).resolves.toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('getAllKeys()', () => {
|
|
test('should retrieve all test webhook registration keys', async () => {
|
|
cacheService.getHash.mockResolvedValueOnce({ [webhookKey]: registration });
|
|
|
|
const result = await registrations.getAllKeys();
|
|
|
|
expect(result).toEqual([webhookKey]);
|
|
});
|
|
});
|
|
|
|
describe('getAllRegistrations()', () => {
|
|
test('should retrieve all test webhook registrations', async () => {
|
|
cacheService.getHash.mockResolvedValueOnce({ [webhookKey]: registration });
|
|
|
|
const result = await registrations.getAllRegistrations();
|
|
|
|
expect(result).toEqual([registration]);
|
|
});
|
|
});
|
|
|
|
describe('deregisterAll()', () => {
|
|
test('should deregister all test webhook registrations', async () => {
|
|
await registrations.deregisterAll();
|
|
|
|
expect(cacheService.delete).toHaveBeenCalledWith(cacheKey);
|
|
});
|
|
});
|
|
|
|
describe('toKey()', () => {
|
|
test('should convert a test webhook registration to a key', () => {
|
|
const result = registrations.toKey(registration.webhook);
|
|
|
|
expect(result).toBe(webhookKey);
|
|
});
|
|
});
|
|
});
|