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

53 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'
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-03-11 19:13:27 +05:30
before do
expect(Ci::Build).to receive(:find_by).with(id: build.id).and_return(build)
end
2021-01-29 00:20:46 +05:30
2021-03-11 19:13:27 +05:30
it 'calculates coverage and calls hooks', :aggregate_failures do
expect(build).to receive(:parse_trace_sections!).ordered
expect(build).to receive(:update_coverage).ordered
2021-01-29 00:20:46 +05:30
2021-03-11 19:13:27 +05:30
expect_next_instance_of(Ci::BuildReportResultService) do |build_report_result_service|
expect(build_report_result_service).to receive(:execute).with(build)
2021-01-29 00:20:46 +05:30
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