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

31 lines
924 B
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
require 'spec_helper'
describe BuildFinishedWorker do
describe '#perform' do
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)
2018-03-27 19:54:05 +05:30
expect(ArchiveTraceWorker).to receive(:perform_async)
2016-11-03 12:29:30 +05:30
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
end