Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/git/repository_spec.rb')
-rw-r--r--spec/lib/gitlab/git/repository_spec.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/spec/lib/gitlab/git/repository_spec.rb b/spec/lib/gitlab/git/repository_spec.rb
index e27b97ea0e6..18a090a00be 100644
--- a/spec/lib/gitlab/git/repository_spec.rb
+++ b/spec/lib/gitlab/git/repository_spec.rb
@@ -589,6 +589,37 @@ RSpec.describe Gitlab::Git::Repository, feature_category: :source_code_managemen
end
end
+ describe '#update_refs' do
+ let(:repository) { mutable_repository }
+ let(:sha) { TestEnv::BRANCH_SHA['master'] }
+ let(:tmp_ref) { "refs/tmp/#{SecureRandom.hex}" }
+
+ before do
+ repository.write_ref(tmp_ref, sha)
+ end
+
+ it 'updates the ref' do
+ expect do
+ repository.update_refs(
+ [
+ {
+ old_sha: sha,
+ new_sha: Gitlab::Git::BLANK_SHA,
+ reference: tmp_ref
+ }
+ ]
+ )
+ end.to change { repository.ref_exists?(tmp_ref) }
+ .from(true).to(false)
+ end
+
+ it 'does not call gitaly when no refs given' do
+ expect_any_instance_of(Gitlab::GitalyClient::RefService).not_to receive(:update_refs)
+
+ repository.update_refs([])
+ end
+ end
+
describe '#delete_refs' do
let(:repository) { mutable_repository }