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

accessibility_error_entity_spec.rb « serializers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afbff15a19529993b530324b22c2616930e036f4 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe AccessibilityErrorEntity do
  let(:entity) { described_class.new(accessibility_error) }

  describe '#as_json' do
    subject { entity.as_json }

    context 'when accessibility contains an error' do
      let(:accessibility_error) do
        {
          code: "WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent",
          type: "error",
          typeCode: 1,
          message: "Anchor element found with a valid href attribute, but no link content has been supplied.",
          context: "<a href=\"/\" class=\"navbar-brand animated\"><svg height=\"36\" viewBox=\"0 0 1...</a>",
          selector: "#main-nav > div:nth-child(1) > a",
          runner: "htmlcs",
          runnerExtras: {}
        }
      end

      it 'contains correct accessibility error details', :aggregate_failures do
        expect(subject[:code]).to eq("WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent")
        expect(subject[:type]).to eq("error")
        expect(subject[:type_code]).to eq(1)
        expect(subject[:message]).to eq("Anchor element found with a valid href attribute, but no link content has been supplied.")
        expect(subject[:context]).to eq("<a href=\"/\" class=\"navbar-brand animated\"><svg height=\"36\" viewBox=\"0 0 1...</a>")
        expect(subject[:selector]).to eq("#main-nav > div:nth-child(1) > a")
        expect(subject[:runner]).to eq("htmlcs")
        expect(subject[:runner_extras]).to be_empty
      end
    end
  end
end