mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
d8478dd928
Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
121 lines
3.1 KiB
TypeScript
121 lines
3.1 KiB
TypeScript
import { Logger } from '../logger';
|
|
|
|
import {
|
|
FEATURE_ARCHIVED,
|
|
FEATURE_CREATED,
|
|
FEATURE_ENVIRONMENT_DISABLED,
|
|
IEvent,
|
|
} from '../types/events';
|
|
|
|
import TeamsAddon from './teams';
|
|
|
|
import noLogger from '../../test/fixtures/no-logger';
|
|
|
|
let fetchRetryCalls: any[];
|
|
|
|
jest.mock(
|
|
'./addon',
|
|
() =>
|
|
class Addon {
|
|
logger: Logger;
|
|
|
|
constructor(definition, { getLogger }) {
|
|
this.logger = getLogger('addon/test');
|
|
fetchRetryCalls = [];
|
|
}
|
|
|
|
async fetchRetry(url, options, retries, backoff) {
|
|
fetchRetryCalls.push({
|
|
url,
|
|
options,
|
|
retries,
|
|
backoff,
|
|
});
|
|
return Promise.resolve({ status: 200 });
|
|
}
|
|
},
|
|
);
|
|
|
|
test('Should call teams webhook', async () => {
|
|
const addon = new TeamsAddon({
|
|
getLogger: noLogger,
|
|
unleashUrl: 'http://some-url.com',
|
|
});
|
|
const event: IEvent = {
|
|
id: 1,
|
|
createdAt: new Date(),
|
|
type: FEATURE_CREATED,
|
|
createdBy: 'some@user.com',
|
|
featureName: 'some-toggle',
|
|
data: {
|
|
name: 'some-toggle',
|
|
enabled: false,
|
|
strategies: [{ name: 'default' }],
|
|
},
|
|
};
|
|
|
|
const parameters = {
|
|
url: 'http://hooks.office.com',
|
|
};
|
|
|
|
await addon.handleEvent(event, parameters);
|
|
expect(fetchRetryCalls.length).toBe(1);
|
|
expect(fetchRetryCalls[0].url).toBe(parameters.url);
|
|
expect(fetchRetryCalls[0].options.body).toMatchSnapshot();
|
|
});
|
|
|
|
test('Should call teams webhook for archived toggle', async () => {
|
|
const addon = new TeamsAddon({
|
|
getLogger: noLogger,
|
|
unleashUrl: 'http://some-url.com',
|
|
});
|
|
const event = {
|
|
id: 1,
|
|
createdAt: new Date(),
|
|
type: FEATURE_ARCHIVED,
|
|
createdBy: 'some@user.com',
|
|
featureName: 'some-toggle',
|
|
data: {
|
|
name: 'some-toggle',
|
|
},
|
|
};
|
|
|
|
const parameters = {
|
|
url: 'http://hooks.office.com',
|
|
};
|
|
|
|
await addon.handleEvent(event, parameters);
|
|
expect(fetchRetryCalls.length).toBe(1);
|
|
expect(fetchRetryCalls[0].url).toBe(parameters.url);
|
|
expect(fetchRetryCalls[0].options.body).toMatchSnapshot();
|
|
});
|
|
|
|
test(`Should call teams webhook for toggled environment`, async () => {
|
|
const addon = new TeamsAddon({
|
|
getLogger: noLogger,
|
|
unleashUrl: 'http://some-url.com',
|
|
});
|
|
const event: IEvent = {
|
|
id: 2,
|
|
createdAt: new Date(),
|
|
type: FEATURE_ENVIRONMENT_DISABLED,
|
|
createdBy: 'some@user.com',
|
|
environment: 'development',
|
|
project: 'default',
|
|
featureName: 'some-toggle',
|
|
data: {
|
|
name: 'some-toggle',
|
|
},
|
|
};
|
|
|
|
const parameters = {
|
|
url: 'http://hooks.slack.com',
|
|
};
|
|
|
|
await addon.handleEvent(event, parameters);
|
|
expect(fetchRetryCalls).toHaveLength(1);
|
|
expect(fetchRetryCalls[0].url).toBe(parameters.url);
|
|
expect(fetchRetryCalls[0].options.body).toMatch(/disabled/);
|
|
expect(fetchRetryCalls[0].options.body).toMatchSnapshot();
|
|
});
|