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

62 lines
1.9 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
it 'calculates coverage and calls hooks' do
2018-03-17 18:26:18 +05:30
expect(BuildTraceSectionsWorker)
2016-11-03 12:29:30 +05:30
.to receive(:new).ordered.and_call_original
2018-03-17 18:26:18 +05:30
expect(BuildCoverageWorker)
2016-11-03 12:29:30 +05:30
.to receive(:new).ordered.and_call_original
2018-03-17 18:26:18 +05:30
expect_any_instance_of(BuildTraceSectionsWorker).to receive(:perform)
expect_any_instance_of(BuildCoverageWorker).to receive(:perform)
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)
expect(Ci::BuildReportResultWorker).not_to receive(:perform)
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
expect { described_class.new.perform(123) }
.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
2020-06-23 00:09:42 +05:30
context 'when build has a test report' do
let(:build) { create(:ci_build, :test_reports) }
2019-07-07 11:18:12 +05:30
2020-06-23 00:09:42 +05:30
it 'schedules a BuildReportResult job' do
expect_next_instance_of(Ci::BuildReportResultWorker) do |worker|
expect(worker).to receive(:perform).with(build.id)
end
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