summaryrefslogtreecommitdiff
path: root/spec/frontend/analytics/shared/components/metric_popover_spec.js
blob: e0bfff3e664cd7eabd79a0f62aaa6789b20a79d7 (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
import { GlLink, GlIcon } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import MetricPopover from '~/analytics/shared/components/metric_popover.vue';
import { METRIC_POPOVER_LABEL } from '~/analytics/shared/constants';

const MOCK_METRIC = {
  key: 'deployment-frequency',
  label: 'Deployment Frequency',
  value: '10.0',
  unit: '/day',
  description: 'Average number of deployments to production per day.',
  links: [],
};

describe('MetricPopover', () => {
  let wrapper;

  const createComponent = (props = {}) => {
    return shallowMountExtended(MetricPopover, {
      propsData: {
        target: 'deployment-frequency',
        ...props,
      },
      stubs: {
        'gl-popover': { template: '<div><slot name="title"></slot><slot></slot></div>' },
      },
    });
  };

  const findMetricLabel = () => wrapper.findByTestId('metric-label');
  const findMetricLink = () => wrapper.find('[data-testid="metric-link"]');
  const findMetricDescription = () => wrapper.findByTestId('metric-description');
  const findMetricDocsLink = () => wrapper.findByTestId('metric-docs-link');
  const findMetricDocsLinkIcon = () => findMetricDocsLink().findComponent(GlIcon);
  const findMetricDetailsIcon = () => findMetricLink().findComponent(GlIcon);

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

  it('renders the metric label', () => {
    wrapper = createComponent({ metric: MOCK_METRIC });
    expect(findMetricLabel().text()).toBe(MOCK_METRIC.label);
  });

  it('renders the metric description', () => {
    wrapper = createComponent({ metric: MOCK_METRIC });
    expect(findMetricDescription().text()).toBe(MOCK_METRIC.description);
  });

  describe('with links', () => {
    const METRIC_NAME = 'Deployment frequency';
    const LINK_URL = '/groups/gitlab-org/-/analytics/ci_cd?tab=deployment-frequency';
    const links = [
      {
        name: METRIC_NAME,
        url: LINK_URL,
        label: 'Dashboard',
      },
    ];
    const docsLink = {
      name: 'Deployment frequency',
      url: '/help/user/analytics/index#definitions',
      label: 'Go to docs',
      docs_link: true,
    };
    const linksWithDocs = [...links, docsLink];

    describe.each`
      hasDocsLink | allLinks
      ${true}     | ${linksWithDocs}
      ${false}    | ${links}
    `('when one link has docs_link=$hasDocsLink', ({ hasDocsLink, allLinks }) => {
      beforeEach(() => {
        wrapper = createComponent({ metric: { ...MOCK_METRIC, links: allLinks } });
      });

      describe('Metric title row', () => {
        it(`renders a link for "${METRIC_NAME}"`, () => {
          expect(findMetricLink().text()).toContain(METRIC_POPOVER_LABEL);
          expect(findMetricLink().findComponent(GlLink).attributes('href')).toBe(LINK_URL);
        });

        it('renders the chart icon', () => {
          expect(findMetricDetailsIcon().attributes('name')).toBe('chart');
        });
      });

      it(`${hasDocsLink ? 'renders' : "doesn't render"} a docs link`, () => {
        expect(findMetricDocsLink().exists()).toBe(hasDocsLink);

        if (hasDocsLink) {
          expect(findMetricDocsLink().attributes('href')).toBe(docsLink.url);
          expect(findMetricDocsLink().text()).toBe(docsLink.label);
          expect(findMetricDocsLinkIcon().attributes('name')).toBe('external-link');
        }
      });
    });
  });
});