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
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe AccessibilityReportsComparerSerializer do
let(:project) { double(:project) }
let(:serializer) { described_class.new(project: project).represent(comparer) }
let(:comparer) { Gitlab::Ci::Reports::AccessibilityReportsComparer.new(base_report, head_report) }
let(:base_report) { Gitlab::Ci::Reports::AccessibilityReports.new }
let(:head_report) { Gitlab::Ci::Reports::AccessibilityReports.new }
let(:url) { "https://gitlab.com" }
let(:single_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 > divnth-child(1) > a",
runner: "htmlcs",
runnerExtras: {}
}
]
end
let(:different_error) do
[
{
code: "WCAG2AA.Principle1.Guideline1_4.1_4_3.G18.Fail",
type: "error",
typeCode: 1,
message: "This element has insufficient contrast at this conformance level.",
context: "<a href=\"/stages-devops-lifecycle/\" class=\"main-nav-link\">Product</a>",
selector: "#main-nav > divnth-child(2) > ul > linth-child(1) > a",
runner: "htmlcs",
runnerExtras: {}
}
]
end
describe '#to_json' do
subject { serializer.as_json }
context 'when base report has error and head has a different error' do
before do
base_report.add_url(url, single_error)
head_report.add_url(url, different_error)
end
it 'matches the schema' do
expect(subject).to match_schema('entities/accessibility_reports_comparer')
end
end
context 'when base report has no error and head has errors' do
before do
head_report.add_url(url, single_error)
end
it 'matches the schema' do
expect(subject).to match_schema('entities/accessibility_reports_comparer')
end
end
end
end
|