debian-mirror-gitlab/spec/frontend/cycle_analytics/store/mutations_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

133 lines
6.5 KiB
JavaScript
Raw Normal View History

2021-09-30 23:02:18 +05:30
import { useFakeDate } from 'helpers/fake_date';
2021-06-08 01:23:25 +05:30
import * as types from '~/cycle_analytics/store/mutation_types';
import mutations from '~/cycle_analytics/store/mutations';
2021-11-18 22:05:49 +05:30
import {
PAGINATION_SORT_FIELD_END_EVENT,
PAGINATION_SORT_DIRECTION_DESC,
} from '~/cycle_analytics/constants';
2021-09-04 01:27:46 +05:30
import {
selectedStage,
2021-10-27 15:23:28 +05:30
rawIssueEvents,
issueEvents,
2021-09-04 01:27:46 +05:30
selectedValueStream,
rawValueStreamStages,
valueStreamStages,
2021-09-30 23:02:18 +05:30
rawStageMedians,
formattedStageMedians,
2021-10-27 15:23:28 +05:30
rawStageCounts,
stageCounts,
2021-11-18 22:05:49 +05:30
initialPaginationState as pagination,
2021-09-04 01:27:46 +05:30
} from '../mock_data';
2021-06-08 01:23:25 +05:30
let state;
2021-10-27 15:23:28 +05:30
const rawEvents = rawIssueEvents.events;
const convertedEvents = issueEvents.events;
2021-06-08 01:23:25 +05:30
const mockRequestPath = 'fake/request/path';
2021-09-30 23:02:18 +05:30
const mockCreatedAfter = '2020-06-18';
const mockCreatedBefore = '2020-07-18';
2021-06-08 01:23:25 +05:30
describe('Project Value Stream Analytics mutations', () => {
2021-09-30 23:02:18 +05:30
useFakeDate(2020, 6, 18);
2021-06-08 01:23:25 +05:30
beforeEach(() => {
2021-11-18 22:05:49 +05:30
state = { pagination };
2021-06-08 01:23:25 +05:30
});
afterEach(() => {
state = null;
});
it.each`
2022-08-27 11:52:29 +05:30
mutation | stateKey | value
${types.REQUEST_VALUE_STREAMS} | ${'valueStreams'} | ${[]}
${types.RECEIVE_VALUE_STREAMS_ERROR} | ${'valueStreams'} | ${[]}
${types.REQUEST_VALUE_STREAM_STAGES} | ${'stages'} | ${[]}
${types.RECEIVE_VALUE_STREAM_STAGES_ERROR} | ${'stages'} | ${[]}
${types.REQUEST_STAGE_DATA} | ${'isLoadingStage'} | ${true}
${types.REQUEST_STAGE_DATA} | ${'isEmptyStage'} | ${false}
${types.REQUEST_STAGE_DATA} | ${'selectedStageEvents'} | ${[]}
${types.RECEIVE_STAGE_DATA_SUCCESS} | ${'isLoadingStage'} | ${false}
${types.RECEIVE_STAGE_DATA_SUCCESS} | ${'selectedStageEvents'} | ${[]}
${types.RECEIVE_STAGE_DATA_ERROR} | ${'isLoadingStage'} | ${false}
${types.RECEIVE_STAGE_DATA_ERROR} | ${'selectedStageEvents'} | ${[]}
${types.RECEIVE_STAGE_DATA_ERROR} | ${'isEmptyStage'} | ${true}
${types.REQUEST_STAGE_MEDIANS} | ${'medians'} | ${{}}
${types.RECEIVE_STAGE_MEDIANS_ERROR} | ${'medians'} | ${{}}
${types.REQUEST_STAGE_COUNTS} | ${'stageCounts'} | ${{}}
${types.RECEIVE_STAGE_COUNTS_ERROR} | ${'stageCounts'} | ${{}}
${types.SET_NO_ACCESS_ERROR} | ${'hasNoAccessError'} | ${true}
2021-06-08 01:23:25 +05:30
`('$mutation will set $stateKey to $value', ({ mutation, stateKey, value }) => {
2021-10-27 15:23:28 +05:30
mutations[mutation](state);
2021-06-08 01:23:25 +05:30
expect(state).toMatchObject({ [stateKey]: value });
});
2021-11-11 11:23:49 +05:30
const mockSetDatePayload = { createdAfter: mockCreatedAfter, createdBefore: mockCreatedBefore };
2021-10-27 15:23:28 +05:30
const mockInitialPayload = {
endpoints: { requestPath: mockRequestPath },
currentGroup: { title: 'cool-group' },
id: 1337,
2021-11-11 11:23:49 +05:30
...mockSetDatePayload,
2021-10-27 15:23:28 +05:30
};
const mockInitializedObj = {
endpoints: { requestPath: mockRequestPath },
2021-11-11 11:23:49 +05:30
...mockSetDatePayload,
2021-10-27 15:23:28 +05:30
};
2021-06-08 01:23:25 +05:30
it.each`
2021-10-27 15:23:28 +05:30
mutation | stateKey | value
${types.INITIALIZE_VSA} | ${'endpoints'} | ${{ requestPath: mockRequestPath }}
${types.INITIALIZE_VSA} | ${'createdAfter'} | ${mockCreatedAfter}
${types.INITIALIZE_VSA} | ${'createdBefore'} | ${mockCreatedBefore}
`('$mutation will set $stateKey', ({ mutation, stateKey, value }) => {
mutations[mutation](state, { ...mockInitialPayload });
expect(state).toMatchObject({ ...mockInitializedObj, [stateKey]: value });
});
it.each`
2021-11-18 22:05:49 +05:30
mutation | payload | stateKey | value
${types.SET_DATE_RANGE} | ${mockSetDatePayload} | ${'createdAfter'} | ${mockCreatedAfter}
${types.SET_DATE_RANGE} | ${mockSetDatePayload} | ${'createdBefore'} | ${mockCreatedBefore}
${types.SET_LOADING} | ${true} | ${'isLoading'} | ${true}
${types.SET_LOADING} | ${false} | ${'isLoading'} | ${false}
${types.SET_SELECTED_VALUE_STREAM} | ${selectedValueStream} | ${'selectedValueStream'} | ${selectedValueStream}
${types.SET_PAGINATION} | ${pagination} | ${'pagination'} | ${{ ...pagination, sort: PAGINATION_SORT_FIELD_END_EVENT, direction: PAGINATION_SORT_DIRECTION_DESC }}
${types.SET_PAGINATION} | ${{ ...pagination, sort: 'duration', direction: 'asc' }} | ${'pagination'} | ${{ ...pagination, sort: 'duration', direction: 'asc' }}
2021-12-11 22:18:48 +05:30
${types.SET_SELECTED_STAGE} | ${selectedStage} | ${'selectedStage'} | ${selectedStage}
2021-11-18 22:05:49 +05:30
${types.RECEIVE_VALUE_STREAMS_SUCCESS} | ${[selectedValueStream]} | ${'valueStreams'} | ${[selectedValueStream]}
${types.RECEIVE_VALUE_STREAM_STAGES_SUCCESS} | ${{ stages: rawValueStreamStages }} | ${'stages'} | ${valueStreamStages}
${types.RECEIVE_STAGE_MEDIANS_SUCCESS} | ${rawStageMedians} | ${'medians'} | ${formattedStageMedians}
${types.RECEIVE_STAGE_COUNTS_SUCCESS} | ${rawStageCounts} | ${'stageCounts'} | ${stageCounts}
2021-06-08 01:23:25 +05:30
`(
'$mutation with $payload will set $stateKey to $value',
({ mutation, payload, stateKey, value }) => {
mutations[mutation](state, payload);
expect(state).toMatchObject({ [stateKey]: value });
},
);
describe('with a stage selected', () => {
beforeEach(() => {
state = {
selectedStage,
};
});
it.each`
2021-10-27 15:23:28 +05:30
mutation | payload | stateKey | value
${types.RECEIVE_STAGE_DATA_SUCCESS} | ${[]} | ${'isEmptyStage'} | ${true}
${types.RECEIVE_STAGE_DATA_SUCCESS} | ${rawEvents} | ${'selectedStageEvents'} | ${convertedEvents}
${types.RECEIVE_STAGE_DATA_SUCCESS} | ${rawEvents} | ${'isEmptyStage'} | ${false}
2021-09-30 23:02:18 +05:30
`(
'$mutation with $payload will set $stateKey to $value',
({ mutation, payload, stateKey, value }) => {
mutations[mutation](state, payload);
expect(state).toMatchObject({ [stateKey]: value });
},
);
});
2021-06-08 01:23:25 +05:30
});