summaryrefslogtreecommitdiff
path: root/spec/frontend/integrations/edit/store/mutations_spec.js
blob: 641547550d175c6748582be96a93962e53b16a17 (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
import * as types from '~/integrations/edit/store/mutation_types';
import mutations from '~/integrations/edit/store/mutations';
import createState from '~/integrations/edit/store/state';

describe('Integration form store mutations', () => {
  let state;

  beforeEach(() => {
    state = createState();
  });

  describe(`${types.SET_OVERRIDE}`, () => {
    it('sets override', () => {
      mutations[types.SET_OVERRIDE](state, true);

      expect(state.override).toBe(true);
    });
  });

  describe(`${types.SET_IS_RESETTING}`, () => {
    it('sets isResetting', () => {
      mutations[types.SET_IS_RESETTING](state, true);

      expect(state.isResetting).toBe(true);
    });
  });

  describe(`${types.REQUEST_RESET_INTEGRATION}`, () => {
    it('sets isResetting', () => {
      mutations[types.REQUEST_RESET_INTEGRATION](state);

      expect(state.isResetting).toBe(true);
    });
  });

  describe(`${types.RECEIVE_RESET_INTEGRATION_ERROR}`, () => {
    it('sets isResetting', () => {
      mutations[types.RECEIVE_RESET_INTEGRATION_ERROR](state);

      expect(state.isResetting).toBe(false);
    });
  });

  describe(`${types.SET_JIRA_ISSUE_TYPES}`, () => {
    it('sets jiraIssueTypes', () => {
      const jiraIssueTypes = ['issue', 'epic'];
      mutations[types.SET_JIRA_ISSUE_TYPES](state, jiraIssueTypes);

      expect(state.jiraIssueTypes).toBe(jiraIssueTypes);
    });
  });

  describe(`${types.SET_IS_LOADING_JIRA_ISSUE_TYPES}`, () => {
    it.each([true, false])('sets isLoadingJiraIssueTypes to "%s"', (isLoading) => {
      mutations[types.SET_IS_LOADING_JIRA_ISSUE_TYPES](state, isLoading);

      expect(state.isLoadingJiraIssueTypes).toBe(isLoading);
    });
  });

  describe(`${types.SET_JIRA_ISSUE_TYPES_ERROR_MESSAGE}`, () => {
    it('sets loadingJiraIssueTypesErrorMessage', () => {
      const errorMessage = 'something went wrong';
      mutations[types.SET_JIRA_ISSUE_TYPES_ERROR_MESSAGE](state, errorMessage);

      expect(state.loadingJiraIssueTypesErrorMessage).toBe(errorMessage);
    });
  });
});