Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getters_spec.js « store « edit « integrations « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3353e0c84cc19c48019539abc84dd3fcaea1145e (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
import { currentKey, isInheriting, propsSource } from '~/integrations/edit/store/getters';
import createState from '~/integrations/edit/store/state';
import { mockIntegrationProps } from '../mock_data';

describe('Integration form store getters', () => {
  let state;
  const customState = { ...mockIntegrationProps, type: 'CustomState' };
  const defaultState = { ...mockIntegrationProps, type: 'DefaultState' };

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

  describe('isInheriting', () => {
    describe('when defaultState is null', () => {
      it('returns false', () => {
        expect(isInheriting(state)).toBe(false);
      });
    });

    describe('when defaultState is an object', () => {
      beforeEach(() => {
        state.defaultState = defaultState;
      });

      describe('when override is false', () => {
        beforeEach(() => {
          state.override = false;
        });

        it('returns false', () => {
          expect(isInheriting(state)).toBe(true);
        });
      });

      describe('when override is true', () => {
        beforeEach(() => {
          state.override = true;
        });

        it('returns true', () => {
          expect(isInheriting(state)).toBe(false);
        });
      });
    });
  });

  describe('propsSource', () => {
    beforeEach(() => {
      state.defaultState = defaultState;
    });

    it('equals defaultState if inheriting', () => {
      expect(propsSource(state, { isInheriting: true })).toEqual(defaultState);
    });

    it('equals customState if not inheriting', () => {
      expect(propsSource(state, { isInheriting: false })).toEqual(customState);
    });
  });

  describe('currentKey', () => {
    it('equals `admin` if inheriting', () => {
      expect(currentKey(state, { isInheriting: true })).toEqual('admin');
    });

    it('equals `custom` if not inheriting', () => {
      expect(currentKey(state, { isInheriting: false })).toEqual('custom');
    });
  });
});