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

describe('CI variable list mutations', () => {
  let stateCopy;

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

  describe('TOGGLE_VALUES', () => {
    it('should toggle state', () => {
      const valuesHidden = false;

      mutations[types.TOGGLE_VALUES](stateCopy, valuesHidden);

      expect(stateCopy.valuesHidden).toEqual(valuesHidden);
    });
  });

  describe('VARIABLE_BEING_EDITED', () => {
    it('should set variable that is being edited', () => {
      const variableBeingEdited = {
        environment_scope: '*',
        id: 63,
        key: 'test_var',
        masked: false,
        protected: false,
        value: 'test_val',
        variable_type: 'env_var',
      };

      mutations[types.VARIABLE_BEING_EDITED](stateCopy, variableBeingEdited);

      expect(stateCopy.variableBeingEdited).toEqual(variableBeingEdited);
    });
  });

  describe('RESET_EDITING', () => {
    it('should reset variableBeingEdited to null', () => {
      mutations[types.RESET_EDITING](stateCopy);

      expect(stateCopy.variableBeingEdited).toEqual(null);
    });
  });

  describe('CLEAR_MODAL', () => {
    it('should clear modal state ', () => {
      const modalState = {
        variable_type: 'Variable',
        key: '',
        secret_value: '',
        protected: false,
        masked: false,
        environment_scope: 'All environments',
      };

      mutations[types.CLEAR_MODAL](stateCopy);

      expect(stateCopy.variable).toEqual(modalState);
    });
  });
});