summaryrefslogtreecommitdiff
path: root/spec/javascripts/monitoring/dashboard_spec.js
blob: 79924a5f3a864d8743be50a0976e24d39447af2f (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
import Vue from 'vue';
import MockAdapter from 'axios-mock-adapter';
import Dashboard from '~/monitoring/components/dashboard.vue';
import axios from '~/lib/utils/axios_utils';
import { metricsGroupsAPIResponse, mockApiEndpoint } from './mock_data';

describe('Dashboard', () => {
  const fixtureName = 'environments/metrics/metrics.html.raw';
  let DashboardComponent;
  let component;
  const propsData = {
    hasMetrics: 'false',
    documentationPath: '/path/to/docs',
    settingsPath: '/path/to/settings',
    clustersPath: '/path/to/clusters',
    tagsPath: '/path/to/tags',
    projectPath: '/path/to/project',
    metricsEndpoint: mockApiEndpoint,
    deploymentEndpoint: '/endpoint/deployments',
    emptyGettingStartedSvgPath: '/path/to/getting-started.svg',
    emptyLoadingSvgPath: '/path/to/loading.svg',
    emptyUnableToConnectSvgPath: '/path/to/unable-to-connect.svg',
  };

  preloadFixtures(fixtureName);

  beforeEach(() => {
    loadFixtures(fixtureName);
    DashboardComponent = Vue.extend(Dashboard);
  });

  describe('no metrics are available yet', () => {
    it('shows a getting started empty state when no metrics are present', () => {
      component = new DashboardComponent({
        el: document.querySelector('#prometheus-graphs'),
        propsData,
      });

      component.$mount();
      expect(component.$el.querySelector('#prometheus-graphs')).toBe(null);
      expect(component.state).toEqual('gettingStarted');
    });
  });

  describe('requests information to the server', () => {
    let mock;
    beforeEach(() => {
      mock = new MockAdapter(axios);
      mock.onGet(mockApiEndpoint).reply(200, {
        metricsGroupsAPIResponse,
      });
    });

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

    it('shows up a loading state', (done) => {
      component = new DashboardComponent({
        el: document.querySelector('#prometheus-graphs'),
        propsData: { ...propsData, hasMetrics: 'true' },
      });
      component.$mount();
      Vue.nextTick(() => {
        expect(component.state).toEqual('loading');
        done();
      });
    });
  });
});