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

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

require 'spec_helper'

RSpec.describe Ci::CodequalityMrDiffReportSerializer do
  let(:serializer) { described_class.new.represent(mr_diff_report) }
  let(:mr_diff_report) { Gitlab::Ci::Reports::CodequalityMrDiff.new(codequality_report.all_degradations) }
  let(:codequality_report) { Gitlab::Ci::Reports::CodequalityReports.new }
  let(:major) { build(:codequality_degradation, :major) }
  let(:minor) { build(:codequality_degradation, :minor) }

  describe '#to_json' do
    subject { serializer.as_json }

    context 'when quality report has degradations' do
      before do
        codequality_report.add_degradation(major)
        codequality_report.add_degradation(minor)
      end

      it 'matches the schema' do
        expect(subject).to match_schema('entities/codequality_mr_diff_report')
      end
    end

    context 'when quality report has no degradations' do
      it 'matches the schema' do
        expect(subject).to match_schema('entities/codequality_mr_diff_report')
      end
    end
  end
end