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

describe('Feature flags New Module Mutations', () => {
  let stateCopy;

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

  describe('SET_ENDPOINT', () => {
    it('should set endpoint', () => {
      mutations[types.SET_ENDPOINT](stateCopy, 'feature_flags.json');

      expect(stateCopy.endpoint).toEqual('feature_flags.json');
    });
  });

  describe('SET_PATH', () => {
    it('should set provided options', () => {
      mutations[types.SET_PATH](stateCopy, 'feature_flags');

      expect(stateCopy.path).toEqual('feature_flags');
    });
  });

  describe('REQUEST_CREATE_FEATURE_FLAG', () => {
    it('should set isSendingRequest to true', () => {
      mutations[types.REQUEST_CREATE_FEATURE_FLAG](stateCopy);

      expect(stateCopy.isSendingRequest).toEqual(true);
    });

    it('should set error to an empty array', () => {
      mutations[types.REQUEST_CREATE_FEATURE_FLAG](stateCopy);

      expect(stateCopy.error).toEqual([]);
    });
  });

  describe('RECEIVE_CREATE_FEATURE_FLAG_SUCCESS', () => {
    it('should set isSendingRequest to false', () => {
      mutations[types.RECEIVE_CREATE_FEATURE_FLAG_SUCCESS](stateCopy);

      expect(stateCopy.isSendingRequest).toEqual(false);
    });
  });

  describe('RECEIVE_CREATE_FEATURE_FLAG_ERROR', () => {
    beforeEach(() => {
      mutations[types.RECEIVE_CREATE_FEATURE_FLAG_ERROR](stateCopy, {
        message: ['Name is required'],
      });
    });

    it('should set isSendingRequest to false', () => {
      expect(stateCopy.isSendingRequest).toEqual(false);
    });

    it('should set hasError to true', () => {
      expect(stateCopy.error).toEqual(['Name is required']);
    });
  });
});