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

257 lines
8.5 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'fileutils'
2016-08-24 12:49:21 +05:30
require 'spec_helper'
describe GitGarbageCollectWorker do
2018-12-05 23:21:45 +05:30
include GitHelpers
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
2016-08-24 12:49:21 +05:30
let(:shell) { Gitlab::Shell.new }
2018-03-17 18:26:18 +05:30
let!(:lease_uuid) { SecureRandom.uuid }
let!(:lease_key) { "project_housekeeping:#{project.id}" }
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
subject { described_class.new }
2016-08-24 12:49:21 +05:30
describe "#perform" do
2018-11-08 19:23:39 +05:30
context 'with active lease_uuid' do
before do
allow(subject).to receive(:get_lease_uuid).and_return(lease_uuid)
end
it "flushes ref caches when the task if 'gc'" do
expect(subject).to receive(:renew_lease).with(lease_key, lease_uuid).and_call_original
expect_any_instance_of(Gitlab::GitalyClient::RepositoryService).to receive(:garbage_collect)
.and_return(nil)
expect_any_instance_of(Repository).to receive(:after_create_branch).and_call_original
expect_any_instance_of(Repository).to receive(:branch_names).and_call_original
expect_any_instance_of(Repository).to receive(:has_visible_content?).and_call_original
expect_any_instance_of(Gitlab::Git::Repository).to receive(:has_visible_content?).and_call_original
subject.perform(project.id, :gc, lease_key, lease_uuid)
end
it 'handles gRPC errors' do
expect_any_instance_of(Gitlab::GitalyClient::RepositoryService).to receive(:garbage_collect).and_raise(GRPC::NotFound)
expect { subject.perform(project.id, :gc, lease_key, lease_uuid) }.to raise_exception(Gitlab::Git::Repository::NoRepository)
end
end
context 'with different lease than the active one' do
before do
allow(subject).to receive(:get_lease_uuid).and_return(SecureRandom.uuid)
end
it 'returns silently' do
expect_any_instance_of(Repository).not_to receive(:after_create_branch).and_call_original
expect_any_instance_of(Repository).not_to receive(:branch_names).and_call_original
expect_any_instance_of(Repository).not_to receive(:has_visible_content?).and_call_original
subject.perform(project.id, :gc, lease_key, lease_uuid)
end
end
context 'with no active lease' do
before do
allow(subject).to receive(:get_lease_uuid).and_return(false)
end
context 'when is able to get the lease' do
2018-03-17 18:26:18 +05:30
before do
2018-11-08 19:23:39 +05:30
allow(subject).to receive(:try_obtain_lease).and_return(SecureRandom.uuid)
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
it "flushes ref caches when the task if 'gc'" do
2018-11-08 19:23:39 +05:30
expect_any_instance_of(Gitlab::GitalyClient::RepositoryService).to receive(:garbage_collect)
.and_return(nil)
2018-03-17 18:26:18 +05:30
expect_any_instance_of(Repository).to receive(:after_create_branch).and_call_original
expect_any_instance_of(Repository).to receive(:branch_names).and_call_original
expect_any_instance_of(Repository).to receive(:has_visible_content?).and_call_original
expect_any_instance_of(Gitlab::Git::Repository).to receive(:has_visible_content?).and_call_original
2018-11-08 19:23:39 +05:30
subject.perform(project.id)
2018-03-17 18:26:18 +05:30
end
2019-03-02 22:35:43 +05:30
context 'when the repository has joined a pool' do
let!(:pool) { create(:pool_repository, :ready) }
let(:project) { pool.source_project }
it 'ensures the repositories are linked' do
expect_any_instance_of(PoolRepository).to receive(:link_repository).once
subject.perform(project.id)
end
end
2018-03-17 18:26:18 +05:30
end
2018-11-08 19:23:39 +05:30
context 'when no lease can be obtained' do
2018-03-17 18:26:18 +05:30
before do
2018-11-08 19:23:39 +05:30
expect(subject).to receive(:try_obtain_lease).and_return(false)
2018-03-17 18:26:18 +05:30
end
it 'returns silently' do
expect(subject).not_to receive(:command)
expect_any_instance_of(Repository).not_to receive(:after_create_branch).and_call_original
expect_any_instance_of(Repository).not_to receive(:branch_names).and_call_original
expect_any_instance_of(Repository).not_to receive(:has_visible_content?).and_call_original
2018-11-08 19:23:39 +05:30
subject.perform(project.id)
2018-03-17 18:26:18 +05:30
end
2017-09-10 17:25:29 +05:30
end
end
context "repack_full" do
2018-03-17 18:26:18 +05:30
before do
expect(subject).to receive(:get_lease_uuid).and_return(lease_uuid)
end
2017-09-10 17:25:29 +05:30
it "calls Gitaly" do
expect_any_instance_of(Gitlab::GitalyClient::RepositoryService).to receive(:repack_full)
.and_return(nil)
2016-08-24 12:49:21 +05:30
2018-03-17 18:26:18 +05:30
subject.perform(project.id, :full_repack, lease_key, lease_uuid)
2017-09-10 17:25:29 +05:30
end
end
2019-07-31 22:56:46 +05:30
context "pack_refs" do
before do
expect(subject).to receive(:get_lease_uuid).and_return(lease_uuid)
end
it "calls Gitaly" do
expect_any_instance_of(Gitlab::GitalyClient::RefService).to receive(:pack_refs)
.and_return(nil)
subject.perform(project.id, :pack_refs, lease_key, lease_uuid)
end
end
2017-09-10 17:25:29 +05:30
context "repack_incremental" do
2018-03-17 18:26:18 +05:30
before do
expect(subject).to receive(:get_lease_uuid).and_return(lease_uuid)
end
2017-09-10 17:25:29 +05:30
it "calls Gitaly" do
expect_any_instance_of(Gitlab::GitalyClient::RepositoryService).to receive(:repack_incremental)
.and_return(nil)
2018-03-17 18:26:18 +05:30
subject.perform(project.id, :incremental_repack, lease_key, lease_uuid)
2017-09-10 17:25:29 +05:30
end
2016-08-24 12:49:21 +05:30
end
2017-08-17 22:00:37 +05:30
shared_examples 'gc tasks' do
2017-09-10 17:25:29 +05:30
before do
2018-03-17 18:26:18 +05:30
allow(subject).to receive(:get_lease_uuid).and_return(lease_uuid)
2017-09-10 17:25:29 +05:30
allow(subject).to receive(:bitmaps_enabled?).and_return(bitmaps_enabled)
end
2017-08-17 22:00:37 +05:30
it 'incremental repack adds a new packfile' do
create_objects(project)
before_packs = packs(project)
expect(before_packs.count).to be >= 1
2018-03-17 18:26:18 +05:30
subject.perform(project.id, 'incremental_repack', lease_key, lease_uuid)
2017-08-17 22:00:37 +05:30
after_packs = packs(project)
# Exactly one new pack should have been created
expect(after_packs.count).to eq(before_packs.count + 1)
# Previously existing packs are still around
expect(before_packs & after_packs).to eq(before_packs)
end
it 'full repack consolidates into 1 packfile' do
create_objects(project)
2018-03-17 18:26:18 +05:30
subject.perform(project.id, 'incremental_repack', lease_key, lease_uuid)
2017-08-17 22:00:37 +05:30
before_packs = packs(project)
expect(before_packs.count).to be >= 2
2018-03-17 18:26:18 +05:30
subject.perform(project.id, 'full_repack', lease_key, lease_uuid)
2017-08-17 22:00:37 +05:30
after_packs = packs(project)
expect(after_packs.count).to eq(1)
# Previously existing packs should be gone now
expect(after_packs - before_packs).to eq(after_packs)
expect(File.exist?(bitmap_path(after_packs.first))).to eq(bitmaps_enabled)
end
it 'gc consolidates into 1 packfile and updates packed-refs' do
create_objects(project)
before_packs = packs(project)
before_packed_refs = packed_refs(project)
expect(before_packs.count).to be >= 1
2018-03-17 18:26:18 +05:30
subject.perform(project.id, 'gc', lease_key, lease_uuid)
2017-08-17 22:00:37 +05:30
after_packed_refs = packed_refs(project)
after_packs = packs(project)
expect(after_packs.count).to eq(1)
# Previously existing packs should be gone now
expect(after_packs - before_packs).to eq(after_packs)
# The packed-refs file should have been updated during 'git gc'
expect(before_packed_refs).not_to eq(after_packed_refs)
expect(File.exist?(bitmap_path(after_packs.first))).to eq(bitmaps_enabled)
end
2018-03-27 19:54:05 +05:30
it 'cleans up repository after finishing' do
expect_any_instance_of(Project).to receive(:cleanup).and_call_original
subject.perform(project.id, 'gc', lease_key, lease_uuid)
end
2017-08-17 22:00:37 +05:30
end
context 'with bitmaps enabled' do
let(:bitmaps_enabled) { true }
include_examples 'gc tasks'
end
context 'with bitmaps disabled' do
let(:bitmaps_enabled) { false }
include_examples 'gc tasks'
end
end
# Create a new commit on a random new branch
def create_objects(project)
2018-12-05 23:21:45 +05:30
rugged = rugged_repo(project.repository)
2017-08-17 22:00:37 +05:30
old_commit = rugged.branches.first.target
new_commit_sha = Rugged::Commit.create(
rugged,
message: "hello world #{SecureRandom.hex(6)}",
2020-03-13 15:44:24 +05:30
author: { email: 'foo@bar', name: 'baz' },
committer: { email: 'foo@bar', name: 'baz' },
2017-08-17 22:00:37 +05:30
tree: old_commit.tree,
2017-09-10 17:25:29 +05:30
parents: [old_commit]
2017-08-17 22:00:37 +05:30
)
2018-11-18 11:00:15 +05:30
rugged.references.create("refs/heads/#{SecureRandom.hex(6)}", new_commit_sha)
2017-08-17 22:00:37 +05:30
end
def packs(project)
2018-11-08 19:23:39 +05:30
Gitlab::GitalyClient::StorageSettings.allow_disk_access do
Dir["#{project.repository.path_to_repo}/objects/pack/*.pack"]
end
2017-08-17 22:00:37 +05:30
end
def packed_refs(project)
path = "#{project.repository.path_to_repo}/packed-refs"
FileUtils.touch(path)
File.read(path)
end
def bitmap_path(pack)
pack.sub(/\.pack\z/, '.bitmap')
2016-08-24 12:49:21 +05:30
end
end