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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Ci::JobVariable, feature_category: :continuous_integration do
it_behaves_like "CI variable"
describe 'associations' do
let!(:job_variable) { create(:ci_job_variable) }
it { is_expected.to belong_to(:job).class_name('Ci::Build').with_foreign_key(:job_id).inverse_of(:job_variables) }
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:job_id) }
it { is_expected.to validate_presence_of(:project_id) }
end
describe 'partitioning' do
let(:job_variable) { build(:ci_job_variable, job: ci_build) }
context 'with build' do
let(:ci_build) { build(:ci_build, partition_id: ci_testing_partition_id) }
it 'copies the partition_id from build' do
expect { job_variable.valid? }.to change { job_variable.partition_id }.to(ci_testing_partition_id)
end
context 'when it is already set' do
let(:job_variable) { build(:ci_job_variable, partition_id: 125) }
it 'does not change the partition_id value' do
expect { job_variable.valid? }.not_to change { job_variable.partition_id }
end
end
end
context 'when using bulk_insert' do
include Ci::PartitioningHelpers
let(:new_pipeline) { create(:ci_pipeline) }
let(:project) { create(:project) }
let(:ci_build) { create(:ci_build, pipeline: new_pipeline) }
let(:job_variable_2) { build(:ci_job_variable, job: ci_build, project_id: project.id) }
before do
stub_current_partition_id(ci_testing_partition_id)
job_variable.project_id = project.id
end
it 'creates job variables successfully', :aggregate_failures do
described_class.bulk_insert!([job_variable, job_variable_2])
expect(described_class.count).to eq(2)
expect(described_class.first.partition_id).to eq(ci_testing_partition_id)
expect(described_class.last.partition_id).to eq(ci_testing_partition_id)
end
end
end
describe '#set_project_id' do
it 'sets the project_id before validation' do
variable = build(:ci_job_variable)
expect(variable.project_id).to eq(variable.job.project_id)
end
it 'does not override the project_id if set' do
another_project = create(:project)
variable = build(:ci_job_variable, project_id: another_project.id)
expect(variable.project_id).to eq(another_project.id)
end
end
context 'with loose foreign key on ci_job_variables.project_id' do
it_behaves_like 'cleanup by a loose foreign key' do
let!(:parent) { create(:project) }
let!(:model) { create(:ci_job_variable, project_id: parent.id) }
end
end
end
|