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

no_ci_empty_state_spec.js « empty_state « components « pipelines_page « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c42723f753b8fd7ec6c303fcb53e7fb5eb72489 (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
import '~/commons';
import { shallowMount } from '@vue/test-utils';
import { GlEmptyState } from '@gitlab/ui';
import { stubExperiments } from 'helpers/experimentation_helper';
import EmptyState from '~/ci/pipelines_page/components/empty_state/no_ci_empty_state.vue';
import GitlabExperiment from '~/experimentation/components/gitlab_experiment.vue';
import PipelinesCiTemplates from '~/ci/pipelines_page/components/empty_state/pipelines_ci_templates.vue';
import IosTemplates from '~/ci/pipelines_page/components/empty_state/ios_templates.vue';

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

  const findIllustration = () => wrapper.find('img');
  const findButton = () => wrapper.find('a');
  const pipelinesCiTemplates = () => wrapper.findComponent(PipelinesCiTemplates);
  const iosTemplates = () => wrapper.findComponent(IosTemplates);

  const createWrapper = (props = {}) => {
    wrapper = shallowMount(EmptyState, {
      provide: {
        pipelineEditorPath: '',
        suggestedCiTemplates: [],
        anyRunnersAvailable: true,
        ciRunnerSettingsPath: '',
      },
      propsData: {
        emptyStateSvgPath: 'foo.svg',
        canSetCi: true,
        ...props,
      },
      stubs: {
        GlEmptyState,
        GitlabExperiment,
      },
    });
  };

  describe('when user can configure CI', () => {
    describe('when the ios_specific_templates experiment is active', () => {
      beforeEach(() => {
        stubExperiments({ ios_specific_templates: 'candidate' });
        createWrapper();
      });

      it('should render the iOS templates', () => {
        expect(iosTemplates().exists()).toBe(true);
      });

      it('should not render the CI/CD templates', () => {
        expect(pipelinesCiTemplates().exists()).toBe(false);
      });
    });

    describe('when the ios_specific_templates experiment is inactive', () => {
      beforeEach(() => {
        stubExperiments({ ios_specific_templates: 'control' });
        createWrapper();
      });

      it('should render the CI/CD templates', () => {
        expect(pipelinesCiTemplates().exists()).toBe(true);
      });

      it('should not render the iOS templates', () => {
        expect(iosTemplates().exists()).toBe(false);
      });
    });
  });

  describe('when user cannot configure CI', () => {
    beforeEach(() => {
      createWrapper({ canSetCi: false });
    });

    it('should render empty state SVG', () => {
      expect(findIllustration().attributes('src')).toBe('foo.svg');
    });

    it('should render empty state header', () => {
      expect(wrapper.text()).toBe('This project is not currently set up to run pipelines.');
    });

    it('should not render a link', () => {
      expect(findButton().exists()).toBe(false);
    });
  });
});