debian-mirror-gitlab/spec/services/projects/after_import_service_spec.rb

60 lines
1.5 KiB
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
require 'spec_helper'
describe Projects::AfterImportService do
subject { described_class.new(project) }
let(:project) { create(:project, :repository) }
let(:repository) { project.repository }
let(:sha) { project.commit.sha }
let(:housekeeping_service) { double(:housekeeping_service) }
describe '#execute' do
before do
allow(Projects::HousekeepingService)
.to receive(:new).with(project).and_return(housekeeping_service)
allow(housekeeping_service)
.to receive(:execute).and_yield
end
it 'performs housekeeping' do
subject.execute
expect(housekeeping_service).to have_received(:execute)
end
context 'with some refs in refs/pull/**/*' do
before do
repository.write_ref('refs/pull/1/head', sha)
repository.write_ref('refs/pull/1/merge', sha)
subject.execute
end
it 'removes refs/pull/**/*' do
2018-11-08 19:23:39 +05:30
expect(rugged.references.map(&:name))
2018-03-17 18:26:18 +05:30
.not_to include(%r{\Arefs/pull/})
end
end
Repository::RESERVED_REFS_NAMES.each do |name|
context "with a ref in refs/#{name}/tmp" do
before do
repository.write_ref("refs/#{name}/tmp", sha)
subject.execute
end
it "does not remove refs/#{name}/tmp" do
2018-11-08 19:23:39 +05:30
expect(rugged.references.map(&:name))
2018-03-17 18:26:18 +05:30
.to include("refs/#{name}/tmp")
end
end
end
2018-11-08 19:23:39 +05:30
def rugged
Gitlab::GitalyClient::StorageSettings.allow_disk_access { repository.rugged }
end
2018-03-17 18:26:18 +05:30
end
end