2019-03-30 03:15:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-12 07:44:33 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 11:08:50 -04:00
|
|
|
RSpec.describe PipelineHooksWorker do
|
2016-10-12 07:44:33 -04:00
|
|
|
describe '#perform' do
|
|
|
|
context 'when pipeline exists' do
|
|
|
|
let(:pipeline) { create(:ci_pipeline) }
|
|
|
|
|
|
|
|
it 'executes hooks for the pipeline' do
|
2021-10-08 08:11:10 -04:00
|
|
|
hook_service = double
|
|
|
|
|
|
|
|
expect(Ci::Pipelines::HookService).to receive(:new).and_return(hook_service)
|
|
|
|
expect(hook_service).to receive(:execute)
|
2016-10-12 07:44:33 -04:00
|
|
|
|
|
|
|
described_class.new.perform(pipeline.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when pipeline does not exist' do
|
|
|
|
it 'does not raise exception' do
|
2021-10-08 08:11:10 -04:00
|
|
|
expect(Ci::Pipelines::HookService).not_to receive(:new)
|
|
|
|
|
2016-10-12 07:44:33 -04:00
|
|
|
expect { described_class.new.perform(123) }
|
|
|
|
.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-06-11 05:09:58 -04:00
|
|
|
|
|
|
|
it_behaves_like 'worker with data consistency',
|
|
|
|
described_class,
|
|
|
|
data_consistency: :delayed
|
2016-10-12 07:44:33 -04:00
|
|
|
end
|