summaryrefslogtreecommitdiff
path: root/spec/javascripts/serverless/store/actions_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/serverless/store/actions_spec.js')
-rw-r--r--spec/javascripts/serverless/store/actions_spec.js88
1 files changed, 0 insertions, 88 deletions
diff --git a/spec/javascripts/serverless/store/actions_spec.js b/spec/javascripts/serverless/store/actions_spec.js
deleted file mode 100644
index 602798573e9..00000000000
--- a/spec/javascripts/serverless/store/actions_spec.js
+++ /dev/null
@@ -1,88 +0,0 @@
-import MockAdapter from 'axios-mock-adapter';
-import statusCodes from '~/lib/utils/http_status';
-import { fetchFunctions, fetchMetrics } from '~/serverless/store/actions';
-import { mockServerlessFunctions, mockMetrics } from '../mock_data';
-import axios from '~/lib/utils/axios_utils';
-import testAction from '../../helpers/vuex_action_helper';
-import { adjustMetricQuery } from '../utils';
-
-describe('ServerlessActions', () => {
- describe('fetchFunctions', () => {
- it('should successfully fetch functions', done => {
- const endpoint = '/functions';
- const mock = new MockAdapter(axios);
- mock.onGet(endpoint).reply(statusCodes.OK, JSON.stringify(mockServerlessFunctions));
-
- testAction(
- fetchFunctions,
- { functionsPath: endpoint },
- {},
- [],
- [
- { type: 'requestFunctionsLoading' },
- { type: 'receiveFunctionsSuccess', payload: mockServerlessFunctions },
- ],
- () => {
- mock.restore();
- done();
- },
- );
- });
-
- it('should successfully retry', done => {
- const endpoint = '/functions';
- const mock = new MockAdapter(axios);
- mock.onGet(endpoint).reply(statusCodes.NO_CONTENT);
-
- testAction(
- fetchFunctions,
- { functionsPath: endpoint },
- {},
- [],
- [{ type: 'requestFunctionsLoading' }],
- () => {
- mock.restore();
- done();
- },
- );
- });
- });
-
- describe('fetchMetrics', () => {
- it('should return no prometheus', done => {
- const endpoint = '/metrics';
- const mock = new MockAdapter(axios);
- mock.onGet(endpoint).reply(statusCodes.NO_CONTENT);
-
- testAction(
- fetchMetrics,
- { metricsPath: endpoint, hasPrometheus: false },
- {},
- [],
- [{ type: 'receiveMetricsNoPrometheus' }],
- () => {
- mock.restore();
- done();
- },
- );
- });
-
- it('should successfully fetch metrics', done => {
- const endpoint = '/metrics';
- const mock = new MockAdapter(axios);
- mock.onGet(endpoint).reply(statusCodes.OK, JSON.stringify(mockMetrics));
-
- testAction(
- fetchMetrics,
- { metricsPath: endpoint, hasPrometheus: true },
- {},
- [],
- [{ type: 'receiveMetricsSuccess', payload: adjustMetricQuery(mockMetrics) }],
- () => {
- mock.restore();
- done();
- },
- );
- });
- });
-});