debian-mirror-gitlab/spec/models/ci/pipeline_variable_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Ci::PipelineVariable do
2017-09-10 17:25:29 +05:30
subject { build(:ci_pipeline_variable) }
2019-07-31 22:56:46 +05:30
it_behaves_like "CI variable"
2021-11-11 11:23:49 +05:30
it { is_expected.to validate_presence_of(:key) }
2018-12-05 23:21:45 +05:30
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
2022-10-11 01:57:18 +05:30
describe 'partitioning' do
context 'with pipeline' do
let(:pipeline) { build(:ci_pipeline, partition_id: 123) }
let(:variable) { build(:ci_pipeline_variable, pipeline: pipeline, partition_id: nil) }
it 'copies the partition_id from pipeline' do
expect { variable.valid? }.to change(variable, :partition_id).from(nil).to(123)
end
end
context 'without pipeline' do
subject(:variable) { build(:ci_pipeline_variable, pipeline: nil, partition_id: nil) }
it { is_expected.to validate_presence_of(:partition_id) }
it 'does not change the partition_id value' do
expect { variable.valid? }.not_to change(variable, :partition_id)
end
end
end
2017-09-10 17:25:29 +05:30
end