summaryrefslogtreecommitdiff
path: root/spec/frontend/pipeline_editor/components/drawer/cards/first_pipeline_card_spec.js
blob: 8a4f07c4d88168032a2d32bd528bf911285cc650 (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
import { getByRole } from '@testing-library/dom';
import { mount } from '@vue/test-utils';
import FirstPipelineCard from '~/pipeline_editor/components/drawer/cards/first_pipeline_card.vue';
import PipelineVisualReference from '~/pipeline_editor/components/drawer/ui/pipeline_visual_reference.vue';

describe('First pipeline card', () => {
  let wrapper;

  const defaultProvide = {
    ciExamplesHelpPagePath: '/pipelines/examples',
    runnerHelpPagePath: '/help/runners',
  };

  const createComponent = () => {
    wrapper = mount(FirstPipelineCard, {
      provide: {
        ...defaultProvide,
      },
    });
  };

  const getLinkByName = (name) => getByRole(wrapper.element, 'link', { name }).href;
  const findPipelinesLink = () => getLinkByName(/examples and templates/i);
  const findRunnersLink = () => getLinkByName(/make sure your instance has runners available/i);
  const findVisualReference = () => wrapper.findComponent(PipelineVisualReference);

  beforeEach(() => {
    createComponent();
  });

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

  it('renders the title', () => {
    expect(wrapper.text()).toContain(wrapper.vm.$options.i18n.title);
  });

  it('renders the content', () => {
    expect(findVisualReference().exists()).toBe(true);
  });

  it('renders the links', () => {
    expect(findRunnersLink()).toContain(defaultProvide.runnerHelpPagePath);
    expect(findPipelinesLink()).toContain(defaultProvide.ciExamplesHelpPagePath);
  });
});