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

pipelines_artifacts_spec.js « pipelines « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 336255768d79410d14ae0d5a9ba1c3db681ee679 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import { GlAlert, GlDropdown, GlDropdownItem, GlLoadingIcon, GlSprintf } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import MockAdapter from 'axios-mock-adapter';
import waitForPromises from 'helpers/wait_for_promises';
import axios from '~/lib/utils/axios_utils';
import PipelineArtifacts, {
  i18n,
} from '~/pipelines/components/pipelines_list/pipelines_artifacts.vue';

describe('Pipelines Artifacts dropdown', () => {
  let wrapper;
  let mockAxios;

  const artifacts = [
    {
      name: 'job my-artifact',
      path: '/download/path',
    },
    {
      name: 'job-2 my-artifact-2',
      path: '/download/path-two',
    },
  ];
  const artifactsEndpointPlaceholder = ':pipeline_artifacts_id';
  const artifactsEndpoint = `endpoint/${artifactsEndpointPlaceholder}/artifacts.json`;
  const pipelineId = 108;

  const createComponent = ({ mockData = {} } = {}) => {
    wrapper = shallowMount(PipelineArtifacts, {
      provide: {
        artifactsEndpoint,
        artifactsEndpointPlaceholder,
      },
      propsData: {
        pipelineId,
      },
      data() {
        return {
          ...mockData,
        };
      },
      stubs: {
        GlSprintf,
      },
    });
  };

  const findAlert = () => wrapper.findComponent(GlAlert);
  const findDropdown = () => wrapper.findComponent(GlDropdown);
  const findLoadingIcon = () => wrapper.findComponent(GlLoadingIcon);
  const findFirstGlDropdownItem = () => wrapper.find(GlDropdownItem);
  const findAllGlDropdownItems = () => wrapper.find(GlDropdown).findAll(GlDropdownItem);

  beforeEach(() => {
    mockAxios = new MockAdapter(axios);
  });

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

  it('should render the dropdown', () => {
    createComponent();

    expect(findDropdown().exists()).toBe(true);
  });

  it('should fetch artifacts on dropdown click', async () => {
    const endpoint = artifactsEndpoint.replace(artifactsEndpointPlaceholder, pipelineId);
    mockAxios.onGet(endpoint).replyOnce(200, { artifacts });
    createComponent();
    findDropdown().vm.$emit('show');
    await waitForPromises();

    expect(mockAxios.history.get).toHaveLength(1);
    expect(wrapper.vm.artifacts).toEqual(artifacts);
  });

  it('should render a dropdown with all the provided artifacts', () => {
    createComponent({ mockData: { artifacts } });

    expect(findAllGlDropdownItems()).toHaveLength(artifacts.length);
  });

  it('should render a link with the provided path', () => {
    createComponent({ mockData: { artifacts } });

    expect(findFirstGlDropdownItem().attributes('href')).toBe(artifacts[0].path);

    expect(findFirstGlDropdownItem().text()).toBe(`Download ${artifacts[0].name} artifact`);
  });

  describe('with a failing request', () => {
    it('should render an error message', async () => {
      const endpoint = artifactsEndpoint.replace(artifactsEndpointPlaceholder, pipelineId);
      mockAxios.onGet(endpoint).replyOnce(500);
      createComponent();
      findDropdown().vm.$emit('show');
      await waitForPromises();

      const error = findAlert();
      expect(error.exists()).toBe(true);
      expect(error.text()).toBe(i18n.artifactsFetchErrorMessage);
    });
  });

  describe('with no artifacts received', () => {
    it('should render empty alert message', () => {
      createComponent({ mockData: { artifacts: [] } });

      const emptyAlert = findAlert();
      expect(emptyAlert.exists()).toBe(true);
      expect(emptyAlert.text()).toBe(i18n.noArtifacts);
    });
  });

  describe('when artifacts are loading', () => {
    it('should show loading icon', () => {
      createComponent({ mockData: { isLoading: true } });

      expect(findLoadingIcon().exists()).toBe(true);
    });
  });
});