debian-mirror-gitlab/spec/frontend/incidents_settings/components/incidents_settings_service_spec.js

58 lines
1.7 KiB
JavaScript
Raw Normal View History

2020-07-28 23:09:34 +05:30
import AxiosMockAdapter from 'axios-mock-adapter';
2021-09-04 01:27:46 +05:30
import createFlash from '~/flash';
2021-03-11 19:13:27 +05:30
import { ERROR_MSG } from '~/incidents_settings/constants';
import IncidentsSettingsService from '~/incidents_settings/incidents_settings_service';
2020-10-24 23:57:45 +05:30
import axios from '~/lib/utils/axios_utils';
2020-07-28 23:09:34 +05:30
import httpStatusCodes from '~/lib/utils/http_status';
import { refreshCurrentPage } from '~/lib/utils/url_utility';
jest.mock('~/flash');
jest.mock('~/lib/utils/url_utility');
describe('IncidentsSettingsService', () => {
const settingsEndpoint = 'operations/settings';
const webhookUpdateEndpoint = 'webhook/update';
let mock;
let service;
beforeEach(() => {
mock = new AxiosMockAdapter(axios);
service = new IncidentsSettingsService(settingsEndpoint, webhookUpdateEndpoint);
});
afterEach(() => {
mock.restore();
});
describe('updateSettings', () => {
it('should refresh the page on successful update', () => {
mock.onPatch().reply(httpStatusCodes.OK);
return service.updateSettings({}).then(() => {
expect(refreshCurrentPage).toHaveBeenCalled();
});
});
it('should display a flash message on update error', () => {
mock.onPatch().reply(httpStatusCodes.BAD_REQUEST);
return service.updateSettings({}).then(() => {
2021-09-04 01:27:46 +05:30
expect(createFlash).toHaveBeenCalledWith({
message: expect.stringContaining(ERROR_MSG),
});
2020-07-28 23:09:34 +05:30
});
});
});
describe('resetWebhookUrl', () => {
it('should make a call for webhook update', () => {
jest.spyOn(axios, 'post');
mock.onPost().reply(httpStatusCodes.OK);
return service.resetWebhookUrl().then(() => {
expect(axios.post).toHaveBeenCalledWith(webhookUpdateEndpoint);
});
});
});
});