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 80 81 82 83 84 85 86 87 88 89
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Ci::RunningBuild, feature_category: :continuous_integration do
let_it_be(:group) { create(:group) }
let_it_be(:project) { create(:project, group: group) }
let_it_be(:pipeline) { create(:ci_pipeline, project: project) }
let(:runner) { create(:ci_runner, :instance_type) }
let(:build) { create(:ci_build, :running, runner: runner, pipeline: pipeline) }
describe '.upsert_build!' do
subject(:upsert_build) { described_class.upsert_build!(build) }
context 'another pending entry does not exist' do
it 'creates a new pending entry' do
expect(upsert_build.rows.dig(0, 0)).to eq build.id
expect(build.reload.runtime_metadata).to be_present
end
end
context 'when another queuing entry exists for given build' do
before do
create(:ci_running_build, build: build, project: project, runner: runner)
end
it 'returns a build id as a result' do
expect(upsert_build.rows.dig(0, 0)).to eq build.id
end
end
context 'when build has been picked by a group runner' do
let_it_be(:runner) { create(:ci_runner, :group, groups: [group]) }
it 'returns a build id as a result' do
expect(upsert_build.rows.dig(0, 0)).to eq build.id
end
it 'upserts a running build with a runner_owner_namespace_xid' do
upsert_build
expect(described_class.find_by_build_id(build.id).runner_owner_namespace_xid).to eq group.id
end
end
context 'when build has been picked by a project runner' do
let_it_be(:runner) { create(:ci_runner, :project, projects: [project]) }
it 'returns a build id as a result' do
expect(upsert_build.rows.dig(0, 0)).to eq build.id
end
end
context 'when build has not been picked by a runner yet' do
let(:build) { create(:ci_build, pipeline: pipeline) }
it 'raises an error' do
expect { upsert_build }.to raise_error(ArgumentError, 'build has not been picked by a runner')
end
end
end
describe 'partitioning' do
include Ci::PartitioningHelpers
before do
stub_current_partition_id(ci_testing_partition_id)
end
let(:new_pipeline ) { create(:ci_pipeline, project: pipeline.project) }
let(:new_build) { create(:ci_build, :running, pipeline: new_pipeline, runner: runner) }
it 'assigns the same partition id as the one that build has', :aggregate_failures do
expect(new_build.partition_id).to eq ci_testing_partition_id
described_class.upsert_build!(build)
described_class.upsert_build!(new_build)
expect(build.reload.runtime_metadata.partition_id).to eq pipeline.partition_id
expect(new_build.reload.runtime_metadata.partition_id).to eq ci_testing_partition_id
end
end
it_behaves_like 'cleanup by a loose foreign key' do
let!(:parent) { create(:project) }
let!(:model) { create(:ci_running_build, project: parent) }
end
end
|