2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe PipelineScheduleWorker do
|
2019-07-07 11:18:12 +05:30
|
|
|
include ExclusiveLeaseHelpers
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
subject { described_class.new.perform }
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
let!(:pipeline_schedule) do
|
|
|
|
create(:ci_pipeline_schedule, :nightly, project: project, owner: user)
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2019-02-15 15:39:39 +05:30
|
|
|
stub_application_setting(auto_devops_enabled: false)
|
2017-08-17 22:00:37 +05:30
|
|
|
stub_ci_pipeline_to_return_yaml_file
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
pipeline_schedule.update_column(:next_run_at, 1.day.ago)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when the schedule is runnable by the user' do
|
2017-08-17 22:00:37 +05:30
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(user)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when there is a scheduled pipeline within next_run_at' do
|
2018-03-17 18:26:18 +05:30
|
|
|
shared_examples 'successful scheduling' do
|
2019-12-26 22:10:19 +05:30
|
|
|
it 'creates a new pipeline', :sidekiq_might_not_need_inline do
|
2019-02-15 15:39:39 +05:30
|
|
|
expect { subject }.to change { project.ci_pipelines.count }.by(1)
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(Ci::Pipeline.last).to be_schedule
|
|
|
|
|
|
|
|
pipeline_schedule.reload
|
2020-07-28 23:09:34 +05:30
|
|
|
expect(pipeline_schedule.next_run_at).to be > Time.current
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(pipeline_schedule).to eq(project.ci_pipelines.last.pipeline_schedule)
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(pipeline_schedule).to be_active
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
it_behaves_like 'successful scheduling'
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
context 'when the latest commit contains [ci skip]' do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(Ci::Pipeline)
|
|
|
|
.to receive(:git_commit_message)
|
|
|
|
.and_return('some commit [ci skip]')
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
it_behaves_like 'successful scheduling'
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
context 'when the schedule is deactivated' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
pipeline_schedule.deactivate!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not creates a new pipeline' do
|
2019-02-15 15:39:39 +05:30
|
|
|
expect { subject }.not_to change { project.ci_pipelines.count }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when gitlab-ci.yml is corrupted' do
|
|
|
|
before do
|
|
|
|
stub_ci_pipeline_yaml_file(YAML.dump(rspec: { variables: 'rspec' } ))
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'does not creates a new pipeline' do
|
|
|
|
expect { subject }.not_to change { project.ci_pipelines.count }
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when the schedule is not runnable by the user' do
|
2019-02-15 15:39:39 +05:30
|
|
|
it 'does not deactivate the schedule' do
|
2017-09-10 17:25:29 +05:30
|
|
|
subject
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(pipeline_schedule.reload.active).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a pipeline' do
|
|
|
|
expect { subject }.not_to change { project.ci_pipelines.count }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not raise an exception' do
|
|
|
|
expect { subject }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when .gitlab-ci.yml is missing in the project' do
|
|
|
|
before do
|
|
|
|
stub_ci_pipeline_yaml_file(nil)
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a pipeline' do
|
|
|
|
expect { subject }.not_to change { project.ci_pipelines.count }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
it 'does not raise an exception' do
|
|
|
|
expect { subject }.not_to raise_error
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
|
|
|
|
context 'when the project is missing' do
|
|
|
|
before do
|
|
|
|
project.delete
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not raise an exception' do
|
|
|
|
expect { subject }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|