debian-mirror-gitlab/spec/models/pool_repository_spec.rb

48 lines
1.3 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
require 'spec_helper'
describe PoolRepository do
describe 'associations' do
it { is_expected.to belong_to(:shard) }
2019-07-31 22:56:46 +05:30
it { is_expected.to belong_to(:source_project) }
2019-02-15 15:39:39 +05:30
it { is_expected.to have_many(:member_projects) }
end
describe 'validations' do
let!(:pool_repository) { create(:pool_repository) }
it { is_expected.to validate_presence_of(:shard) }
it { is_expected.to validate_presence_of(:source_project) }
end
describe '#disk_path' do
it 'sets the hashed disk_path' do
pool = create(:pool_repository)
expect(pool.disk_path).to match(%r{\A@pools/\h{2}/\h{2}/\h{64}})
end
end
2019-07-07 11:18:12 +05:30
describe '#mark_obsolete_if_last' do
2019-02-15 15:39:39 +05:30
let(:pool) { create(:pool_repository, :ready) }
context 'when the last member leaves' do
it 'schedules pool removal' do
expect(::ObjectPool::DestroyWorker).to receive(:perform_async).with(pool.id).and_call_original
2019-07-07 11:18:12 +05:30
pool.mark_obsolete_if_last(pool.source_project.repository)
2019-02-15 15:39:39 +05:30
end
end
context 'when the second member leaves' do
it 'does not schedule pool removal' do
create(:project, :repository, pool_repository: pool)
expect(::ObjectPool::DestroyWorker).not_to receive(:perform_async).with(pool.id)
2019-07-07 11:18:12 +05:30
pool.mark_obsolete_if_last(pool.source_project.repository)
2019-02-15 15:39:39 +05:30
end
end
end
end