85609c117e
Add env_var and file as supported types for CI variables. Variables of type file expose to users existing gitlab-runner behaviour - save variable value into a temp file and set the path to this file in an ENV var named after the variable key. Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
20 lines
493 B
Ruby
20 lines
493 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Ci::PipelineVariable do
|
|
subject { build(:ci_pipeline_variable) }
|
|
|
|
it_behaves_like "CI variable"
|
|
|
|
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:pipeline_id) }
|
|
|
|
describe '#hook_attrs' do
|
|
let(:variable) { create(:ci_pipeline_variable, key: 'foo', value: 'bar') }
|
|
|
|
subject { variable.hook_attrs }
|
|
|
|
it { is_expected.to be_a(Hash) }
|
|
it { is_expected.to eq({ key: 'foo', value: 'bar' }) }
|
|
end
|
|
end
|