2016-06-02 11:05:42 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Projects::HousekeepingService do
|
|
|
|
subject { Projects::HousekeepingService.new(project) }
|
|
|
|
let(:project) { create :project }
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
before do
|
|
|
|
project.reset_pushes_since_gc
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
project.reset_pushes_since_gc
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
describe '#execute' do
|
2016-06-02 11:05:42 +05:30
|
|
|
it 'enqueues a sidekiq job' do
|
|
|
|
expect(subject).to receive(:try_obtain_lease).and_return(true)
|
2016-08-24 12:49:21 +05:30
|
|
|
expect(GitGarbageCollectWorker).to receive(:perform_async).with(project.id)
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
subject.execute
|
2016-08-24 12:49:21 +05:30
|
|
|
expect(project.reload.pushes_since_gc).to eq(0)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
context 'when no lease can be obtained' do
|
|
|
|
before(:each) do
|
|
|
|
expect(subject).to receive(:try_obtain_lease).and_return(false)
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
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)
|
2016-09-29 09:46:39 +05:30
|
|
|
end.not_to change { project.pushes_since_gc }
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
describe '#needed?' do
|
2016-06-02 11:05:42 +05:30
|
|
|
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-09-29 09:46:39 +05:30
|
|
|
describe '#increment!' do
|
2016-06-02 11:05:42 +05:30
|
|
|
it 'increments the pushes_since_gc counter' do
|
2016-08-24 12:49:21 +05:30
|
|
|
expect do
|
|
|
|
subject.increment!
|
|
|
|
end.to change { project.pushes_since_gc }.from(0).to(1)
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|