summaryrefslogtreecommitdiff
path: root/spec/frontend/incidents_settings/components/incidents_settings_service_spec.js
blob: 5476e895c684b9d790a17c6926c7221010518bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import AxiosMockAdapter from 'axios-mock-adapter';
import { deprecatedCreateFlash as createFlash } from '~/flash';
import { ERROR_MSG } from '~/incidents_settings/constants';
import IncidentsSettingsService from '~/incidents_settings/incidents_settings_service';
import axios from '~/lib/utils/axios_utils';
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(() => {
        expect(createFlash).toHaveBeenCalledWith(expect.stringContaining(ERROR_MSG), 'alert');
      });
    });
  });

  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);
      });
    });
  });
});