2019-12-26 22:10:19 +05:30
|
|
|
import getters from '~/boards/stores/getters';
|
2020-11-24 15:15:51 +05:30
|
|
|
import { inactiveId } from '~/boards/constants';
|
|
|
|
import { mockIssue, mockIssue2, mockIssues, mockIssuesByListId, issues } from '../mock_data';
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
describe('Boards - Getters', () => {
|
|
|
|
describe('getLabelToggleState', () => {
|
|
|
|
it('should return "on" when isShowingLabels is true', () => {
|
|
|
|
const state = {
|
|
|
|
isShowingLabels: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.getLabelToggleState(state)).toBe('on');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return "off" when isShowingLabels is false', () => {
|
|
|
|
const state = {
|
|
|
|
isShowingLabels: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.getLabelToggleState(state)).toBe('off');
|
|
|
|
});
|
|
|
|
});
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
describe('isSidebarOpen', () => {
|
|
|
|
it('returns true when activeId is not equal to 0', () => {
|
|
|
|
const state = {
|
|
|
|
activeId: 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.isSidebarOpen(state)).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns false when activeId is equal to 0', () => {
|
|
|
|
const state = {
|
|
|
|
activeId: inactiveId,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.isSidebarOpen(state)).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('isSwimlanesOn', () => {
|
|
|
|
afterEach(() => {
|
|
|
|
window.gon = { features: {} };
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when boardsWithSwimlanes is true', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
window.gon = { features: { boardsWithSwimlanes: true } };
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when isShowingEpicsSwimlanes is true', () => {
|
|
|
|
it('returns true', () => {
|
|
|
|
const state = {
|
|
|
|
isShowingEpicsSwimlanes: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.isSwimlanesOn(state)).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when isShowingEpicsSwimlanes is false', () => {
|
|
|
|
it('returns false', () => {
|
|
|
|
const state = {
|
|
|
|
isShowingEpicsSwimlanes: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.isSwimlanesOn(state)).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when boardsWithSwimlanes is false', () => {
|
|
|
|
describe('when isShowingEpicsSwimlanes is true', () => {
|
|
|
|
it('returns false', () => {
|
|
|
|
const state = {
|
|
|
|
isShowingEpicsSwimlanes: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.isSwimlanesOn(state)).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when isShowingEpicsSwimlanes is false', () => {
|
|
|
|
it('returns false', () => {
|
|
|
|
const state = {
|
|
|
|
isShowingEpicsSwimlanes: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getters.isSwimlanesOn(state)).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getIssueById', () => {
|
|
|
|
const state = { issues: { '1': 'issue' } };
|
|
|
|
|
|
|
|
it.each`
|
|
|
|
id | expected
|
|
|
|
${'1'} | ${'issue'}
|
|
|
|
${''} | ${{}}
|
|
|
|
`('returns $expected when $id is passed to state', ({ id, expected }) => {
|
|
|
|
expect(getters.getIssueById(state)(id)).toEqual(expected);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getActiveIssue', () => {
|
|
|
|
it.each`
|
|
|
|
id | expected
|
|
|
|
${'1'} | ${'issue'}
|
|
|
|
${''} | ${{}}
|
|
|
|
`('returns $expected when $id is passed to state', ({ id, expected }) => {
|
|
|
|
const state = { issues: { '1': 'issue' }, activeId: id };
|
|
|
|
|
|
|
|
expect(getters.getActiveIssue(state)).toEqual(expected);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getIssues', () => {
|
|
|
|
const boardsState = {
|
|
|
|
issuesByListId: mockIssuesByListId,
|
|
|
|
issues,
|
|
|
|
};
|
|
|
|
it('returns issues for a given listId', () => {
|
|
|
|
const getIssueById = issueId => [mockIssue, mockIssue2].find(({ id }) => id === issueId);
|
|
|
|
|
|
|
|
expect(getters.getIssues(boardsState, { getIssueById })('gid://gitlab/List/2')).toEqual(
|
|
|
|
mockIssues,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2019-12-26 22:10:19 +05:30
|
|
|
});
|