summaryrefslogtreecommitdiff
path: root/spec/frontend/clusters_list/store/actions_spec.js
blob: 70766af3ec4d923710cf916cde7e1ff5a403a9b1 (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
56
57
58
59
60
61
import MockAdapter from 'axios-mock-adapter';
import flashError from '~/flash';
import testAction from 'helpers/vuex_action_helper';
import axios from '~/lib/utils/axios_utils';
import { apiData } from '../mock_data';
import * as types from '~/clusters_list/store/mutation_types';
import * as actions from '~/clusters_list/store/actions';

jest.mock('~/flash.js');

describe('Clusters store actions', () => {
  describe('fetchClusters', () => {
    let mock;

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

    afterEach(() => mock.restore());

    it('should commit SET_CLUSTERS_DATA with received response', done => {
      const headers = {
        'x-total': apiData.clusters.length,
        'x-per-page': 20,
        'x-page': 1,
      };

      const paginationInformation = {
        nextPage: NaN,
        page: 1,
        perPage: 20,
        previousPage: NaN,
        total: apiData.clusters.length,
        totalPages: NaN,
      };

      mock.onGet().reply(200, apiData, headers);

      testAction(
        actions.fetchClusters,
        { endpoint: apiData.endpoint },
        {},
        [
          { type: types.SET_CLUSTERS_DATA, payload: { data: apiData, paginationInformation } },
          { type: types.SET_LOADING_STATE, payload: false },
        ],
        [],
        () => done(),
      );
    });

    it('should show flash on API error', done => {
      mock.onGet().reply(400, 'Not Found');

      testAction(actions.fetchClusters, { endpoint: apiData.endpoint }, {}, [], [], () => {
        expect(flashError).toHaveBeenCalledWith(expect.stringMatching('error'));
        done();
      });
    });
  });
});