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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
2.7 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
2021-11-18 22:05:49 +05:30
let(:worker) { described_class.new }
subject { worker.perform(build.id) }
2020-06-23 00:09:42 +05:30
2016-11-03 12:29:30 +05:30
describe '#perform' do
context 'when build exists' do
2021-04-29 21:17:54 +05:30
let_it_be(:build) { create(:ci_build, :success, pipeline: create(:ci_pipeline)) }
2016-11-03 12:29:30 +05:30
2021-03-11 19:13:27 +05:30
before do
2021-09-30 23:02:18 +05:30
stub_feature_flags(ci_build_finished_worker_namespace_changed: build.project)
2022-07-16 23:28:13 +05:30
expect(Ci::Build).to receive(:find_by).with({ id: build.id }).and_return(build)
2021-03-11 19:13:27 +05:30
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(: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)
2020-06-23 00:09:42 +05:30
expect(ChatNotificationWorker).not_to receive(:perform_async)
2021-09-30 23:02:18 +05:30
expect(Ci::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
2021-04-29 21:17:54 +05:30
2021-09-30 23:02:18 +05:30
context 'with ci_build_finished_worker_namespace_changed feature flag disabled' do
before do
stub_feature_flags(ci_build_finished_worker_namespace_changed: false)
end
it 'calls deprecated worker' do
expect(ArchiveTraceWorker).to receive(:perform_in)
subject
end
end
2021-04-29 21:17:54 +05:30
context 'when build is failed' do
before do
build.update!(status: :failed)
end
it 'adds a todo' do
expect(::Ci::MergeRequests::AddTodoWhenBuildFailsWorker).to receive(:perform_async)
subject
end
end
context 'when build has a chat' do
before do
build.pipeline.update!(source: :chat)
end
it 'schedules a ChatNotification job' do
expect(ChatNotificationWorker).to receive(:perform_async).with(build.id)
subject
end
end
2021-11-18 22:05:49 +05:30
context 'when project is deleted' do
before do
allow(build).to receive(:project).and_return(nil)
end
it 'does no processing' do
expect(worker).not_to receive(:process_build)
subject
end
end
context 'when project is pending_delete' do
before do
build.project.update_attribute(:pending_delete, true)
end
it 'does no processing' do
expect(worker).not_to receive(:process_build)
subject
end
end
2016-11-03 12:29:30 +05:30
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
end
end