summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/entry/reports/coverage_report_spec.rb
blob: 0fd9a83a4faba4f3f0b4dbd0f011f00b5c87a7d9 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Config::Entry::Reports::CoverageReport do
  let(:entry) { described_class.new(config) }

  describe 'validations' do
    context 'when it is valid' do
      let(:config) { { coverage_format: 'cobertura', path: 'cobertura-coverage.xml' } }

      it { expect(entry).to be_valid }

      it { expect(entry.value).to eq(config) }
    end

    context 'with unsupported coverage format' do
      let(:config) { { coverage_format: 'jacoco', path: 'jacoco.xml' } }

      it { expect(entry).not_to be_valid }

      it { expect(entry.errors).to include /format must be one of supported formats/ }
    end

    context 'without coverage format' do
      let(:config) { { path: 'cobertura-coverage.xml' } }

      it { expect(entry).not_to be_valid }

      it { expect(entry.errors).to include /format can't be blank/ }
    end

    context 'without path' do
      let(:config) { { coverage_format: 'cobertura' } }

      it { expect(entry).not_to be_valid }

      it { expect(entry.errors).to include /path can't be blank/ }
    end

    context 'with invalid path' do
      let(:config) { { coverage_format: 'cobertura', path: 123 } }

      it { expect(entry).not_to be_valid }

      it { expect(entry.errors).to include /path should be a string/ }
    end

    context 'with unknown keys' do
      let(:config) { { coverage_format: 'cobertura', path: 'cobertura-coverage.xml', foo: :bar } }

      it { expect(entry).not_to be_valid }

      it { expect(entry.errors).to include /contains unknown keys/ }
    end
  end
end