artifacts_spec.rb 1.7 KB
Newer Older
1 2
require 'spec_helper'

3
describe Gitlab::Ci::Config::Entry::Artifacts do
4 5 6 7 8 9 10
  let(:entry) { described_class.new(config) }

  describe 'validation' do
    context 'when entry config value is correct' do
      let(:config) { { paths: %w[public/] } }

      describe '#value' do
G
George Tsiolis 已提交
11
        it 'returns artifacts configuration' do
12 13 14 15 16 17 18 19 20
          expect(entry.value).to eq config
        end
      end

      describe '#valid?' do
        it 'is valid' do
          expect(entry).to be_valid
        end
      end
S
Shinya Maeda 已提交
21 22 23 24 25 26 27 28

      context "when value includes 'reports' keyword" do
        let(:config) { { paths: %w[public/], reports: { junit: 'junit.xml' } } }

        it 'returns general artifact and report-type artifacts configuration' do
          expect(entry.value).to eq config
        end
      end
29 30 31 32
    end

    context 'when entry value is not correct' do
      describe '#errors' do
33 34 35 36 37 38 39 40 41
        context 'when value of attribute is invalid' do
          let(:config) { { name: 10 } }

          it 'reports error' do
            expect(entry.errors)
              .to include 'artifacts name should be a string'
          end
        end

42
        context 'when there is an unknown key present' do
43 44 45 46 47 48
          let(:config) { { test: 100 } }

          it 'reports error' do
            expect(entry.errors)
              .to include 'artifacts config contains unknown keys: test'
          end
49
        end
S
Shinya Maeda 已提交
50 51 52 53 54 55 56 57 58

        context "when 'reports' keyword is not hash" do
          let(:config) { { paths: %w[public/], reports: 'junit.xml' } }

          it 'reports error' do
            expect(entry.errors)
              .to include 'artifacts reports should be a hash'
          end
        end
59 60 61 62
      end
    end
  end
end