2021-02-14 13:09:20 -05:00
|
|
|
import * as types from '~/search/store/mutation_types';
|
2020-10-30 14:08:56 -04:00
|
|
|
import mutations from '~/search/store/mutations';
|
|
|
|
import createState from '~/search/store/state';
|
2021-02-12 04:08:48 -05:00
|
|
|
import { MOCK_QUERY, MOCK_GROUPS, MOCK_PROJECTS } from '../mock_data';
|
2020-10-30 14:08:56 -04:00
|
|
|
|
|
|
|
describe('Global Search Store Mutations', () => {
|
|
|
|
let state;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
state = createState({ query: MOCK_QUERY });
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('REQUEST_GROUPS', () => {
|
|
|
|
it('sets fetchingGroups to true', () => {
|
|
|
|
mutations[types.REQUEST_GROUPS](state);
|
|
|
|
|
|
|
|
expect(state.fetchingGroups).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('RECEIVE_GROUPS_SUCCESS', () => {
|
|
|
|
it('sets fetchingGroups to false and sets groups', () => {
|
|
|
|
mutations[types.RECEIVE_GROUPS_SUCCESS](state, MOCK_GROUPS);
|
|
|
|
|
|
|
|
expect(state.fetchingGroups).toBe(false);
|
|
|
|
expect(state.groups).toBe(MOCK_GROUPS);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('RECEIVE_GROUPS_ERROR', () => {
|
|
|
|
it('sets fetchingGroups to false and clears groups', () => {
|
|
|
|
mutations[types.RECEIVE_GROUPS_ERROR](state);
|
|
|
|
|
|
|
|
expect(state.fetchingGroups).toBe(false);
|
|
|
|
expect(state.groups).toEqual([]);
|
|
|
|
});
|
|
|
|
});
|
2020-11-06 01:08:51 -05:00
|
|
|
|
2020-12-15 07:10:17 -05:00
|
|
|
describe('REQUEST_PROJECTS', () => {
|
|
|
|
it('sets fetchingProjects to true', () => {
|
|
|
|
mutations[types.REQUEST_PROJECTS](state);
|
|
|
|
|
|
|
|
expect(state.fetchingProjects).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('RECEIVE_PROJECTS_SUCCESS', () => {
|
|
|
|
it('sets fetchingProjects to false and sets projects', () => {
|
|
|
|
mutations[types.RECEIVE_PROJECTS_SUCCESS](state, MOCK_PROJECTS);
|
|
|
|
|
|
|
|
expect(state.fetchingProjects).toBe(false);
|
|
|
|
expect(state.projects).toBe(MOCK_PROJECTS);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('RECEIVE_PROJECTS_ERROR', () => {
|
|
|
|
it('sets fetchingProjects to false and clears projects', () => {
|
|
|
|
mutations[types.RECEIVE_PROJECTS_ERROR](state);
|
|
|
|
|
|
|
|
expect(state.fetchingProjects).toBe(false);
|
|
|
|
expect(state.projects).toEqual([]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-11-06 01:08:51 -05:00
|
|
|
describe('SET_QUERY', () => {
|
|
|
|
const payload = { key: 'key1', value: 'value1' };
|
|
|
|
|
|
|
|
it('sets query key to value', () => {
|
|
|
|
mutations[types.SET_QUERY](state, payload);
|
|
|
|
|
|
|
|
expect(state.query[payload.key]).toBe(payload.value);
|
|
|
|
});
|
|
|
|
});
|
2021-06-30 02:07:17 -04:00
|
|
|
|
2021-10-21 02:12:30 -04:00
|
|
|
describe('SET_SIDEBAR_DIRTY', () => {
|
|
|
|
const value = true;
|
|
|
|
|
|
|
|
it('sets sidebarDirty to the value', () => {
|
|
|
|
mutations[types.SET_SIDEBAR_DIRTY](state, value);
|
|
|
|
|
|
|
|
expect(state.sidebarDirty).toBe(value);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-06-30 02:07:17 -04:00
|
|
|
describe('LOAD_FREQUENT_ITEMS', () => {
|
|
|
|
it('sets frequentItems[key] to data', () => {
|
|
|
|
const payload = { key: 'test-key', data: [1, 2, 3] };
|
|
|
|
mutations[types.LOAD_FREQUENT_ITEMS](state, payload);
|
|
|
|
|
|
|
|
expect(state.frequentItems[payload.key]).toStrictEqual(payload.data);
|
|
|
|
});
|
|
|
|
});
|
2020-10-30 14:08:56 -04:00
|
|
|
});
|