summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/settings/store/actions_spec.js
blob: f92d10d087fa041adcc63b53c2f41d91360fac72 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import Api from '~/api';
import testAction from 'helpers/vuex_action_helper';
import * as actions from '~/registry/settings/store/actions';
import * as types from '~/registry/settings/store/mutation_types';

describe('Actions Registry Store', () => {
  describe.each`
    actionName           | mutationName               | payload
    ${'setInitialState'} | ${types.SET_INITIAL_STATE} | ${'foo'}
    ${'updateSettings'}  | ${types.UPDATE_SETTINGS}   | ${'foo'}
    ${'toggleLoading'}   | ${types.TOGGLE_LOADING}    | ${undefined}
    ${'resetSettings'}   | ${types.RESET_SETTINGS}    | ${undefined}
  `(
    '$actionName invokes $mutationName with payload $payload',
    ({ actionName, mutationName, payload }) => {
      it('should set state', done => {
        testAction(actions[actionName], payload, {}, [{ type: mutationName, payload }], [], done);
      });
    },
  );

  describe('receiveSettingsSuccess', () => {
    it('calls SET_SETTINGS', () => {
      testAction(
        actions.receiveSettingsSuccess,
        'foo',
        {},
        [{ type: types.SET_SETTINGS, payload: 'foo' }],
        [],
      );
    });
  });

  describe('fetchSettings', () => {
    const state = {
      projectId: 'bar',
    };

    const payload = {
      data: {
        container_expiration_policy: 'foo',
      },
    };

    it('should fetch the data from the API', done => {
      Api.project = jest.fn().mockResolvedValue(payload);
      testAction(
        actions.fetchSettings,
        null,
        state,
        [],
        [
          { type: 'toggleLoading' },
          { type: 'receiveSettingsSuccess', payload: payload.data.container_expiration_policy },
          { type: 'toggleLoading' },
        ],
        done,
      );
    });
  });

  describe('saveSettings', () => {
    const state = {
      projectId: 'bar',
      settings: 'baz',
    };

    const payload = {
      data: {
        tag_expiration_policies: 'foo',
      },
    };

    it('should fetch the data from the API', done => {
      Api.updateProject = jest.fn().mockResolvedValue(payload);
      testAction(
        actions.saveSettings,
        null,
        state,
        [],
        [
          { type: 'toggleLoading' },
          { type: 'receiveSettingsSuccess', payload: payload.data.container_expiration_policy },
          { type: 'toggleLoading' },
        ],
        done,
      );
    });
  });
});