gitlab-org--gitlab-foss/spec/services/projects/housekeeping_service_spec.rb

99 lines
3.0 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe Projects::HousekeepingService do
subject { described_class.new(project) }
let(:project) { create(:project, :repository) }
before do
project.reset_pushes_since_gc
end
after do
project.reset_pushes_since_gc
end
describe '#execute' do
it 'enqueues a sidekiq job' do
2016-10-27 12:59:52 +00:00
expect(subject).to receive(:try_obtain_lease).and_return(:the_uuid)
expect(subject).to receive(:lease_key).and_return(:the_lease_key)
expect(subject).to receive(:task).and_return(:the_task)
expect(GitGarbageCollectWorker).to receive(:perform_async).with(project.id, :the_task, :the_lease_key, :the_uuid)
2016-03-15 10:03:43 +00:00
subject.execute
expect(project.reload.pushes_since_gc).to eq(0)
end
2017-08-23 13:51:21 +00:00
it 'yields the block if given' do
expect do |b|
subject.execute(&b)
end.to yield_with_no_args
end
context 'when no lease can be obtained' do
before do
expect(subject).to receive(:try_obtain_lease).and_return(false)
end
it 'does not enqueue a job' do
expect(GitGarbageCollectWorker).not_to receive(:perform_async)
expect { subject.execute }.to raise_error(Projects::HousekeepingService::LeaseTaken)
end
it 'does not reset pushes_since_gc' do
expect do
expect { subject.execute }.to raise_error(Projects::HousekeepingService::LeaseTaken)
end.not_to change { project.pushes_since_gc }
end
2017-08-23 13:51:21 +00:00
it 'does not yield' do
expect do |b|
expect { subject.execute(&b) }
.to raise_error(Projects::HousekeepingService::LeaseTaken)
end.not_to yield_with_no_args
end
end
end
describe '#needed?' do
it 'when the count is low enough' do
expect(subject.needed?).to eq(false)
end
it 'when the count is high enough' do
allow(project).to receive(:pushes_since_gc).and_return(10)
expect(subject.needed?).to eq(true)
end
end
2016-03-14 15:49:24 +00:00
describe '#increment!' do
2016-03-14 15:49:24 +00:00
it 'increments the pushes_since_gc counter' do
expect do
subject.increment!
end.to change { project.pushes_since_gc }.from(0).to(1)
end
2016-03-14 15:49:24 +00:00
end
2016-10-27 12:59:52 +00:00
it 'uses all three kinds of housekeeping we offer' do
allow(subject).to receive(:try_obtain_lease).and_return(:the_uuid)
allow(subject).to receive(:lease_key).and_return(:the_lease_key)
# At push 200
2017-06-21 13:48:12 +00:00
expect(GitGarbageCollectWorker).to receive(:perform_async).with(project.id, :gc, :the_lease_key, :the_uuid)
.exactly(1).times
2016-10-27 12:59:52 +00:00
# At push 50, 100, 150
2017-06-21 13:48:12 +00:00
expect(GitGarbageCollectWorker).to receive(:perform_async).with(project.id, :full_repack, :the_lease_key, :the_uuid)
.exactly(3).times
2016-10-27 12:59:52 +00:00
# At push 10, 20, ... (except those above)
2017-06-21 13:48:12 +00:00
expect(GitGarbageCollectWorker).to receive(:perform_async).with(project.id, :incremental_repack, :the_lease_key, :the_uuid)
.exactly(16).times
2016-10-27 12:59:52 +00:00
201.times do
subject.increment!
subject.execute if subject.needed?
end
expect(project.pushes_since_gc).to eq(1)
end
2016-03-14 15:49:24 +00:00
end