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

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

require 'fast_spec_helper'

RSpec.describe Gitlab::Ci::Interpolation::Config, feature_category: :pipeline_authoring do
  subject { described_class.new(YAML.safe_load(config)) }

  let(:config) do
    <<~CFG
    test:
      spec:
        env: $[[ inputs.env ]]

    $[[ inputs.key ]]:
      name: $[[ inputs.key ]]
      script: my-value
    CFG
  end

  describe '#replace!' do
    it 'replaces each od the nodes with a block return value' do
      result = subject.replace! { |node| "abc#{node}cde" }

      expect(result).to eq({
        'abctestcde' => { 'abcspeccde' => { 'abcenvcde' => 'abc$[[ inputs.env ]]cde' } },
        'abc$[[ inputs.key ]]cde' => {
          'abcnamecde' => 'abc$[[ inputs.key ]]cde',
          'abcscriptcde' => 'abcmy-valuecde'
        }
      })
    end
  end

  context 'when config size is exceeded' do
    before do
      stub_const("#{described_class}::MAX_NODES", 7)
    end

    it 'returns a config size error' do
      replaced = 0

      subject.replace! { replaced += 1 }

      expect(replaced).to eq 4
      expect(subject.errors.size).to eq 1
      expect(subject.errors.first).to eq 'config too large'
    end
  end
end