2019-03-30 03:15:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-04 07:27:48 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 11:08:50 -04:00
|
|
|
RSpec.describe PipelineProcessWorker do
|
2021-06-14 11:09:48 -04:00
|
|
|
let_it_be(:pipeline) { create(:ci_pipeline) }
|
|
|
|
|
|
|
|
include_examples 'an idempotent worker' do
|
|
|
|
let(:pipeline) { create(:ci_pipeline, :created) }
|
|
|
|
let(:job_args) { [pipeline.id] }
|
|
|
|
|
|
|
|
before do
|
|
|
|
create(:ci_build, :created, pipeline: pipeline)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'processes the pipeline' do
|
|
|
|
expect(pipeline.status).to eq('created')
|
|
|
|
expect(pipeline.processables.pluck(:status)).to contain_exactly('created')
|
|
|
|
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(pipeline.reload.status).to eq('pending')
|
|
|
|
expect(pipeline.processables.pluck(:status)).to contain_exactly('pending')
|
|
|
|
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(pipeline.reload.status).to eq('pending')
|
|
|
|
expect(pipeline.processables.pluck(:status)).to contain_exactly('pending')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-04 07:27:48 -04:00
|
|
|
describe '#perform' do
|
|
|
|
context 'when pipeline exists' do
|
|
|
|
it 'processes pipeline' do
|
2019-11-19 07:06:00 -05:00
|
|
|
expect_any_instance_of(Ci::ProcessPipelineService).to receive(:execute)
|
2016-10-04 07:27:48 -04:00
|
|
|
|
|
|
|
described_class.new.perform(pipeline.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when pipeline does not exist' do
|
|
|
|
it 'does not raise exception' do
|
2021-06-14 11:09:48 -04:00
|
|
|
expect { described_class.new.perform(non_existing_record_id) }
|
2016-10-04 07:27:48 -04:00
|
|
|
.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|