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

empty_state_spec.js « components « bridge « jobs « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38c55b296f020cbff07022b02f029bb74575bdeb (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
import { GlButton } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import BridgeEmptyState from '~/jobs/bridge/components/empty_state.vue';
import { MOCK_EMPTY_ILLUSTRATION_PATH, MOCK_PATH_TO_DOWNSTREAM } from '../mock_data';

describe('Bridge Empty State', () => {
  let wrapper;

  const createComponent = ({ downstreamPipelinePath }) => {
    wrapper = shallowMount(BridgeEmptyState, {
      provide: {
        emptyStateIllustrationPath: MOCK_EMPTY_ILLUSTRATION_PATH,
      },
      propsData: {
        downstreamPipelinePath,
      },
    });
  };

  const findSvg = () => wrapper.find('img');
  const findTitle = () => wrapper.find('h1');
  const findLinkBtn = () => wrapper.findComponent(GlButton);

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

  describe('template', () => {
    beforeEach(() => {
      createComponent({ downstreamPipelinePath: MOCK_PATH_TO_DOWNSTREAM });
    });

    it('renders illustration', () => {
      expect(findSvg().exists()).toBe(true);
    });

    it('renders title', () => {
      expect(findTitle().exists()).toBe(true);
      expect(findTitle().text()).toBe(wrapper.vm.$options.i18n.title);
    });

    it('renders CTA button', () => {
      expect(findLinkBtn().exists()).toBe(true);
      expect(findLinkBtn().text()).toBe(wrapper.vm.$options.i18n.linkBtnText);
      expect(findLinkBtn().attributes('href')).toBe(MOCK_PATH_TO_DOWNSTREAM);
    });
  });

  describe('without downstream pipeline', () => {
    beforeEach(() => {
      createComponent({ downstreamPipelinePath: undefined });
    });

    it('does not render CTA button', () => {
      expect(findLinkBtn().exists()).toBe(false);
    });
  });
});