summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/external/mapper/variables_expander_spec.rb
blob: f7454dcd4be6c54ae1900159584b4f00e720f4b7 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Config::External::Mapper::VariablesExpander, feature_category: :pipeline_authoring do
  let_it_be(:variables) do
    Gitlab::Ci::Variables::Collection.new.tap do |variables|
      variables.append(key: 'VARIABLE1', value: 'hello')
    end
  end

  let_it_be(:context) do
    Gitlab::Ci::Config::External::Context.new(variables: variables)
  end

  subject(:variables_expander) { described_class.new(context) }

  describe '#process' do
    subject(:process) { variables_expander.process(locations) }

    context 'when locations are strings' do
      let(:locations) { ['$VARIABLE1.gitlab-ci.yml'] }

      it 'expands variables' do
        is_expected.to eq(['hello.gitlab-ci.yml'])
      end
    end

    context 'when locations are hashes' do
      let(:locations) { [{ local: '$VARIABLE1.gitlab-ci.yml' }] }

      it 'expands variables' do
        is_expected.to eq([{ local: 'hello.gitlab-ci.yml' }])
      end
    end

    context 'when locations are arrays' do
      let(:locations) { [{ local: ['$VARIABLE1.gitlab-ci.yml'] }] }

      it 'expands variables' do
        is_expected.to eq([{ local: ['hello.gitlab-ci.yml'] }])
      end
    end
  end
end