debian-mirror-gitlab/spec/workers/pipeline_process_worker_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.6 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2016-11-03 12:29:30 +05:30
require 'spec_helper'
2023-05-27 22:25:52 +05:30
RSpec.describe PipelineProcessWorker, feature_category: :continuous_integration do
2021-09-04 01:27:46 +05:30
let_it_be(:pipeline) { create(:ci_pipeline) }
2023-07-09 08:55:56 +05:30
it 'has the `until_executed` deduplicate strategy' do
expect(described_class.get_deduplicate_strategy).to eq(:until_executed)
end
it 'has the option to reschedule once if deduplicated and a TTL of 1 minute' do
expect(described_class.get_deduplication_options).to include({ if_deduplicated: :reschedule_once, ttl: 1.minute })
end
2021-09-04 01:27:46 +05:30
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-11-03 12:29:30 +05:30
describe '#perform' do
context 'when pipeline exists' do
it 'processes pipeline' do
2020-01-01 13:55:28 +05:30
expect_any_instance_of(Ci::ProcessPipelineService).to receive(:execute)
2016-11-03 12:29:30 +05:30
described_class.new.perform(pipeline.id)
end
end
context 'when pipeline does not exist' do
it 'does not raise exception' do
2021-09-04 01:27:46 +05:30
expect { described_class.new.perform(non_existing_record_id) }
2016-11-03 12:29:30 +05:30
.not_to raise_error
end
end
end
end