summaryrefslogtreecommitdiff
path: root/spec/frontend/prometheus_metrics/custom_metrics_spec.js
blob: 823caec021160c0c0d17975907ec06ec49f0e78c (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import prometheusIntegration from 'test_fixtures/integrations/prometheus/prometheus_integration.html';
import MockAdapter from 'axios-mock-adapter';
import { setHTMLFixture, resetHTMLFixture } from 'helpers/fixtures';
import axios from '~/lib/utils/axios_utils';
import { HTTP_STATUS_OK } from '~/lib/utils/http_status';
import PANEL_STATE from '~/prometheus_metrics/constants';
import CustomMetrics from '~/prometheus_metrics/custom_metrics';
import { metrics1 as metrics } from './mock_data';

describe('PrometheusMetrics', () => {
  const customMetricsEndpoint =
    'http://test.host/frontend-fixtures/integrations-project/prometheus/metrics';
  let mock;

  beforeEach(() => {
    mock = new MockAdapter(axios);
    mock.onGet(customMetricsEndpoint).reply(HTTP_STATUS_OK, {
      metrics,
    });
    setHTMLFixture(prometheusIntegration);
  });

  afterEach(() => {
    mock.restore();
    resetHTMLFixture();
  });

  describe('Custom Metrics', () => {
    let customMetrics;

    beforeEach(() => {
      customMetrics = new CustomMetrics('.js-prometheus-metrics-monitoring');
    });

    it('should initialize wrapper element refs on the class object', () => {
      expect(customMetrics.$wrapperCustomMetrics).not.toBeNull();
      expect(customMetrics.$monitoredCustomMetricsPanel).not.toBeNull();
      expect(customMetrics.$monitoredCustomMetricsCount).not.toBeNull();
      expect(customMetrics.$monitoredCustomMetricsLoading).not.toBeNull();
      expect(customMetrics.$monitoredCustomMetricsEmpty).not.toBeNull();
      expect(customMetrics.$monitoredCustomMetricsList).not.toBeNull();
      expect(customMetrics.$newCustomMetricButton).not.toBeNull();
      expect(customMetrics.$flashCustomMetricsContainer).not.toBeNull();
    });

    it('should contain api endpoints', () => {
      expect(customMetrics.activeCustomMetricsEndpoint).toEqual(customMetricsEndpoint);
    });

    it('should show loading state when called with `loading`', () => {
      customMetrics.showMonitoringCustomMetricsPanelState(PANEL_STATE.LOADING);

      expect(customMetrics.$monitoredCustomMetricsLoading.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$monitoredCustomMetricsEmpty.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsList.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsNoIntegrationText.hasClass('hidden')).toBe(true);

      expect(customMetrics.$newCustomMetricButton.hasClass('hidden')).toBe(true);
      expect(customMetrics.$newCustomMetricText.hasClass('hidden')).toBe(true);
    });

    it('should show metrics list when called with `list`', () => {
      customMetrics.showMonitoringCustomMetricsPanelState(PANEL_STATE.LIST);

      expect(customMetrics.$monitoredCustomMetricsLoading.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsEmpty.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsList.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$monitoredCustomMetricsNoIntegrationText.hasClass('hidden')).toBe(true);

      expect(customMetrics.$newCustomMetricButton.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$newCustomMetricText.hasClass('hidden')).toBe(true);
    });

    it('should show empty state when called with `empty`', () => {
      customMetrics.showMonitoringCustomMetricsPanelState(PANEL_STATE.EMPTY);

      expect(customMetrics.$monitoredCustomMetricsLoading.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsEmpty.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$monitoredCustomMetricsList.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsNoIntegrationText.hasClass('hidden')).toBe(true);

      expect(customMetrics.$newCustomMetricButton.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$newCustomMetricText.hasClass('hidden')).toEqual(false);
    });

    it('should show monitored metrics list', () => {
      customMetrics.customMetrics = metrics;
      customMetrics.populateCustomMetrics();

      const $metricsListLi = customMetrics.$monitoredCustomMetricsList.find('li');

      expect(customMetrics.$monitoredCustomMetricsLoading.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsList.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$monitoredCustomMetricsNoIntegrationText.hasClass('hidden')).toBe(true);

      expect(customMetrics.$newCustomMetricButton.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$newCustomMetricText.hasClass('hidden')).toBe(true);

      expect($metricsListLi.length).toEqual(metrics.length);
    });

    it('should show the NO-INTEGRATION empty state', () => {
      customMetrics.setNoIntegrationActiveState();

      expect(customMetrics.$monitoredCustomMetricsEmpty.hasClass('hidden')).toEqual(false);
      expect(customMetrics.$monitoredCustomMetricsNoIntegrationText.hasClass('hidden')).toEqual(
        false,
      );

      expect(customMetrics.$monitoredCustomMetricsLoading.hasClass('hidden')).toBe(true);
      expect(customMetrics.$monitoredCustomMetricsList.hasClass('hidden')).toBe(true);
      expect(customMetrics.$newCustomMetricButton.hasClass('hidden')).toBe(true);
      expect(customMetrics.$newCustomMetricText.hasClass('hidden')).toBe(true);
    });
  });
});