feat: update webhook config to match API requirements
parent
7616e9f268
commit
72e7a804b5
@ -0,0 +1,53 @@
|
|||||||
|
import { describe, test, expect, mock } from 'bun:test';
|
||||||
|
import { WebhookManager } from '../../../src/services/webhook-manager';
|
||||||
|
|
||||||
|
describe('WebhookManager', () => {
|
||||||
|
const envBackup = process.env;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
process.env = {
|
||||||
|
...envBackup,
|
||||||
|
EVOLUTION_API_URL: 'https://test-api',
|
||||||
|
EVOLUTION_API_KEY: 'test-key',
|
||||||
|
EVOLUTION_API_INSTANCE: 'test-instance',
|
||||||
|
WEBHOOK_URL: 'https://test-webhook'
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
process.env = envBackup;
|
||||||
|
});
|
||||||
|
|
||||||
|
test('should create correct config structure', () => {
|
||||||
|
const config = WebhookManager['getConfig']();
|
||||||
|
expect(config).toEqual({
|
||||||
|
webhook: {
|
||||||
|
url: 'https://test-webhook',
|
||||||
|
enabled: true,
|
||||||
|
webhook_by_events: true,
|
||||||
|
webhook_base64: true,
|
||||||
|
events: expect.any(Array)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test('should validate successful response', () => {
|
||||||
|
const validResponse = {
|
||||||
|
id: 'test-id',
|
||||||
|
url: 'https://test-webhook',
|
||||||
|
enabled: true,
|
||||||
|
events: ['APPLICATION_STARTUP']
|
||||||
|
};
|
||||||
|
expect(() => WebhookManager['validateResponse'](validResponse)).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('should reject disabled webhook response', () => {
|
||||||
|
const invalidResponse = {
|
||||||
|
id: 'test-id',
|
||||||
|
url: 'https://test-webhook',
|
||||||
|
enabled: false,
|
||||||
|
events: ['APPLICATION_STARTUP']
|
||||||
|
};
|
||||||
|
expect(() => WebhookManager['validateResponse'](invalidResponse)).toThrow();
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue