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

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

29 lines
769 B
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-05-27 22:25:52 +05:30
RSpec.describe BuildQueueWorker, feature_category: :continuous_integration do
2021-09-04 01:27:46 +05:30
describe '#perform' do
context 'when build exists' do
let!(:build) { create(:ci_build) }
it 'ticks runner queue value' do
expect_next_instance_of(Ci::UpdateBuildQueueService) do |instance|
expect(instance).to receive(:tick).with(build)
end
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
2023-06-20 00:43:36 +05:30
it_behaves_like 'worker with data consistency', described_class, data_consistency: :sticky
2021-09-04 01:27:46 +05:30
end