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

diff_code_quality_item_spec.js « components « diffs « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be9fb61a77d8367a47e3f9bbf785f450497f28e0 (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
import { GlIcon, GlLink } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import DiffCodeQualityItem from '~/diffs/components/diff_code_quality_item.vue';
import { SEVERITY_CLASSES, SEVERITY_ICONS } from '~/ci/reports/codequality_report/constants';
import { multipleFindingsArr } from '../mock_data/diff_code_quality';

let wrapper;

const findIcon = () => wrapper.findComponent(GlIcon);
const findButton = () => wrapper.findComponent(GlLink);
const findDescriptionPlainText = () => wrapper.findByTestId('description-plain-text');
const findDescriptionLinkSection = () => wrapper.findByTestId('description-button-section');

describe('DiffCodeQuality', () => {
  const createWrapper = ({ glFeatures = {} } = {}) => {
    return shallowMountExtended(DiffCodeQualityItem, {
      propsData: {
        finding: multipleFindingsArr[0],
      },
      provide: {
        glFeatures,
      },
    });
  };

  it('shows icon for given degradation', () => {
    wrapper = createWrapper();
    expect(findIcon().exists()).toBe(true);

    expect(findIcon().attributes()).toMatchObject({
      class: `codequality-severity-icon ${SEVERITY_CLASSES[multipleFindingsArr[0].severity]}`,
      name: SEVERITY_ICONS[multipleFindingsArr[0].severity],
      size: '12',
    });
  });

  describe('with codeQualityInlineDrawer flag false', () => {
    it('should render severity + description in plain text', () => {
      wrapper = createWrapper({
        glFeatures: {
          codeQualityInlineDrawer: false,
        },
      });
      expect(findDescriptionPlainText().text()).toContain(multipleFindingsArr[0].severity);
      expect(findDescriptionPlainText().text()).toContain(multipleFindingsArr[0].description);
    });
  });

  describe('with codeQualityInlineDrawer flag true', () => {
    beforeEach(() => {
      wrapper = createWrapper({
        glFeatures: {
          codeQualityInlineDrawer: true,
        },
      });
    });

    it('should render severity as plain text', () => {
      expect(findDescriptionLinkSection().text()).toContain(multipleFindingsArr[0].severity);
    });

    it('should render button with description text', () => {
      expect(findButton().text()).toContain(multipleFindingsArr[0].description);
    });
  });
});