summaryrefslogtreecommitdiff
path: root/spec/frontend/monitoring/components/links_section_spec.js
blob: b771d63d51f045efcd9dd8919c7b24c2e39a37db (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
import { shallowMount } from '@vue/test-utils';
import { GlLink } from '@gitlab/ui';
import { createStore } from '~/monitoring/stores';
import LinksSection from '~/monitoring/components/links_section.vue';

describe('Links Section component', () => {
  let store;
  let wrapper;

  const createShallowWrapper = () => {
    wrapper = shallowMount(LinksSection, {
      store,
    });
  };
  const setState = links => {
    store.state.monitoringDashboard = {
      ...store.state.monitoringDashboard,
      emptyState: null,
      links,
    };
  };
  const findLinks = () => wrapper.findAll(GlLink);

  beforeEach(() => {
    store = createStore();
    createShallowWrapper();
  });

  it('does not render a section if no links are present', () => {
    setState();

    return wrapper.vm.$nextTick(() => {
      expect(findLinks()).not.toExist();
    });
  });

  it('renders a link inside a section', () => {
    setState([
      {
        title: 'GitLab Website',
        url: 'https://gitlab.com',
      },
    ]);

    return wrapper.vm.$nextTick(() => {
      expect(findLinks()).toHaveLength(1);
      const firstLink = findLinks().at(0);

      expect(firstLink.attributes('href')).toBe('https://gitlab.com');
      expect(firstLink.text()).toBe('GitLab Website');
    });
  });

  it('renders multiple links inside a section', () => {
    const links = new Array(10)
      .fill(null)
      .map((_, i) => ({ title: `Title ${i}`, url: `https://gitlab.com/projects/${i}` }));
    setState(links);

    return wrapper.vm.$nextTick(() => {
      expect(findLinks()).toHaveLength(10);
    });
  });
});