summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/entry/variables_spec.rb
blob: 1320b36636755f1b372b04c3d9769a90a820a1e4 (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
58
# frozen_string_literal: true

require 'spec_helper'

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

  describe 'validations' do
    context 'when entry config value is correct' do
      let(:config) do
        { 'VARIABLE_1' => 'value 1', 'VARIABLE_2' => 'value 2' }
      end

      describe '#value' do
        it 'returns hash with key value strings' do
          expect(entry.value).to eq config
        end

        context 'with numeric keys and values in the config' do
          let(:config) { { 10 => 20 } }

          it 'converts numeric key and numeric value into strings' do
            expect(entry.value).to eq('10' => '20')
          end
        end
      end

      describe '#errors' do
        it 'does not append errors' do
          expect(entry.errors).to be_empty
        end
      end

      describe '#valid?' do
        it 'is valid' do
          expect(entry).to be_valid
        end
      end
    end

    context 'when entry value is not correct' do
      let(:config) { [:VAR, 'test'] }

      describe '#errors' do
        it 'saves errors' do
          expect(entry.errors)
            .to include /should be a hash of key value pairs/
        end
      end

      describe '#valid?' do
        it 'is not valid' do
          expect(entry).not_to be_valid
        end
      end
    end
  end
end