2019-03-30 03:15:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-13 06:45:16 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 11:08:50 -04:00
|
|
|
RSpec.describe BuildHooksWorker do
|
2016-10-13 06:45:16 -04:00
|
|
|
describe '#perform' do
|
|
|
|
context 'when build exists' do
|
|
|
|
let!(:build) { create(:ci_build) }
|
|
|
|
|
|
|
|
it 'calls build hooks' do
|
|
|
|
expect_any_instance_of(Ci::Build)
|
|
|
|
.to receive(:execute_hooks)
|
|
|
|
|
|
|
|
described_class.new.perform(build.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when build does not exist' do
|
|
|
|
it 'does not raise exception' do
|
|
|
|
expect { described_class.new.perform(123) }
|
|
|
|
.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-03-26 14:09:16 -04:00
|
|
|
|
2022-07-04 20:09:38 -04:00
|
|
|
describe '.perform_async' do
|
|
|
|
it 'sends a message to the application logger, before performing', :sidekiq_inline do
|
|
|
|
build = create(:ci_build)
|
|
|
|
|
|
|
|
expect(Gitlab::AppLogger).to receive(:info).with(
|
|
|
|
message: include('Enqueuing hooks for Build'),
|
|
|
|
class: described_class.name,
|
|
|
|
build_id: build.id,
|
|
|
|
pipeline_id: build.pipeline_id,
|
|
|
|
project_id: build.project_id,
|
|
|
|
build_status: build.status
|
|
|
|
)
|
|
|
|
|
|
|
|
expect_any_instance_of(Ci::Build).to receive(:execute_hooks)
|
|
|
|
|
|
|
|
described_class.perform_async(build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-26 14:09:16 -04:00
|
|
|
it_behaves_like 'worker with data consistency',
|
|
|
|
described_class,
|
|
|
|
data_consistency: :delayed
|
2016-10-13 06:45:16 -04:00
|
|
|
end
|