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

712 lines
19 KiB
JavaScript
Raw Normal View History

2019-09-04 21:01:54 +05:30
import MockAdapter from 'axios-mock-adapter';
2019-12-26 22:10:19 +05:30
import testAction from 'helpers/vuex_action_helper';
2020-01-01 13:55:28 +05:30
import Tracking from '~/tracking';
2019-12-26 22:10:19 +05:30
import axios from '~/lib/utils/axios_utils';
import statusCodes from '~/lib/utils/http_status';
2020-04-08 14:13:33 +05:30
import * as commonUtils from '~/lib/utils/common_utils';
2020-01-01 13:55:28 +05:30
import createFlash from '~/flash';
2019-12-26 22:10:19 +05:30
2019-09-04 21:01:54 +05:30
import store from '~/monitoring/stores';
import * as types from '~/monitoring/stores/mutation_types';
import {
fetchDashboard,
receiveMetricsDashboardSuccess,
receiveMetricsDashboardFailure,
fetchDeploymentsData,
fetchEnvironmentsData,
fetchPrometheusMetrics,
fetchPrometheusMetric,
setEndpoints,
2020-03-13 15:44:24 +05:30
filterEnvironments,
2019-09-04 21:01:54 +05:30
setGettingStartedEmptyState,
2020-03-13 15:44:24 +05:30
duplicateSystemDashboard,
2019-09-04 21:01:54 +05:30
} from '~/monitoring/stores/actions';
2020-03-13 15:44:24 +05:30
import { gqClient, parseEnvironmentsResponse } from '~/monitoring/stores/utils';
import getEnvironments from '~/monitoring/queries/getEnvironments.query.graphql';
2019-09-04 21:01:54 +05:30
import storeState from '~/monitoring/stores/state';
import {
deploymentData,
environmentData,
metricsDashboardResponse,
2020-04-08 14:13:33 +05:30
metricsDashboardViewModel,
2019-09-30 21:07:59 +05:30
dashboardGitResponse,
2020-04-08 14:13:33 +05:30
mockDashboardsErrorResponse,
2019-09-04 21:01:54 +05:30
} from '../mock_data';
2020-01-01 13:55:28 +05:30
jest.mock('~/flash');
2019-12-26 22:10:19 +05:30
const resetStore = str => {
str.replaceState({
showEmptyState: true,
emptyState: 'loading',
groups: [],
});
};
2020-01-01 13:55:28 +05:30
describe('Monitoring store actions', () => {
2020-04-08 14:13:33 +05:30
const { convertObjectPropsToCamelCase } = commonUtils;
2019-09-04 21:01:54 +05:30
let mock;
2020-04-08 14:13:33 +05:30
2019-09-04 21:01:54 +05:30
beforeEach(() => {
mock = new MockAdapter(axios);
2020-01-01 13:55:28 +05:30
// Mock `backOff` function to remove exponential algorithm delay.
jest.useFakeTimers();
2019-09-04 21:01:54 +05:30
2020-04-08 14:13:33 +05:30
jest.spyOn(commonUtils, 'backOff').mockImplementation(callback => {
2020-01-01 13:55:28 +05:30
const q = new Promise((resolve, reject) => {
const stop = arg => (arg instanceof Error ? reject(arg) : resolve(arg));
const next = () => callback(next, stop);
// Define a timeout based on a mock timer
setTimeout(() => {
callback(next, stop);
2019-12-26 22:10:19 +05:30
});
2020-01-01 13:55:28 +05:30
});
// Run all resolved promises in chain
jest.runOnlyPendingTimers();
return q;
2019-12-26 22:10:19 +05:30
});
});
afterEach(() => {
resetStore(store);
2020-01-01 13:55:28 +05:30
mock.reset();
2020-04-08 14:13:33 +05:30
commonUtils.backOff.mockReset();
2020-01-01 13:55:28 +05:30
createFlash.mockReset();
2019-09-04 21:01:54 +05:30
});
2020-01-01 13:55:28 +05:30
2019-09-04 21:01:54 +05:30
describe('fetchDeploymentsData', () => {
it('commits RECEIVE_DEPLOYMENTS_DATA_SUCCESS on error', done => {
2019-12-26 22:10:19 +05:30
const dispatch = jest.fn();
2019-09-04 21:01:54 +05:30
const { state } = store;
state.deploymentsEndpoint = '/success';
mock.onGet(state.deploymentsEndpoint).reply(200, {
deployments: deploymentData,
});
2019-12-26 22:10:19 +05:30
fetchDeploymentsData({
state,
dispatch,
})
2019-09-04 21:01:54 +05:30
.then(() => {
expect(dispatch).toHaveBeenCalledWith('receiveDeploymentsDataSuccess', deploymentData);
done();
})
.catch(done.fail);
});
it('commits RECEIVE_DEPLOYMENTS_DATA_FAILURE on error', done => {
2019-12-26 22:10:19 +05:30
const dispatch = jest.fn();
2019-09-04 21:01:54 +05:30
const { state } = store;
state.deploymentsEndpoint = '/error';
mock.onGet(state.deploymentsEndpoint).reply(500);
2019-12-26 22:10:19 +05:30
fetchDeploymentsData({
state,
dispatch,
})
2019-09-04 21:01:54 +05:30
.then(() => {
expect(dispatch).toHaveBeenCalledWith('receiveDeploymentsDataFailure');
done();
})
.catch(done.fail);
});
});
2020-03-13 15:44:24 +05:30
2019-09-04 21:01:54 +05:30
describe('fetchEnvironmentsData', () => {
2020-03-13 15:44:24 +05:30
const dispatch = jest.fn();
const { state } = store;
state.projectPath = 'gitlab-org/gitlab-test';
afterEach(() => {
resetStore(store);
});
it('setting SET_ENVIRONMENTS_FILTER should dispatch fetchEnvironmentsData', () => {
jest.spyOn(gqClient, 'mutate').mockReturnValue(
Promise.resolve({
data: {
project: {
data: {
environments: [],
},
},
},
}),
);
return testAction(
filterEnvironments,
{},
state,
[
{
type: 'SET_ENVIRONMENTS_FILTER',
payload: {},
},
],
[
{
type: 'fetchEnvironmentsData',
},
],
);
});
it('fetch environments data call takes in search param', () => {
const mockMutate = jest.spyOn(gqClient, 'mutate');
const searchTerm = 'Something';
const mutationVariables = {
mutation: getEnvironments,
variables: {
projectPath: state.projectPath,
search: searchTerm,
},
};
state.environmentsSearchTerm = searchTerm;
mockMutate.mockReturnValue(Promise.resolve());
return fetchEnvironmentsData({
state,
dispatch,
}).then(() => {
expect(mockMutate).toHaveBeenCalledWith(mutationVariables);
2019-09-04 21:01:54 +05:30
});
2020-03-13 15:44:24 +05:30
});
it('commits RECEIVE_ENVIRONMENTS_DATA_SUCCESS on success', () => {
jest.spyOn(gqClient, 'mutate').mockReturnValue(
Promise.resolve({
data: {
project: {
data: {
environments: environmentData,
},
},
},
}),
);
return fetchEnvironmentsData({
2019-12-26 22:10:19 +05:30
state,
dispatch,
2020-03-13 15:44:24 +05:30
}).then(() => {
expect(dispatch).toHaveBeenCalledWith(
'receiveEnvironmentsDataSuccess',
parseEnvironmentsResponse(environmentData, state.projectPath),
);
});
2019-09-04 21:01:54 +05:30
});
2020-03-13 15:44:24 +05:30
it('commits RECEIVE_ENVIRONMENTS_DATA_FAILURE on error', () => {
jest.spyOn(gqClient, 'mutate').mockReturnValue(Promise.reject());
return fetchEnvironmentsData({
2019-12-26 22:10:19 +05:30
state,
dispatch,
2020-03-13 15:44:24 +05:30
}).then(() => {
expect(dispatch).toHaveBeenCalledWith('receiveEnvironmentsDataFailure');
});
2019-09-04 21:01:54 +05:30
});
});
2020-03-13 15:44:24 +05:30
2019-09-04 21:01:54 +05:30
describe('Set endpoints', () => {
let mockedState;
beforeEach(() => {
mockedState = storeState();
});
it('should commit SET_ENDPOINTS mutation', done => {
testAction(
setEndpoints,
{
metricsEndpoint: 'additional_metrics.json',
deploymentsEndpoint: 'deployments.json',
},
mockedState,
[
{
type: types.SET_ENDPOINTS,
payload: {
metricsEndpoint: 'additional_metrics.json',
deploymentsEndpoint: 'deployments.json',
},
},
],
[],
done,
);
});
});
describe('Set empty states', () => {
let mockedState;
beforeEach(() => {
mockedState = storeState();
});
it('should commit SET_METRICS_ENDPOINT mutation', done => {
testAction(
setGettingStartedEmptyState,
null,
mockedState,
2019-12-26 22:10:19 +05:30
[
{
type: types.SET_GETTING_STARTED_EMPTY_STATE,
},
],
2019-09-04 21:01:54 +05:30
[],
done,
);
});
});
describe('fetchDashboard', () => {
let dispatch;
let state;
2020-04-08 14:13:33 +05:30
let commit;
2019-09-04 21:01:54 +05:30
const response = metricsDashboardResponse;
beforeEach(() => {
2019-12-26 22:10:19 +05:30
dispatch = jest.fn();
2020-04-08 14:13:33 +05:30
commit = jest.fn();
2019-09-04 21:01:54 +05:30
state = storeState();
state.dashboardEndpoint = '/dashboard';
});
2020-01-01 13:55:28 +05:30
it('on success, dispatches receive and success actions', done => {
2019-09-04 21:01:54 +05:30
const params = {};
2020-01-01 13:55:28 +05:30
document.body.dataset.page = 'projects:environments:metrics';
2019-09-04 21:01:54 +05:30
mock.onGet(state.dashboardEndpoint).reply(200, response);
2019-12-26 22:10:19 +05:30
fetchDashboard(
{
state,
2020-04-08 14:13:33 +05:30
commit,
2019-12-26 22:10:19 +05:30
dispatch,
},
params,
)
2019-09-04 21:01:54 +05:30
.then(() => {
expect(dispatch).toHaveBeenCalledWith('requestMetricsDashboard');
expect(dispatch).toHaveBeenCalledWith('receiveMetricsDashboardSuccess', {
response,
params,
});
done();
})
.catch(done.fail);
});
2020-01-01 13:55:28 +05:30
describe('on failure', () => {
let result;
beforeEach(() => {
const params = {};
result = () => {
2020-04-08 14:13:33 +05:30
mock.onGet(state.dashboardEndpoint).replyOnce(500, mockDashboardsErrorResponse);
return fetchDashboard({ state, commit, dispatch }, params);
2020-01-01 13:55:28 +05:30
};
});
it('dispatches a failure action', done => {
result()
.then(() => {
2020-04-08 14:13:33 +05:30
expect(commit).toHaveBeenCalledWith(
types.SET_ALL_DASHBOARDS,
mockDashboardsErrorResponse.all_dashboards,
);
2020-01-01 13:55:28 +05:30
expect(dispatch).toHaveBeenCalledWith(
'receiveMetricsDashboardFailure',
new Error('Request failed with status code 500'),
);
expect(createFlash).toHaveBeenCalled();
done();
})
.catch(done.fail);
});
it('dispatches a failure action when a message is returned', done => {
result()
.then(() => {
expect(dispatch).toHaveBeenCalledWith(
'receiveMetricsDashboardFailure',
new Error('Request failed with status code 500'),
);
2020-04-08 14:13:33 +05:30
expect(createFlash).toHaveBeenCalledWith(
expect.stringContaining(mockDashboardsErrorResponse.message),
);
2020-01-01 13:55:28 +05:30
done();
})
.catch(done.fail);
});
it('does not show a flash error when showErrorBanner is disabled', done => {
state.showErrorBanner = false;
result()
.then(() => {
expect(dispatch).toHaveBeenCalledWith(
'receiveMetricsDashboardFailure',
new Error('Request failed with status code 500'),
);
expect(createFlash).not.toHaveBeenCalled();
done();
})
.catch(done.fail);
});
2019-09-04 21:01:54 +05:30
});
});
describe('receiveMetricsDashboardSuccess', () => {
let commit;
let dispatch;
2019-09-30 21:07:59 +05:30
let state;
2019-09-04 21:01:54 +05:30
beforeEach(() => {
2019-12-26 22:10:19 +05:30
commit = jest.fn();
dispatch = jest.fn();
2019-09-30 21:07:59 +05:30
state = storeState();
2019-09-04 21:01:54 +05:30
});
it('stores groups ', () => {
const params = {};
const response = metricsDashboardResponse;
2019-12-26 22:10:19 +05:30
receiveMetricsDashboardSuccess(
{
state,
commit,
dispatch,
},
{
response,
params,
},
);
2019-09-04 21:01:54 +05:30
expect(commit).toHaveBeenCalledWith(
types.RECEIVE_METRICS_DATA_SUCCESS,
2020-04-08 14:13:33 +05:30
2020-03-13 15:44:24 +05:30
metricsDashboardResponse.dashboard,
2019-09-04 21:01:54 +05:30
);
expect(dispatch).toHaveBeenCalledWith('fetchPrometheusMetrics', params);
});
2019-09-30 21:07:59 +05:30
it('sets the dashboards loaded from the repository', () => {
const params = {};
const response = metricsDashboardResponse;
response.all_dashboards = dashboardGitResponse;
2019-12-26 22:10:19 +05:30
receiveMetricsDashboardSuccess(
{
state,
commit,
dispatch,
},
{
response,
params,
},
);
2019-09-30 21:07:59 +05:30
expect(commit).toHaveBeenCalledWith(types.SET_ALL_DASHBOARDS, dashboardGitResponse);
});
2019-09-04 21:01:54 +05:30
});
describe('receiveMetricsDashboardFailure', () => {
let commit;
beforeEach(() => {
2019-12-26 22:10:19 +05:30
commit = jest.fn();
2019-09-04 21:01:54 +05:30
});
it('commits failure action', () => {
2019-12-26 22:10:19 +05:30
receiveMetricsDashboardFailure({
commit,
});
2019-09-04 21:01:54 +05:30
expect(commit).toHaveBeenCalledWith(types.RECEIVE_METRICS_DATA_FAILURE, undefined);
});
it('commits failure action with error', () => {
2019-12-26 22:10:19 +05:30
receiveMetricsDashboardFailure(
{
commit,
},
'uh-oh',
);
2019-09-04 21:01:54 +05:30
expect(commit).toHaveBeenCalledWith(types.RECEIVE_METRICS_DATA_FAILURE, 'uh-oh');
});
});
describe('fetchPrometheusMetrics', () => {
2020-01-01 13:55:28 +05:30
const params = {};
2019-09-04 21:01:54 +05:30
let commit;
let dispatch;
2020-01-01 13:55:28 +05:30
let state;
2019-09-04 21:01:54 +05:30
beforeEach(() => {
2020-01-01 13:55:28 +05:30
jest.spyOn(Tracking, 'event');
2019-12-26 22:10:19 +05:30
commit = jest.fn();
dispatch = jest.fn();
2020-01-01 13:55:28 +05:30
state = storeState();
2019-09-04 21:01:54 +05:30
});
2020-01-01 13:55:28 +05:30
2019-09-04 21:01:54 +05:30
it('commits empty state when state.groups is empty', done => {
2020-01-01 13:55:28 +05:30
const getters = {
metricsWithData: () => [],
};
fetchPrometheusMetrics({ state, commit, dispatch, getters }, params)
2019-09-04 21:01:54 +05:30
.then(() => {
2020-01-01 13:55:28 +05:30
expect(Tracking.event).toHaveBeenCalledWith(
document.body.dataset.page,
'dashboard_fetch',
{
label: 'custom_metrics_dashboard',
property: 'count',
value: 0,
},
);
2019-09-04 21:01:54 +05:30
expect(dispatch).not.toHaveBeenCalled();
2020-01-01 13:55:28 +05:30
expect(createFlash).not.toHaveBeenCalled();
2019-09-04 21:01:54 +05:30
done();
})
.catch(done.fail);
});
it('dispatches fetchPrometheusMetric for each panel query', done => {
2020-04-08 14:13:33 +05:30
state.dashboard.panelGroups = convertObjectPropsToCamelCase(
metricsDashboardResponse.dashboard.panel_groups,
);
const [metric] = state.dashboard.panelGroups[0].panels[0].metrics;
2020-01-01 13:55:28 +05:30
const getters = {
metricsWithData: () => [metric.id],
};
fetchPrometheusMetrics({ state, commit, dispatch, getters }, params)
2019-09-04 21:01:54 +05:30
.then(() => {
2019-12-26 22:10:19 +05:30
expect(dispatch).toHaveBeenCalledWith('fetchPrometheusMetric', {
metric,
params,
});
2020-01-01 13:55:28 +05:30
expect(Tracking.event).toHaveBeenCalledWith(
document.body.dataset.page,
'dashboard_fetch',
{
label: 'custom_metrics_dashboard',
property: 'count',
value: 1,
},
);
2019-09-04 21:01:54 +05:30
done();
})
.catch(done.fail);
done();
});
2020-01-01 13:55:28 +05:30
it('dispatches fetchPrometheusMetric for each panel query, handles an error', done => {
2020-04-08 14:13:33 +05:30
state.dashboard.panelGroups = metricsDashboardViewModel.panelGroups;
const metric = state.dashboard.panelGroups[0].panels[0].metrics[0];
2020-01-01 13:55:28 +05:30
2020-04-08 14:13:33 +05:30
// Mock having one out of four metrics failing
2020-01-01 13:55:28 +05:30
dispatch.mockRejectedValueOnce(new Error('Error fetching this metric'));
dispatch.mockResolvedValue();
fetchPrometheusMetrics({ state, commit, dispatch }, params)
2019-12-26 22:10:19 +05:30
.then(() => {
2020-04-08 14:13:33 +05:30
expect(dispatch).toHaveBeenCalledTimes(9); // one per metric
2020-01-01 13:55:28 +05:30
expect(dispatch).toHaveBeenCalledWith('fetchPrometheusMetric', {
metric,
params,
2019-12-26 22:10:19 +05:30
});
2020-01-01 13:55:28 +05:30
expect(createFlash).toHaveBeenCalledTimes(1);
2019-12-26 22:10:19 +05:30
done();
})
.catch(done.fail);
2020-01-01 13:55:28 +05:30
done();
});
});
describe('fetchPrometheusMetric', () => {
const params = {
start: '2019-08-06T12:40:02.184Z',
end: '2019-08-06T20:40:02.184Z',
};
let metric;
let state;
let data;
beforeEach(() => {
state = storeState();
[metric] = metricsDashboardResponse.dashboard.panel_groups[0].panels[0].metrics;
2020-04-08 14:13:33 +05:30
metric = convertObjectPropsToCamelCase(metric, { deep: true });
data = {
metricId: metric.metricId,
result: [1582065167.353, 5, 1582065599.353],
};
2020-01-01 13:55:28 +05:30
});
it('commits result', done => {
mock.onGet('http://test').reply(200, { data }); // One attempt
testAction(
fetchPrometheusMetric,
{ metric, params },
state,
[
{
type: types.REQUEST_METRIC_RESULT,
payload: {
2020-04-08 14:13:33 +05:30
metricId: metric.metricId,
2020-01-01 13:55:28 +05:30
},
},
{
type: types.RECEIVE_METRIC_RESULT_SUCCESS,
payload: {
2020-04-08 14:13:33 +05:30
metricId: metric.metricId,
2020-01-01 13:55:28 +05:30
result: data.result,
},
},
],
[],
() => {
expect(mock.history.get).toHaveLength(1);
done();
},
).catch(done.fail);
});
it('commits result, when waiting for results', done => {
// Mock multiple attempts while the cache is filling up
mock.onGet('http://test').replyOnce(statusCodes.NO_CONTENT);
mock.onGet('http://test').replyOnce(statusCodes.NO_CONTENT);
mock.onGet('http://test').replyOnce(statusCodes.NO_CONTENT);
mock.onGet('http://test').reply(200, { data }); // 4th attempt
testAction(
fetchPrometheusMetric,
{ metric, params },
state,
[
{
type: types.REQUEST_METRIC_RESULT,
payload: {
2020-04-08 14:13:33 +05:30
metricId: metric.metricId,
2020-01-01 13:55:28 +05:30
},
},
{
type: types.RECEIVE_METRIC_RESULT_SUCCESS,
payload: {
2020-04-08 14:13:33 +05:30
metricId: metric.metricId,
2020-01-01 13:55:28 +05:30
result: data.result,
},
},
],
[],
() => {
expect(mock.history.get).toHaveLength(4);
done();
},
).catch(done.fail);
});
it('commits failure, when waiting for results and getting a server error', done => {
// Mock multiple attempts while the cache is filling up and fails
mock.onGet('http://test').replyOnce(statusCodes.NO_CONTENT);
mock.onGet('http://test').replyOnce(statusCodes.NO_CONTENT);
mock.onGet('http://test').replyOnce(statusCodes.NO_CONTENT);
mock.onGet('http://test').reply(500); // 4th attempt
const error = new Error('Request failed with status code 500');
testAction(
fetchPrometheusMetric,
{ metric, params },
state,
[
{
type: types.REQUEST_METRIC_RESULT,
payload: {
2020-04-08 14:13:33 +05:30
metricId: metric.metricId,
2020-01-01 13:55:28 +05:30
},
},
{
type: types.RECEIVE_METRIC_RESULT_FAILURE,
payload: {
2020-04-08 14:13:33 +05:30
metricId: metric.metricId,
2020-01-01 13:55:28 +05:30
error,
},
},
],
[],
).catch(e => {
expect(mock.history.get).toHaveLength(4);
expect(e).toEqual(error);
done();
});
2019-09-04 21:01:54 +05:30
});
});
2020-03-13 15:44:24 +05:30
describe('duplicateSystemDashboard', () => {
let state;
beforeEach(() => {
state = storeState();
state.dashboardsEndpoint = '/dashboards.json';
});
it('Succesful POST request resolves', done => {
mock.onPost(state.dashboardsEndpoint).reply(statusCodes.CREATED, {
dashboard: dashboardGitResponse[1],
});
testAction(duplicateSystemDashboard, {}, state, [], [])
.then(() => {
expect(mock.history.post).toHaveLength(1);
done();
})
.catch(done.fail);
});
it('Succesful POST request resolves to a dashboard', done => {
const mockCreatedDashboard = dashboardGitResponse[1];
const params = {
dashboard: 'my-dashboard',
fileName: 'file-name.yml',
branch: 'my-new-branch',
commitMessage: 'A new commit message',
};
const expectedPayload = JSON.stringify({
dashboard: 'my-dashboard',
file_name: 'file-name.yml',
branch: 'my-new-branch',
commit_message: 'A new commit message',
});
mock.onPost(state.dashboardsEndpoint).reply(statusCodes.CREATED, {
dashboard: mockCreatedDashboard,
});
testAction(duplicateSystemDashboard, params, state, [], [])
.then(result => {
expect(mock.history.post).toHaveLength(1);
expect(mock.history.post[0].data).toEqual(expectedPayload);
expect(result).toEqual(mockCreatedDashboard);
done();
})
.catch(done.fail);
});
it('Failed POST request throws an error', done => {
mock.onPost(state.dashboardsEndpoint).reply(statusCodes.BAD_REQUEST);
testAction(duplicateSystemDashboard, {}, state, [], []).catch(err => {
expect(mock.history.post).toHaveLength(1);
expect(err).toEqual(expect.any(String));
done();
});
});
it('Failed POST request throws an error with a description', done => {
const backendErrorMsg = 'This file already exists!';
mock.onPost(state.dashboardsEndpoint).reply(statusCodes.BAD_REQUEST, {
error: backendErrorMsg,
});
testAction(duplicateSystemDashboard, {}, state, [], []).catch(err => {
expect(mock.history.post).toHaveLength(1);
expect(err).toEqual(expect.any(String));
expect(err).toEqual(expect.stringContaining(backendErrorMsg));
done();
});
});
});
2019-09-04 21:01:54 +05:30
});