summaryrefslogtreecommitdiff
path: root/spec/frontend/feature_highlight/feature_highlight_helper_spec.js
blob: 4d5cb26810e63b36f776a87db9518089ca3aa13b (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
import MockAdapter from 'axios-mock-adapter';
import { dismiss } from '~/feature_highlight/feature_highlight_helper';
import { createAlert } from '~/flash';
import axios from '~/lib/utils/axios_utils';
import { HTTP_STATUS_CREATED, HTTP_STATUS_INTERNAL_SERVER_ERROR } from '~/lib/utils/http_status';

jest.mock('~/flash');

describe('feature highlight helper', () => {
  describe('dismiss', () => {
    let mockAxios;
    const endpoint = '/-/callouts/dismiss';
    const highlightId = '123';

    beforeEach(() => {
      mockAxios = new MockAdapter(axios);
    });

    afterEach(() => {
      mockAxios.reset();
    });

    it('calls persistent dismissal endpoint with highlightId', async () => {
      mockAxios.onPost(endpoint, { feature_name: highlightId }).replyOnce(HTTP_STATUS_CREATED);

      await expect(dismiss(endpoint, highlightId)).resolves.toEqual(expect.anything());
    });

    it('triggers flash when dismiss request fails', async () => {
      mockAxios
        .onPost(endpoint, { feature_name: highlightId })
        .replyOnce(HTTP_STATUS_INTERNAL_SERVER_ERROR);

      await dismiss(endpoint, highlightId);

      expect(createAlert).toHaveBeenCalledWith({
        message:
          'An error occurred while dismissing the feature highlight. Refresh the page and try dismissing again.',
      });
    });
  });
});