summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/ci_variable_shared_examples.rb
blob: f93de8b6ff1a4b2cd62ed09f435e6ed72c7c1120 (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
# frozen_string_literal: true

shared_examples_for 'CI variable' do
  it { is_expected.to include_module(HasVariable) }

  describe "variable type" do
    it 'defines variable types' do
      expect(described_class.variable_types).to eq({ "env_var" => 1, "file" => 2 })
    end

    it "defaults variable type to env_var" do
      expect(subject.variable_type).to eq("env_var")
    end

    it "supports variable type file" do
      variable = described_class.new(variable_type: :file)
      expect(variable).to be_file
    end
  end

  it 'strips whitespaces when assigning key' do
    subject.key = " SECRET "
    expect(subject.key).to eq("SECRET")
  end

  it 'can convert to runner variable' do
    expect(subject.to_runner_variable.keys).to include(:key, :value, :public, :file)
  end
end