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

security_reports_app_spec.js « security_reports « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31bdfc931ac1ead4ba53f9a8cc412435ff32cf38 (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
import { mount } from '@vue/test-utils';
import Api from '~/api';
import Flash from '~/flash';
import SecurityReportsApp from '~/vue_shared/security_reports/security_reports_app.vue';

jest.mock('~/flash');

describe('Grouped security reports app', () => {
  let wrapper;
  let mrTabsMock;

  const props = {
    pipelineId: 123,
    projectId: 456,
    securityReportsDocsPath: '/docs',
  };

  const createComponent = () => {
    wrapper = mount(SecurityReportsApp, {
      propsData: { ...props },
    });
  };

  const findPipelinesTabAnchor = () => wrapper.find('[data-testid="show-pipelines"]');
  const findHelpLink = () => wrapper.find('[data-testid="help"]');
  const setupMrTabsMock = () => {
    mrTabsMock = { tabShown: jest.fn() };
    window.mrTabs = mrTabsMock;
  };
  const setupMockJobArtifact = reportType => {
    jest
      .spyOn(Api, 'pipelineJobs')
      .mockResolvedValue({ data: [{ artifacts: [{ file_type: reportType }] }] });
  };

  afterEach(() => {
    wrapper.destroy();
    delete window.mrTabs;
  });

  describe.each(SecurityReportsApp.reportTypes)('given a report type %p', reportType => {
    beforeEach(() => {
      window.mrTabs = { tabShown: jest.fn() };
      setupMockJobArtifact(reportType);
      createComponent();
    });

    it('calls the pipelineJobs API correctly', () => {
      expect(Api.pipelineJobs).toHaveBeenCalledWith(props.projectId, props.pipelineId);
    });

    it('renders the expected message', () => {
      expect(wrapper.text()).toMatchInterpolatedText(SecurityReportsApp.i18n.scansHaveRun);
    });

    describe('clicking the anchor to the pipelines tab', () => {
      beforeEach(() => {
        setupMrTabsMock();
        findPipelinesTabAnchor().trigger('click');
      });

      it('calls the mrTabs.tabShown global', () => {
        expect(mrTabsMock.tabShown.mock.calls).toEqual([['pipelines']]);
      });
    });

    it('renders a help link', () => {
      expect(findHelpLink().attributes()).toMatchObject({
        href: props.securityReportsDocsPath,
      });
    });
  });

  describe('given a report type "foo"', () => {
    beforeEach(() => {
      setupMockJobArtifact('foo');
      createComponent();
    });

    it('calls the pipelineJobs API correctly', () => {
      expect(Api.pipelineJobs).toHaveBeenCalledWith(props.projectId, props.pipelineId);
    });

    it('renders nothing', () => {
      expect(wrapper.html()).toBe('');
    });
  });

  describe('given an error from the API', () => {
    let error;

    beforeEach(() => {
      error = new Error('an error');
      jest.spyOn(Api, 'pipelineJobs').mockRejectedValue(error);
      createComponent();
    });

    it('calls the pipelineJobs API correctly', () => {
      expect(Api.pipelineJobs).toHaveBeenCalledWith(props.projectId, props.pipelineId);
    });

    it('renders nothing', () => {
      expect(wrapper.html()).toBe('');
    });

    it('calls Flash correctly', () => {
      expect(Flash.mock.calls).toEqual([
        [
          {
            message: SecurityReportsApp.i18n.apiError,
            captureError: true,
            error,
          },
        ],
      ]);
    });
  });
});