Welcome to mirror list, hosted at ThFree Co, Russian Federation.

graph_group_spec.js « components « monitoring « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04371091ca8f79b5c572e22060028cdf0fae9724 (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
import { shallowMount, createLocalVue } from '@vue/test-utils';
import GraphGroup from '~/monitoring/components/graph_group.vue';

const localVue = createLocalVue();

describe('Graph group component', () => {
  let graphGroup;

  const findPrometheusGroup = () => graphGroup.find('.prometheus-graph-group');
  const findPrometheusPanel = () => graphGroup.find('.prometheus-panel');

  const createComponent = propsData => {
    graphGroup = shallowMount(localVue.extend(GraphGroup), {
      propsData,
      sync: false,
      localVue,
    });
  };

  afterEach(() => {
    graphGroup.destroy();
  });

  describe('When groups can be collapsed', () => {
    beforeEach(() => {
      createComponent({
        name: 'panel',
        collapseGroup: true,
      });
    });

    it('should show the angle-down caret icon when collapseGroup is true', () => {
      expect(graphGroup.vm.caretIcon).toBe('angle-down');
    });

    it('should show the angle-right caret icon when collapseGroup is false', () => {
      graphGroup.vm.collapse();

      expect(graphGroup.vm.caretIcon).toBe('angle-right');
    });
  });

  describe('When groups can not be collapsed', () => {
    beforeEach(() => {
      createComponent({
        name: 'panel',
        collapseGroup: true,
        showPanels: false,
      });
    });

    it('should not contain a prometheus-panel container when showPanels is false', () => {
      expect(findPrometheusPanel().exists()).toBe(false);
    });
  });

  describe('When collapseGroup prop is updated', () => {
    beforeEach(() => {
      createComponent({ name: 'panel', collapseGroup: false });
    });

    it('previously collapsed group should respond to the prop change', done => {
      expect(findPrometheusGroup().exists()).toBe(false);

      graphGroup.setProps({
        collapseGroup: true,
      });

      graphGroup.vm.$nextTick(() => {
        expect(findPrometheusGroup().exists()).toBe(true);
        done();
      });
    });
  });
});