debian-mirror-gitlab/spec/frontend/search/store/actions_spec.js

262 lines
9.1 KiB
JavaScript
Raw Normal View History

2021-01-29 00:20:46 +05:30
import MockAdapter from 'axios-mock-adapter';
import testAction from 'helpers/vuex_action_helper';
2021-02-22 17:27:13 +05:30
import Api from '~/api';
2021-03-11 19:13:27 +05:30
import createFlash from '~/flash';
import axios from '~/lib/utils/axios_utils';
import * as urlUtils from '~/lib/utils/url_utility';
2021-01-29 00:20:46 +05:30
import * as actions from '~/search/store/actions';
2021-09-30 23:02:18 +05:30
import { GROUPS_LOCAL_STORAGE_KEY, PROJECTS_LOCAL_STORAGE_KEY } from '~/search/store/constants';
2021-01-29 00:20:46 +05:30
import * as types from '~/search/store/mutation_types';
2021-02-22 17:27:13 +05:30
import createState from '~/search/store/state';
2021-09-30 23:02:18 +05:30
import * as storeUtils from '~/search/store/utils';
import {
MOCK_QUERY,
MOCK_GROUPS,
MOCK_PROJECT,
MOCK_PROJECTS,
MOCK_GROUP,
FRESH_STORED_DATA,
MOCK_FRESH_DATA_RES,
2021-10-27 15:23:28 +05:30
PRELOAD_EXPECTED_MUTATIONS,
2021-09-30 23:02:18 +05:30
PROMISE_ALL_EXPECTED_MUTATIONS,
} from '../mock_data';
2021-01-29 00:20:46 +05:30
jest.mock('~/flash');
jest.mock('~/lib/utils/url_utility', () => ({
setUrlParams: jest.fn(),
2021-02-22 17:27:13 +05:30
joinPaths: jest.fn().mockReturnValue(''),
2021-01-29 00:20:46 +05:30
visitUrl: jest.fn(),
}));
describe('Global Search Store Actions', () => {
let mock;
2021-02-22 17:27:13 +05:30
let state;
2021-01-29 00:20:46 +05:30
2021-09-04 01:27:46 +05:30
const flashCallback = (callCount) => {
expect(createFlash).toHaveBeenCalledTimes(callCount);
2021-01-29 00:20:46 +05:30
createFlash.mockClear();
};
beforeEach(() => {
2021-02-22 17:27:13 +05:30
state = createState({ query: MOCK_QUERY });
2021-01-29 00:20:46 +05:30
mock = new MockAdapter(axios);
});
afterEach(() => {
2021-02-22 17:27:13 +05:30
state = null;
2021-01-29 00:20:46 +05:30
mock.restore();
});
describe.each`
2021-09-04 01:27:46 +05:30
action | axiosMock | type | expectedMutations | flashCallCount
${actions.fetchGroups} | ${{ method: 'onGet', code: 200, res: MOCK_GROUPS }} | ${'success'} | ${[{ type: types.REQUEST_GROUPS }, { type: types.RECEIVE_GROUPS_SUCCESS, payload: MOCK_GROUPS }]} | ${0}
${actions.fetchGroups} | ${{ method: 'onGet', code: 500, res: null }} | ${'error'} | ${[{ type: types.REQUEST_GROUPS }, { type: types.RECEIVE_GROUPS_ERROR }]} | ${1}
${actions.fetchProjects} | ${{ method: 'onGet', code: 200, res: MOCK_PROJECTS }} | ${'success'} | ${[{ type: types.REQUEST_PROJECTS }, { type: types.RECEIVE_PROJECTS_SUCCESS, payload: MOCK_PROJECTS }]} | ${0}
${actions.fetchProjects} | ${{ method: 'onGet', code: 500, res: null }} | ${'error'} | ${[{ type: types.REQUEST_PROJECTS }, { type: types.RECEIVE_PROJECTS_ERROR }]} | ${2}
`(`axios calls`, ({ action, axiosMock, type, expectedMutations, flashCallCount }) => {
2021-01-29 00:20:46 +05:30
describe(action.name, () => {
describe(`on ${type}`, () => {
beforeEach(() => {
mock[axiosMock.method]().replyOnce(axiosMock.code, axiosMock.res);
});
it(`should dispatch the correct mutations`, () => {
2021-09-04 01:27:46 +05:30
return testAction({ action, state, expectedMutations }).then(() =>
flashCallback(flashCallCount),
);
2021-01-29 00:20:46 +05:30
});
});
});
});
2021-09-30 23:02:18 +05:30
describe.each`
2021-10-27 15:23:28 +05:30
action | axiosMock | type | expectedMutations | flashCallCount
${actions.loadFrequentGroups} | ${{ method: 'onGet', code: 200 }} | ${'success'} | ${[PROMISE_ALL_EXPECTED_MUTATIONS.resGroups]} | ${0}
${actions.loadFrequentGroups} | ${{ method: 'onGet', code: 500 }} | ${'error'} | ${[]} | ${1}
${actions.loadFrequentProjects} | ${{ method: 'onGet', code: 200 }} | ${'success'} | ${[PROMISE_ALL_EXPECTED_MUTATIONS.resProjects]} | ${0}
${actions.loadFrequentProjects} | ${{ method: 'onGet', code: 500 }} | ${'error'} | ${[]} | ${1}
`('Promise.all calls', ({ action, axiosMock, type, expectedMutations, flashCallCount }) => {
describe(action.name, () => {
describe(`on ${type}`, () => {
beforeEach(() => {
state.frequentItems = {
[GROUPS_LOCAL_STORAGE_KEY]: FRESH_STORED_DATA,
[PROJECTS_LOCAL_STORAGE_KEY]: FRESH_STORED_DATA,
};
mock[axiosMock.method]().reply(axiosMock.code, MOCK_FRESH_DATA_RES);
});
2021-09-30 23:02:18 +05:30
2021-10-27 15:23:28 +05:30
it(`should dispatch the correct mutations`, () => {
return testAction({ action, state, expectedMutations }).then(() => {
flashCallback(flashCallCount);
2021-09-30 23:02:18 +05:30
});
});
});
2021-10-27 15:23:28 +05:30
});
});
2021-09-30 23:02:18 +05:30
describe('getGroupsData', () => {
const mockCommit = () => {};
beforeEach(() => {
jest.spyOn(Api, 'groups').mockResolvedValue(MOCK_GROUPS);
});
it('calls Api.groups with order_by set to similarity', () => {
actions.fetchGroups({ commit: mockCommit }, 'test');
expect(Api.groups).toHaveBeenCalledWith('test', { order_by: 'similarity' });
});
});
2021-02-22 17:27:13 +05:30
describe('getProjectsData', () => {
const mockCommit = () => {};
beforeEach(() => {
jest.spyOn(Api, 'groupProjects').mockResolvedValue(MOCK_PROJECTS);
jest.spyOn(Api, 'projects').mockResolvedValue(MOCK_PROJECT);
});
describe('when groupId is set', () => {
2021-09-30 23:02:18 +05:30
it('calls Api.groupProjects with expected parameters', () => {
2021-02-22 17:27:13 +05:30
actions.fetchProjects({ commit: mockCommit, state });
2021-09-30 23:02:18 +05:30
expect(Api.groupProjects).toHaveBeenCalledWith(
state.query.group_id,
state.query.search,
{
order_by: 'similarity',
include_subgroups: true,
with_shared: false,
},
expect.any(Function),
);
2021-02-22 17:27:13 +05:30
expect(Api.projects).not.toHaveBeenCalled();
});
});
describe('when groupId is not set', () => {
beforeEach(() => {
state = createState({ query: { group_id: null } });
});
it('calls Api.projects', () => {
actions.fetchProjects({ commit: mockCommit, state });
expect(Api.groupProjects).not.toHaveBeenCalled();
2021-11-11 11:23:49 +05:30
expect(Api.projects).toHaveBeenCalledWith(
state.query.search,
{
order_by: 'similarity',
},
expect.any(Function),
);
2021-02-22 17:27:13 +05:30
});
});
});
2021-01-29 00:20:46 +05:30
describe('setQuery', () => {
const payload = { key: 'key1', value: 'value1' };
2021-02-22 17:27:13 +05:30
it('calls the SET_QUERY mutation', () => {
return testAction({
action: actions.setQuery,
payload,
state,
expectedMutations: [{ type: types.SET_QUERY, payload }],
});
2021-01-29 00:20:46 +05:30
});
});
describe('applyQuery', () => {
it('calls visitUrl and setParams with the state.query', () => {
2021-02-22 17:27:13 +05:30
return testAction(actions.applyQuery, null, state, [], [], () => {
expect(urlUtils.setUrlParams).toHaveBeenCalledWith({ ...state.query, page: null });
expect(urlUtils.visitUrl).toHaveBeenCalled();
2021-01-29 00:20:46 +05:30
});
});
});
describe('resetQuery', () => {
it('calls visitUrl and setParams with empty values', () => {
2021-02-22 17:27:13 +05:30
return testAction(actions.resetQuery, null, state, [], [], () => {
expect(urlUtils.setUrlParams).toHaveBeenCalledWith({
2021-01-29 00:20:46 +05:30
...state.query,
page: null,
state: null,
confidential: null,
});
2021-02-22 17:27:13 +05:30
expect(urlUtils.visitUrl).toHaveBeenCalled();
2021-01-29 00:20:46 +05:30
});
});
});
2021-09-30 23:02:18 +05:30
2021-10-27 15:23:28 +05:30
describe('preloadStoredFrequentItems', () => {
beforeEach(() => {
storeUtils.loadDataFromLS = jest.fn().mockReturnValue(FRESH_STORED_DATA);
});
it('calls preloadStoredFrequentItems for both groups and projects and commits LOAD_FREQUENT_ITEMS', async () => {
await testAction({
action: actions.preloadStoredFrequentItems,
state,
expectedMutations: PRELOAD_EXPECTED_MUTATIONS,
});
expect(storeUtils.loadDataFromLS).toHaveBeenCalledTimes(2);
expect(storeUtils.loadDataFromLS).toHaveBeenCalledWith(GROUPS_LOCAL_STORAGE_KEY);
expect(storeUtils.loadDataFromLS).toHaveBeenCalledWith(PROJECTS_LOCAL_STORAGE_KEY);
});
});
2021-09-30 23:02:18 +05:30
describe('setFrequentGroup', () => {
beforeEach(() => {
2021-10-27 15:23:28 +05:30
storeUtils.setFrequentItemToLS = jest.fn().mockReturnValue(FRESH_STORED_DATA);
2021-09-30 23:02:18 +05:30
});
2021-10-27 15:23:28 +05:30
it(`calls setFrequentItemToLS with ${GROUPS_LOCAL_STORAGE_KEY} and item data then commits LOAD_FREQUENT_ITEMS`, async () => {
2021-09-30 23:02:18 +05:30
await testAction({
action: actions.setFrequentGroup,
2021-10-27 15:23:28 +05:30
expectedMutations: [
{
type: types.LOAD_FREQUENT_ITEMS,
payload: { key: GROUPS_LOCAL_STORAGE_KEY, data: FRESH_STORED_DATA },
},
],
2021-09-30 23:02:18 +05:30
payload: MOCK_GROUP,
state,
});
expect(storeUtils.setFrequentItemToLS).toHaveBeenCalledWith(
GROUPS_LOCAL_STORAGE_KEY,
state.frequentItems,
MOCK_GROUP,
);
});
});
describe('setFrequentProject', () => {
beforeEach(() => {
2021-10-27 15:23:28 +05:30
storeUtils.setFrequentItemToLS = jest.fn().mockReturnValue(FRESH_STORED_DATA);
2021-09-30 23:02:18 +05:30
});
it(`calls setFrequentItemToLS with ${PROJECTS_LOCAL_STORAGE_KEY} and item data`, async () => {
await testAction({
action: actions.setFrequentProject,
2021-10-27 15:23:28 +05:30
expectedMutations: [
{
type: types.LOAD_FREQUENT_ITEMS,
payload: { key: PROJECTS_LOCAL_STORAGE_KEY, data: FRESH_STORED_DATA },
},
],
2021-09-30 23:02:18 +05:30
payload: MOCK_PROJECT,
state,
});
expect(storeUtils.setFrequentItemToLS).toHaveBeenCalledWith(
PROJECTS_LOCAL_STORAGE_KEY,
state.frequentItems,
MOCK_PROJECT,
);
});
});
2021-01-29 00:20:46 +05:30
});