debian-mirror-gitlab/spec/services/ci/register_job_service_spec.rb

838 lines
30 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2015-09-25 12:07:36 +05:30
require 'spec_helper'
module Ci
2020-07-28 23:09:34 +05:30
RSpec.describe RegisterJobService do
2020-03-13 15:44:24 +05:30
let_it_be(:group) { create(:group) }
let_it_be(:project, reload: true) { create(:project, group: group, shared_runners_enabled: false, group_runners_enabled: false) }
let_it_be(:pipeline) { create(:ci_pipeline, project: project) }
2018-11-08 19:23:39 +05:30
let!(:shared_runner) { create(:ci_runner, :instance) }
let!(:specific_runner) { create(:ci_runner, :project, projects: [project]) }
let!(:group_runner) { create(:ci_runner, :group, groups: [group]) }
2018-10-15 14:42:47 +05:30
let!(:pending_job) { create(:ci_build, pipeline: pipeline) }
2015-09-25 12:07:36 +05:30
2016-08-24 12:49:21 +05:30
describe '#execute' do
2021-04-17 20:07:23 +05:30
shared_examples 'handles runner assignment' do
context 'runner follow tag list' do
it "picks build with the same tag" do
pending_job.update!(tag_list: ["linux"])
specific_runner.update!(tag_list: ["linux"])
expect(execute(specific_runner)).to eq(pending_job)
end
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it "does not pick build with different tag" do
pending_job.update!(tag_list: ["linux"])
specific_runner.update!(tag_list: ["win32"])
expect(execute(specific_runner)).to be_falsey
end
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it "picks build without tag" do
expect(execute(specific_runner)).to eq(pending_job)
end
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it "does not pick build with tag" do
pending_job.update!(tag_list: ["linux"])
expect(execute(specific_runner)).to be_falsey
end
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it "pick build without tag" do
specific_runner.update!(tag_list: ["win32"])
expect(execute(specific_runner)).to eq(pending_job)
end
2016-06-22 15:30:34 +05:30
end
2021-04-17 20:07:23 +05:30
context 'deleted projects' do
2016-06-22 15:30:34 +05:30
before do
2021-04-17 20:07:23 +05:30
project.update!(pending_delete: true)
2016-06-22 15:30:34 +05:30
end
2021-04-17 20:07:23 +05:30
context 'for shared runners' do
before do
project.update!(shared_runners_enabled: true)
end
it 'does not pick a build' do
expect(execute(shared_runner)).to be_nil
end
2016-06-22 15:30:34 +05:30
end
2021-04-17 20:07:23 +05:30
context 'for specific runner' do
it 'does not pick a build' do
expect(execute(specific_runner)).to be_nil
end
2016-06-22 15:30:34 +05:30
end
end
2021-04-17 20:07:23 +05:30
context 'allow shared runners' do
before do
project.update!(shared_runners_enabled: true)
end
context 'for multiple builds' do
let!(:project2) { create :project, shared_runners_enabled: true }
let!(:pipeline2) { create :ci_pipeline, project: project2 }
let!(:project3) { create :project, shared_runners_enabled: true }
let!(:pipeline3) { create :ci_pipeline, project: project3 }
let!(:build1_project1) { pending_job }
let!(:build2_project1) { FactoryBot.create :ci_build, pipeline: pipeline }
let!(:build3_project1) { FactoryBot.create :ci_build, pipeline: pipeline }
let!(:build1_project2) { FactoryBot.create :ci_build, pipeline: pipeline2 }
let!(:build2_project2) { FactoryBot.create :ci_build, pipeline: pipeline2 }
let!(:build1_project3) { FactoryBot.create :ci_build, pipeline: pipeline3 }
it 'prefers projects without builds first' do
# it gets for one build from each of the projects
expect(execute(shared_runner)).to eq(build1_project1)
expect(execute(shared_runner)).to eq(build1_project2)
expect(execute(shared_runner)).to eq(build1_project3)
# then it gets a second build from each of the projects
expect(execute(shared_runner)).to eq(build2_project1)
expect(execute(shared_runner)).to eq(build2_project2)
# in the end the third build
expect(execute(shared_runner)).to eq(build3_project1)
end
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it 'equalises number of running builds' do
# after finishing the first build for project 1, get a second build from the same project
expect(execute(shared_runner)).to eq(build1_project1)
build1_project1.reload.success
expect(execute(shared_runner)).to eq(build2_project1)
expect(execute(shared_runner)).to eq(build1_project2)
build1_project2.reload.success
expect(execute(shared_runner)).to eq(build2_project2)
expect(execute(shared_runner)).to eq(build1_project3)
expect(execute(shared_runner)).to eq(build3_project1)
end
2016-06-22 15:30:34 +05:30
end
2021-04-17 20:07:23 +05:30
context 'shared runner' do
let(:response) { described_class.new(shared_runner).execute }
let(:build) { response.build }
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_kind_of(Build) }
it { expect(build).to be_valid }
it { expect(build).to be_running }
it { expect(build.runner).to eq(shared_runner) }
it { expect(Gitlab::Json.parse(response.build_json)['id']).to eq(build.id) }
end
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
context 'specific runner' do
let(:build) { execute(specific_runner) }
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_kind_of(Build) }
it { expect(build).to be_valid }
it { expect(build).to be_running }
it { expect(build.runner).to eq(specific_runner) }
end
2015-09-25 12:07:36 +05:30
end
2021-04-17 20:07:23 +05:30
context 'disallow shared runners' do
before do
project.update!(shared_runners_enabled: false)
end
2015-11-26 14:37:03 +05:30
2021-04-17 20:07:23 +05:30
context 'shared runner' do
let(:build) { execute(shared_runner) }
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_nil }
end
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
context 'specific runner' do
let(:build) { execute(specific_runner) }
2015-09-25 12:07:36 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_kind_of(Build) }
it { expect(build).to be_valid }
it { expect(build).to be_running }
it { expect(build.runner).to eq(specific_runner) }
end
2015-09-25 12:07:36 +05:30
end
2016-09-29 09:46:39 +05:30
2021-04-17 20:07:23 +05:30
context 'disallow when builds are disabled' do
before do
project.update!(shared_runners_enabled: true, group_runners_enabled: true)
project.project_feature.update_attribute(:builds_access_level, ProjectFeature::DISABLED)
end
2016-09-29 09:46:39 +05:30
2021-04-17 20:07:23 +05:30
context 'and uses shared runner' do
let(:build) { execute(shared_runner) }
2016-09-29 09:46:39 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_nil }
end
2016-09-29 09:46:39 +05:30
2021-04-17 20:07:23 +05:30
context 'and uses group runner' do
let(:build) { execute(group_runner) }
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_nil }
end
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
context 'and uses project runner' do
let(:build) { execute(specific_runner) }
2016-09-29 09:46:39 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_nil }
end
2016-09-29 09:46:39 +05:30
end
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
context 'allow group runners' do
before do
project.update!(group_runners_enabled: true)
end
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
context 'for multiple builds' do
let!(:project2) { create(:project, group_runners_enabled: true, group: group) }
let!(:pipeline2) { create(:ci_pipeline, project: project2) }
let!(:project3) { create(:project, group_runners_enabled: true, group: group) }
let!(:pipeline3) { create(:ci_pipeline, project: project3) }
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
let!(:build1_project1) { pending_job }
let!(:build2_project1) { create(:ci_build, pipeline: pipeline) }
let!(:build3_project1) { create(:ci_build, pipeline: pipeline) }
let!(:build1_project2) { create(:ci_build, pipeline: pipeline2) }
let!(:build2_project2) { create(:ci_build, pipeline: pipeline2) }
let!(:build1_project3) { create(:ci_build, pipeline: pipeline3) }
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
# these shouldn't influence the scheduling
let!(:unrelated_group) { create(:group) }
let!(:unrelated_project) { create(:project, group_runners_enabled: true, group: unrelated_group) }
let!(:unrelated_pipeline) { create(:ci_pipeline, project: unrelated_project) }
let!(:build1_unrelated_project) { create(:ci_build, pipeline: unrelated_pipeline) }
let!(:unrelated_group_runner) { create(:ci_runner, :group, groups: [unrelated_group]) }
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
it 'does not consider builds from other group runners' do
expect(described_class.new(group_runner).send(:builds_for_group_runner).count).to eq 6
execute(group_runner)
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
expect(described_class.new(group_runner).send(:builds_for_group_runner).count).to eq 5
execute(group_runner)
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
expect(described_class.new(group_runner).send(:builds_for_group_runner).count).to eq 4
execute(group_runner)
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
expect(described_class.new(group_runner).send(:builds_for_group_runner).count).to eq 3
execute(group_runner)
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
expect(described_class.new(group_runner).send(:builds_for_group_runner).count).to eq 2
execute(group_runner)
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
expect(described_class.new(group_runner).send(:builds_for_group_runner).count).to eq 1
execute(group_runner)
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
expect(described_class.new(group_runner).send(:builds_for_group_runner).count).to eq 0
expect(execute(group_runner)).to be_nil
end
2018-10-15 14:42:47 +05:30
end
2021-04-17 20:07:23 +05:30
context 'group runner' do
let(:build) { execute(group_runner) }
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_kind_of(Build) }
it { expect(build).to be_valid }
it { expect(build).to be_running }
it { expect(build.runner).to eq(group_runner) }
end
2018-10-15 14:42:47 +05:30
end
2021-04-17 20:07:23 +05:30
context 'disallow group runners' do
before do
project.update!(group_runners_enabled: false)
end
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
context 'group runner' do
let(:build) { execute(group_runner) }
2018-10-15 14:42:47 +05:30
2021-04-17 20:07:23 +05:30
it { expect(build).to be_nil }
end
2018-10-15 14:42:47 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when first build is stalled' do
before do
allow_any_instance_of(Ci::RegisterJobService).to receive(:assign_runner!).and_call_original
allow_any_instance_of(Ci::RegisterJobService).to receive(:assign_runner!)
.with(pending_job, anything).and_raise(ActiveRecord::StaleObjectError)
end
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
subject { described_class.new(specific_runner).execute }
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
context 'with multiple builds are in queue' do
let!(:other_build) { create :ci_build, pipeline: pipeline }
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
before do
allow_any_instance_of(Ci::RegisterJobService).to receive(:builds_for_project_runner)
.and_return(Ci::Build.where(id: [pending_job, other_build]))
end
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
it "receives second build from the queue" do
expect(subject).to be_valid
expect(subject.build).to eq(other_build)
end
2017-08-17 22:00:37 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when single build is in queue' do
before do
allow_any_instance_of(Ci::RegisterJobService).to receive(:builds_for_project_runner)
.and_return(Ci::Build.where(id: pending_job))
end
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
it "does not receive any valid result" do
expect(subject).not_to be_valid
end
2017-08-17 22:00:37 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when there is no build in queue' do
before do
allow_any_instance_of(Ci::RegisterJobService).to receive(:builds_for_project_runner)
.and_return(Ci::Build.none)
end
2017-08-17 22:00:37 +05:30
2021-04-17 20:07:23 +05:30
it "does not receive builds but result is valid" do
expect(subject).to be_valid
expect(subject.build).to be_nil
end
2017-08-17 22:00:37 +05:30
end
end
2021-04-17 20:07:23 +05:30
context 'when access_level of runner is not_protected' do
let!(:specific_runner) { create(:ci_runner, :project, projects: [project]) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
context 'when a job is protected' do
let!(:pending_job) { create(:ci_build, :protected, pipeline: pipeline) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it 'picks the job' do
expect(execute(specific_runner)).to eq(pending_job)
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when a job is unprotected' do
let!(:pending_job) { create(:ci_build, pipeline: pipeline) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it 'picks the job' do
expect(execute(specific_runner)).to eq(pending_job)
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when protected attribute of a job is nil' do
let!(:pending_job) { create(:ci_build, pipeline: pipeline) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
before do
pending_job.update_attribute(:protected, nil)
end
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it 'picks the job' do
expect(execute(specific_runner)).to eq(pending_job)
end
2018-03-17 18:26:18 +05:30
end
end
2021-04-17 20:07:23 +05:30
context 'when access_level of runner is ref_protected' do
let!(:specific_runner) { create(:ci_runner, :project, :ref_protected, projects: [project]) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
context 'when a job is protected' do
let!(:pending_job) { create(:ci_build, :protected, pipeline: pipeline) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it 'picks the job' do
expect(execute(specific_runner)).to eq(pending_job)
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when a job is unprotected' do
let!(:pending_job) { create(:ci_build, pipeline: pipeline) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it 'does not pick the job' do
expect(execute(specific_runner)).to be_nil
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when protected attribute of a job is nil' do
let!(:pending_job) { create(:ci_build, pipeline: pipeline) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
before do
pending_job.update_attribute(:protected, nil)
end
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it 'does not pick the job' do
expect(execute(specific_runner)).to be_nil
end
2018-03-17 18:26:18 +05:30
end
end
2021-04-17 20:07:23 +05:30
context 'runner feature set is verified' do
let(:options) { { artifacts: { reports: { junit: "junit.xml" } } } }
let!(:pending_job) { create(:ci_build, :pending, pipeline: pipeline, options: options) }
2018-11-18 11:00:15 +05:30
2021-04-17 20:07:23 +05:30
subject { execute(specific_runner, params) }
2018-11-18 11:00:15 +05:30
2021-04-17 20:07:23 +05:30
context 'when feature is missing by runner' do
let(:params) { {} }
2018-11-18 11:00:15 +05:30
2021-04-17 20:07:23 +05:30
it 'does not pick the build and drops the build' do
expect(subject).to be_nil
expect(pending_job.reload).to be_failed
expect(pending_job).to be_runner_unsupported
end
2018-11-18 11:00:15 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when feature is supported by runner' do
let(:params) do
{ info: { features: { upload_multiple_artifacts: true } } }
end
2018-11-18 11:00:15 +05:30
2021-04-17 20:07:23 +05:30
it 'does pick job' do
expect(subject).not_to be_nil
end
2018-11-18 11:00:15 +05:30
end
end
2021-04-17 20:07:23 +05:30
context 'when "dependencies" keyword is specified' do
shared_examples 'not pick' do
it 'does not pick the build and drops the build' do
expect(subject).to be_nil
expect(pending_job.reload).to be_failed
expect(pending_job).to be_missing_dependency_failure
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
shared_examples 'validation is active' do
context 'when depended job has not been completed yet' do
let!(:pre_stage_job) { create(:ci_build, :manual, pipeline: pipeline, name: 'test', stage_idx: 0) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it { expect(subject).to eq(pending_job) }
end
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
context 'when artifacts of depended job has been expired' do
let!(:pre_stage_job) { create(:ci_build, :success, :expired, pipeline: pipeline, name: 'test', stage_idx: 0) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it_behaves_like 'not pick'
end
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
context 'when artifacts of depended job has been erased' do
let!(:pre_stage_job) { create(:ci_build, :success, pipeline: pipeline, name: 'test', stage_idx: 0, erased_at: 1.minute.ago) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
before do
pre_stage_job.erase
end
it_behaves_like 'not pick'
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when job object is staled' do
let!(:pre_stage_job) { create(:ci_build, :success, :expired, pipeline: pipeline, name: 'test', stage_idx: 0) }
before do
allow_any_instance_of(Ci::Build).to receive(:drop!)
.and_raise(ActiveRecord::StaleObjectError.new(pending_job, :drop!))
end
it 'does not drop nor pick' do
expect(subject).to be_nil
end
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
shared_examples 'validation is not active' do
context 'when depended job has not been completed yet' do
let!(:pre_stage_job) { create(:ci_build, :manual, pipeline: pipeline, name: 'test', stage_idx: 0) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it { expect(subject).to eq(pending_job) }
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when artifacts of depended job has been expired' do
let!(:pre_stage_job) { create(:ci_build, :success, :expired, pipeline: pipeline, name: 'test', stage_idx: 0) }
it { expect(subject).to eq(pending_job) }
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when artifacts of depended job has been erased' do
let!(:pre_stage_job) { create(:ci_build, :success, pipeline: pipeline, name: 'test', stage_idx: 0, erased_at: 1.minute.ago) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
before do
pre_stage_job.erase
end
it { expect(subject).to eq(pending_job) }
end
2018-03-17 18:26:18 +05:30
end
2018-11-18 11:00:15 +05:30
2021-04-17 20:07:23 +05:30
before do
stub_feature_flags(ci_validate_build_dependencies_override: false)
end
let!(:pre_stage_job) { create(:ci_build, :success, pipeline: pipeline, name: 'test', stage_idx: 0) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
let!(:pending_job) do
create(:ci_build, :pending,
pipeline: pipeline, stage_idx: 1,
options: { script: ["bash"], dependencies: ['test'] })
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
subject { execute(specific_runner) }
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
context 'when validates for dependencies is enabled' do
2018-03-17 18:26:18 +05:30
before do
2021-04-17 20:07:23 +05:30
stub_feature_flags(ci_validate_build_dependencies_override: false)
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
it_behaves_like 'validation is active'
context 'when the main feature flag is enabled for a specific project' do
before do
stub_feature_flags(ci_validate_build_dependencies: pipeline.project)
end
it_behaves_like 'validation is active'
end
context 'when the main feature flag is enabled for a different project' do
before do
stub_feature_flags(ci_validate_build_dependencies: create(:project))
end
it_behaves_like 'validation is not active'
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when validates for dependencies is disabled' do
before do
stub_feature_flags(ci_validate_build_dependencies_override: true)
end
it_behaves_like 'validation is not active'
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when build is degenerated' do
let!(:pending_job) { create(:ci_build, :pending, :degenerated, pipeline: pipeline) }
subject { execute(specific_runner, {}) }
it 'does not pick the build and drops the build' do
expect(subject).to be_nil
2019-02-15 15:39:39 +05:30
2021-04-17 20:07:23 +05:30
pending_job.reload
expect(pending_job).to be_failed
expect(pending_job).to be_archived_failure
end
2019-02-15 15:39:39 +05:30
end
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
context 'when build has data integrity problem' do
let!(:pending_job) do
create(:ci_build, :pending, pipeline: pipeline)
end
2018-03-17 18:26:18 +05:30
before do
2021-04-17 20:07:23 +05:30
pending_job.update_columns(options: "string")
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
subject { execute(specific_runner, {}) }
2021-03-11 19:13:27 +05:30
2021-04-17 20:07:23 +05:30
it 'does drop the build and logs both failures' do
expect(Gitlab::ErrorTracking).to receive(:track_exception)
.with(anything, a_hash_including(build_id: pending_job.id))
.twice
.and_call_original
2021-03-11 19:13:27 +05:30
2021-04-17 20:07:23 +05:30
expect(subject).to be_nil
2021-03-11 19:13:27 +05:30
2021-04-17 20:07:23 +05:30
pending_job.reload
expect(pending_job).to be_failed
expect(pending_job).to be_data_integrity_failure
2021-03-11 19:13:27 +05:30
end
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when build fails to be run!' do
let!(:pending_job) do
create(:ci_build, :pending, pipeline: pipeline)
end
2018-03-17 18:26:18 +05:30
before do
2021-04-17 20:07:23 +05:30
expect_any_instance_of(Ci::Build).to receive(:run!)
.and_raise(RuntimeError, 'scheduler error')
2018-03-17 18:26:18 +05:30
end
2021-04-17 20:07:23 +05:30
subject { execute(specific_runner, {}) }
it 'does drop the build and logs failure' do
expect(Gitlab::ErrorTracking).to receive(:track_exception)
.with(anything, a_hash_including(build_id: pending_job.id))
.once
.and_call_original
expect(subject).to be_nil
pending_job.reload
expect(pending_job).to be_failed
expect(pending_job).to be_scheduler_failure
end
2018-03-17 18:26:18 +05:30
end
2018-12-13 13:39:08 +05:30
2021-04-17 20:07:23 +05:30
context 'when an exception is raised during a persistent ref creation' do
before do
allow_any_instance_of(Ci::PersistentRef).to receive(:exist?) { false }
allow_any_instance_of(Ci::PersistentRef).to receive(:create_ref) { raise ArgumentError }
end
2018-12-13 13:39:08 +05:30
2021-04-17 20:07:23 +05:30
subject { execute(specific_runner, {}) }
2018-12-13 13:39:08 +05:30
2021-04-17 20:07:23 +05:30
it 'picks the build' do
expect(subject).to eq(pending_job)
2018-12-13 13:39:08 +05:30
2021-04-17 20:07:23 +05:30
pending_job.reload
expect(pending_job).to be_running
end
2018-12-13 13:39:08 +05:30
end
2019-12-21 20:55:43 +05:30
2021-04-17 20:07:23 +05:30
context 'when only some builds can be matched by runner' do
let!(:specific_runner) { create(:ci_runner, :project, projects: [project], tag_list: %w[matching]) }
let!(:pending_job) { create(:ci_build, pipeline: pipeline, tag_list: %w[matching]) }
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
before do
# create additional matching and non-matching jobs
create_list(:ci_build, 2, pipeline: pipeline, tag_list: %w[matching])
create(:ci_build, pipeline: pipeline, tag_list: %w[non-matching])
end
it "observes queue size of only matching jobs" do
# pending_job + 2 x matching ones
expect(Gitlab::Ci::Queue::Metrics.queue_size_total).to receive(:observe).with({}, 3)
expect(execute(specific_runner)).to eq(pending_job)
end
2019-12-26 22:10:19 +05:30
end
2021-04-17 20:07:23 +05:30
context 'when ci_register_job_temporary_lock is enabled' do
before do
stub_feature_flags(ci_register_job_temporary_lock: true)
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
allow(Gitlab::Ci::Queue::Metrics.queue_operations_total).to receive(:increment)
end
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
context 'when a build is temporarily locked' do
let(:service) { described_class.new(specific_runner) }
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
before do
service.send(:acquire_temporary_lock, pending_job.id)
end
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
it 'skips this build and marks queue as invalid' do
expect(Gitlab::Ci::Queue::Metrics.queue_operations_total).to receive(:increment)
.with(operation: :queue_iteration)
expect(Gitlab::Ci::Queue::Metrics.queue_operations_total).to receive(:increment)
.with(operation: :build_temporary_locked)
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
expect(service.execute).not_to be_valid
end
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
context 'when there is another build in queue' do
let!(:next_pending_job) { create(:ci_build, pipeline: pipeline) }
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
it 'skips this build and picks another build' do
expect(Gitlab::Ci::Queue::Metrics.queue_operations_total).to receive(:increment)
.with(operation: :queue_iteration).twice
expect(Gitlab::Ci::Queue::Metrics.queue_operations_total).to receive(:increment)
.with(operation: :build_temporary_locked)
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
result = service.execute
2019-12-26 22:10:19 +05:30
2021-04-17 20:07:23 +05:30
expect(result.build).to eq(next_pending_job)
expect(result).to be_valid
end
end
end
2019-12-26 22:10:19 +05:30
end
end
2021-04-17 20:07:23 +05:30
context 'when ci_register_job_service_one_by_one is enabled' do
2019-12-21 20:55:43 +05:30
before do
2021-04-17 20:07:23 +05:30
stub_feature_flags(ci_register_job_service_one_by_one: true)
2019-12-21 20:55:43 +05:30
end
2021-04-17 20:07:23 +05:30
it 'picks builds one-by-one' do
expect(Ci::Build).to receive(:find).with(pending_job.id).and_call_original
2019-12-21 20:55:43 +05:30
2021-04-17 20:07:23 +05:30
expect(execute(specific_runner)).to eq(pending_job)
end
include_examples 'handles runner assignment'
end
2019-12-21 20:55:43 +05:30
2021-04-17 20:07:23 +05:30
context 'when ci_register_job_service_one_by_one is disabled' do
before do
stub_feature_flags(ci_register_job_service_one_by_one: false)
2019-12-21 20:55:43 +05:30
end
2021-04-17 20:07:23 +05:30
include_examples 'handles runner assignment'
2019-12-21 20:55:43 +05:30
end
2018-10-15 14:42:47 +05:30
end
describe '#register_success' do
2020-05-24 23:13:21 +05:30
let!(:current_time) { Time.zone.local(2018, 4, 5, 14, 0, 0) }
2018-10-15 14:42:47 +05:30
let!(:attempt_counter) { double('Gitlab::Metrics::NullMetric') }
let!(:job_queue_duration_seconds) { double('Gitlab::Metrics::NullMetric') }
before do
allow(Time).to receive(:now).and_return(current_time)
# Stub tested metrics
2021-04-17 20:07:23 +05:30
allow(Gitlab::Ci::Queue::Metrics)
.to receive(:attempt_counter)
.and_return(attempt_counter)
allow(Gitlab::Ci::Queue::Metrics)
.to receive(:job_queue_duration_seconds)
.and_return(job_queue_duration_seconds)
2018-10-15 14:42:47 +05:30
2020-11-24 15:15:51 +05:30
project.update!(shared_runners_enabled: true)
pending_job.update!(created_at: current_time - 3600, queued_at: current_time - 1800)
2018-10-15 14:42:47 +05:30
end
shared_examples 'attempt counter collector' do
it 'increments attempt counter' do
allow(job_queue_duration_seconds).to receive(:observe)
expect(attempt_counter).to receive(:increment)
execute(runner)
end
end
shared_examples 'jobs queueing time histogram collector' do
it 'counts job queuing time histogram with expected labels' do
allow(attempt_counter).to receive(:increment)
expect(job_queue_duration_seconds).to receive(:observe)
.with({ shared_runner: expected_shared_runner,
2020-04-08 14:13:33 +05:30
jobs_running_for_project: expected_jobs_running_for_project_first_job,
shard: expected_shard }, 1800)
2018-10-15 14:42:47 +05:30
execute(runner)
end
context 'when project already has running jobs' do
let!(:build2) { create( :ci_build, :running, pipeline: pipeline, runner: shared_runner) }
let!(:build3) { create( :ci_build, :running, pipeline: pipeline, runner: shared_runner) }
2018-03-17 18:26:18 +05:30
2018-10-15 14:42:47 +05:30
it 'counts job queuing time histogram with expected labels' do
allow(attempt_counter).to receive(:increment)
expect(job_queue_duration_seconds).to receive(:observe)
.with({ shared_runner: expected_shared_runner,
2020-04-08 14:13:33 +05:30
jobs_running_for_project: expected_jobs_running_for_project_third_job,
shard: expected_shard }, 1800)
2018-10-15 14:42:47 +05:30
execute(runner)
end
end
2017-08-17 22:00:37 +05:30
end
2018-10-15 14:42:47 +05:30
shared_examples 'metrics collector' do
it_behaves_like 'attempt counter collector'
it_behaves_like 'jobs queueing time histogram collector'
end
context 'when shared runner is used' do
2020-04-08 14:13:33 +05:30
let(:runner) { create(:ci_runner, :instance, tag_list: %w(tag1 tag2)) }
2018-10-15 14:42:47 +05:30
let(:expected_shared_runner) { true }
2021-04-17 20:07:23 +05:30
let(:expected_shard) { ::Gitlab::Ci::Queue::Metrics::DEFAULT_METRICS_SHARD }
2018-10-15 14:42:47 +05:30
let(:expected_jobs_running_for_project_first_job) { 0 }
let(:expected_jobs_running_for_project_third_job) { 2 }
it_behaves_like 'metrics collector'
2020-04-08 14:13:33 +05:30
context 'when metrics_shard tag is defined' do
let(:runner) { create(:ci_runner, :instance, tag_list: %w(tag1 metrics_shard::shard_tag tag2)) }
let(:expected_shard) { 'shard_tag' }
it_behaves_like 'metrics collector'
end
context 'when multiple metrics_shard tag is defined' do
let(:runner) { create(:ci_runner, :instance, tag_list: %w(tag1 metrics_shard::shard_tag metrics_shard::shard_tag_2 tag2)) }
let(:expected_shard) { 'shard_tag' }
it_behaves_like 'metrics collector'
end
2018-10-15 14:42:47 +05:30
context 'when pending job with queued_at=nil is used' do
before do
2020-11-24 15:15:51 +05:30
pending_job.update!(queued_at: nil)
2018-10-15 14:42:47 +05:30
end
it_behaves_like 'attempt counter collector'
it "doesn't count job queuing time histogram" do
allow(attempt_counter).to receive(:increment)
expect(job_queue_duration_seconds).not_to receive(:observe)
execute(runner)
end
end
end
context 'when specific runner is used' do
2020-04-08 14:13:33 +05:30
let(:runner) { create(:ci_runner, :project, projects: [project], tag_list: %w(tag1 metrics_shard::shard_tag tag2)) }
2018-10-15 14:42:47 +05:30
let(:expected_shared_runner) { false }
2021-04-17 20:07:23 +05:30
let(:expected_shard) { ::Gitlab::Ci::Queue::Metrics::DEFAULT_METRICS_SHARD }
2018-10-15 14:42:47 +05:30
let(:expected_jobs_running_for_project_first_job) { '+Inf' }
let(:expected_jobs_running_for_project_third_job) { '+Inf' }
it_behaves_like 'metrics collector'
end
end
2018-11-08 19:23:39 +05:30
context 'when runner_session params are' do
it 'present sets runner session configuration in the build' do
runner_session_params = { session: { 'url' => 'https://example.com' } }
expect(execute(specific_runner, runner_session_params).runner_session.attributes)
.to include(runner_session_params[:session])
end
it 'not present it does not configure the runner session' do
expect(execute(specific_runner).runner_session).to be_nil
end
end
2021-04-17 20:07:23 +05:30
context 'when max queue depth is reached' do
let!(:pending_job) { create(:ci_build, :pending, :degenerated, pipeline: pipeline) }
let!(:pending_job_2) { create(:ci_build, :pending, :degenerated, pipeline: pipeline) }
let!(:pending_job_3) { create(:ci_build, :pending, pipeline: pipeline) }
before do
stub_const("#{described_class}::MAX_QUEUE_DEPTH", 2)
end
context 'when feature is enabled' do
before do
stub_feature_flags(gitlab_ci_builds_queue_limit: true)
end
it 'returns 409 conflict' do
expect(Ci::Build.pending.unstarted.count).to eq 3
result = described_class.new(specific_runner).execute
expect(result).not_to be_valid
expect(result.build).to be_nil
end
end
context 'when feature is disabled' do
before do
stub_feature_flags(gitlab_ci_builds_queue_limit: false)
end
it 'returns a valid result' do
expect(Ci::Build.pending.unstarted.count).to eq 3
result = described_class.new(specific_runner).execute
expect(result).to be_valid
expect(result.build).to eq pending_job_3
end
end
end
2018-11-08 19:23:39 +05:30
def execute(runner, params = {})
described_class.new(runner).execute(params).build
2015-09-25 12:07:36 +05:30
end
end
end