summaryrefslogtreecommitdiff
path: root/spec/frontend/reports/components/summary_row_spec.js
blob: 85c68ed069b88474bc1a6535c8cb9848ce0ea624 (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
import { mount } from '@vue/test-utils';
import SummaryRow from '~/reports/components/summary_row.vue';

describe('Summary row', () => {
  let wrapper;

  const props = {
    summary: 'SAST detected 1 new vulnerability and 1 fixed vulnerability',
    popoverOptions: {
      title: 'Static Application Security Testing (SAST)',
      content: '<a>Learn more about SAST</a>',
    },
    statusIcon: 'warning',
  };

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

  const findSummary = () => wrapper.find('.report-block-list-issue-description-text');

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

  it('renders provided summary', () => {
    createComponent();
    expect(findSummary().text()).toEqual(props.summary);
  });

  it('renders provided icon', () => {
    createComponent();
    expect(wrapper.find('.report-block-list-icon span').classes()).toContain(
      'js-ci-status-icon-warning',
    );
  });

  describe('summary slot', () => {
    it('replaces the summary prop', () => {
      const summarySlotContent = 'Summary slot content';
      createComponent({ slots: { summary: summarySlotContent } });

      expect(wrapper.text()).not.toContain(props.summary);
      expect(findSummary().text()).toEqual(summarySlotContent);
    });
  });
});