summaryrefslogtreecommitdiff
path: root/spec/frontend/reports/accessibility_report/components/accessibility_issue_body_spec.js
blob: d835ca4c7338a9de5510d5f369d196d90e578ef6 (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
import { GlBadge } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import AccessibilityIssueBody from '~/reports/accessibility_report/components/accessibility_issue_body.vue';

const issue = {
  name:
    'The accessibility scanning found 2 errors of the following type: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent',
  code: 'WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent',
  message: 'This element has insufficient contrast at this conformance level.',
  status: 'failed',
  className: 'spec.test_spec',
  learnMoreUrl: 'https://www.w3.org/TR/WCAG20-TECHS/H91.html',
};

describe('CustomMetricsForm', () => {
  let wrapper;

  const mountComponent = ({ name, code, message, status, className }, isNew = false) => {
    wrapper = shallowMount(AccessibilityIssueBody, {
      propsData: {
        issue: {
          name,
          code,
          message,
          status,
          className,
        },
        isNew,
      },
    });
  };

  const findIsNewBadge = () => wrapper.findComponent(GlBadge);

  beforeEach(() => {
    mountComponent(issue);
  });

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

  it('Displays the issue message', () => {
    const description = wrapper.findComponent({ ref: 'accessibility-issue-description' }).text();

    expect(description).toContain(`Message: ${issue.message}`);
  });

  describe('When an issue code is present', () => {
    it('Creates the correct URL for learning more about the issue code', () => {
      const learnMoreUrl = wrapper
        .findComponent({ ref: 'accessibility-issue-learn-more' })
        .attributes('href');

      expect(learnMoreUrl).toBe(issue.learnMoreUrl);
    });
  });

  describe('When an issue code is not present', () => {
    beforeEach(() => {
      mountComponent({
        ...issue,
        code: undefined,
      });
    });

    it('Creates a URL leading to the overview documentation page', () => {
      const learnMoreUrl = wrapper
        .findComponent({ ref: 'accessibility-issue-learn-more' })
        .attributes('href');

      expect(learnMoreUrl).toBe('https://www.w3.org/TR/WCAG20-TECHS/Overview.html');
    });
  });

  describe('When an issue code does not contain the TECHS code', () => {
    beforeEach(() => {
      mountComponent({
        ...issue,
        code: 'WCAG2AA.Principle4.Guideline4_1.4_1_2',
      });
    });

    it('Creates a URL leading to the overview documentation page', () => {
      const learnMoreUrl = wrapper
        .findComponent({ ref: 'accessibility-issue-learn-more' })
        .attributes('href');

      expect(learnMoreUrl).toBe('https://www.w3.org/TR/WCAG20-TECHS/Overview.html');
    });
  });

  describe('When issue is new', () => {
    beforeEach(() => {
      mountComponent(issue, true);
    });

    it('Renders the new badge', () => {
      expect(findIsNewBadge().exists()).toBe(true);
    });
  });

  describe('When issue is not new', () => {
    beforeEach(() => {
      mountComponent(issue, false);
    });

    it('Does not render the new badge', () => {
      expect(findIsNewBadge().exists()).toBe(false);
    });
  });
});