summaryrefslogtreecommitdiff
path: root/spec/frontend/serverless/store/actions_spec.js
blob: 61b9bd121af7f0d6f4ede3eb41e63cdf6c3b1afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import MockAdapter from 'axios-mock-adapter';
import testAction from 'helpers/vuex_action_helper';
import axios from '~/lib/utils/axios_utils';
import statusCodes from '~/lib/utils/http_status';
import { fetchFunctions, fetchMetrics } from '~/serverless/store/actions';
import { mockServerlessFunctions, mockMetrics } from '../mock_data';
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(() => new Promise((resolve) => setTimeout(() => resolve(200), Infinity)));

      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();
        },
      );
    });
  });
});