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

57 lines
1.8 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'
2020-07-28 23:09:34 +05:30
RSpec.describe BuildFinishedWorker do
2020-06-23 00:09:42 +05:30
subject { described_class.new.perform(build.id) }
2016-11-03 12:29:30 +05:30
describe '#perform' do
2020-06-23 00:09:42 +05:30
let(:build) { create(:ci_build, :success, pipeline: create(:ci_pipeline)) }
2016-11-03 12:29:30 +05:30
context 'when build exists' do
2018-03-17 18:26:18 +05:30
let!(:build) { create(:ci_build) }
2016-11-03 12:29:30 +05:30
2021-01-29 00:20:46 +05:30
it 'calculates coverage and calls hooks', :aggregate_failures do
trace_worker = double('trace worker')
coverage_worker = double('coverage worker')
allow(BuildTraceSectionsWorker).to receive(:new).and_return(trace_worker)
allow(BuildCoverageWorker).to receive(:new).and_return(coverage_worker)
# Unfortunately, `ordered` does not seem to work when called within `allow_next_instance_of`
# so we're doing this the long and dirty way
expect(trace_worker).to receive(:perform).ordered
expect(coverage_worker).to receive(:perform).ordered
expect_next_instance_of(Ci::BuildReportResultWorker) do |instance|
expect(instance).to receive(:perform)
end
2018-03-17 18:26:18 +05:30
expect(BuildHooksWorker).to receive(:perform_async)
2019-09-04 21:01:54 +05:30
expect(ExpirePipelineCacheWorker).to receive(:perform_async)
2020-06-23 00:09:42 +05:30
expect(ChatNotificationWorker).not_to receive(:perform_async)
2021-01-03 14:25:43 +05:30
expect(ArchiveTraceWorker).to receive(:perform_in)
2016-11-03 12:29:30 +05:30
2020-06-23 00:09:42 +05:30
subject
2016-11-03 12:29:30 +05:30
end
end
context 'when build does not exist' do
it 'does not raise exception' do
2021-01-29 00:20: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
2019-07-07 11:18:12 +05:30
2020-06-23 00:09:42 +05:30
context 'when build has a chat' do
let(:build) { create(:ci_build, :success, pipeline: create(:ci_pipeline, source: :chat)) }
2019-07-07 11:18:12 +05:30
2020-06-23 00:09:42 +05:30
it 'schedules a ChatNotification job' do
expect(ChatNotificationWorker).to receive(:perform_async).with(build.id)
2019-07-07 11:18:12 +05:30
2020-06-23 00:09:42 +05:30
subject
end
2019-07-07 11:18:12 +05:30
end
2016-11-03 12:29:30 +05:30
end
end