debian-mirror-gitlab/spec/frontend/integrations/edit/store/getters_spec.js

72 lines
1.9 KiB
JavaScript
Raw Normal View History

2020-07-28 23:09:34 +05:30
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' };
2020-11-24 15:15:51 +05:30
const defaultState = { ...mockIntegrationProps, type: 'DefaultState' };
2020-07-28 23:09:34 +05:30
beforeEach(() => {
state = createState({ customState });
});
describe('isInheriting', () => {
2020-11-24 15:15:51 +05:30
describe('when defaultState is null', () => {
2020-07-28 23:09:34 +05:30
it('returns false', () => {
expect(isInheriting(state)).toBe(false);
});
});
2020-11-24 15:15:51 +05:30
describe('when defaultState is an object', () => {
2020-07-28 23:09:34 +05:30
beforeEach(() => {
2020-11-24 15:15:51 +05:30
state.defaultState = defaultState;
2020-07-28 23:09:34 +05:30
});
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(() => {
2020-11-24 15:15:51 +05:30
state.defaultState = defaultState;
2020-07-28 23:09:34 +05:30
});
2020-11-24 15:15:51 +05:30
it('equals defaultState if inheriting', () => {
expect(propsSource(state, { isInheriting: true })).toEqual(defaultState);
2020-07-28 23:09:34 +05:30
});
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');
});
});
});