summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/stores/modules/file_templates/mutations_spec.js
blob: 8e0e3ae99a1d5d5e598a7be03d1aa7909ca9a989 (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 createState from '~/ide/stores/modules/file_templates/state';
import * as types from '~/ide/stores/modules/file_templates/mutation_types';
import mutations from '~/ide/stores/modules/file_templates/mutations';

describe('IDE file templates mutations', () => {
  let state;

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

  describe(types.REQUEST_TEMPLATE_TYPES, () => {
    it('sets isLoading', () => {
      mutations[types.REQUEST_TEMPLATE_TYPES](state);

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

  describe(types.RECEIVE_TEMPLATE_TYPES_ERROR, () => {
    it('sets isLoading', () => {
      state.isLoading = true;

      mutations[types.RECEIVE_TEMPLATE_TYPES_ERROR](state);

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

  describe(types.RECEIVE_TEMPLATE_TYPES_SUCCESS, () => {
    it('sets isLoading to false', () => {
      state.isLoading = true;

      mutations[types.RECEIVE_TEMPLATE_TYPES_SUCCESS](state, []);

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

    it('sets templates', () => {
      mutations[types.RECEIVE_TEMPLATE_TYPES_SUCCESS](state, ['test']);

      expect(state.templates).toEqual(['test']);
    });
  });

  describe(types.SET_SELECTED_TEMPLATE_TYPE, () => {
    it('sets selectedTemplateType', () => {
      mutations[types.SET_SELECTED_TEMPLATE_TYPE](state, 'type');

      expect(state.selectedTemplateType).toBe('type');
    });

    it('clears templates', () => {
      state.templates = ['test'];

      mutations[types.SET_SELECTED_TEMPLATE_TYPE](state, 'type');

      expect(state.templates).toEqual([]);
    });
  });

  describe(types.SET_UPDATE_SUCCESS, () => {
    it('sets updateSuccess', () => {
      mutations[types.SET_UPDATE_SUCCESS](state, true);

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