summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-07-27 15:57:28 -0500
committerStan Hu <stanhu@gmail.com>2017-08-03 10:08:32 -0700
commit8139fe23dc8bef424a7a408bf3329038a883f5fb (patch)
treef355df2a04cc241e9a70faf6725ba83f8c547fff
parent5c2fee4d0aeb32e677fb47d75c2d7a6b8bb0f5e6 (diff)
downloadgitlab-shell-sh-support-gitaly-upload-pack-unhide-refs.tar.gz
Use git_config_options instead of git_config_parameters for Gitaly requestssh-support-gitaly-upload-pack-unhide-refs
-rw-r--r--lib/gitlab_shell.rb17
-rw-r--r--spec/gitlab_shell_spec.rb12
2 files changed, 22 insertions, 7 deletions
diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb
index e3025ef..fbbc0da 100644
--- a/lib/gitlab_shell.rb
+++ b/lib/gitlab_shell.rb
@@ -16,6 +16,9 @@ class GitlabShell
}
API_COMMANDS = %w(2fa_recovery_codes)
GL_PROTOCOL = 'ssh'.freeze
+ # We have to use a negative transfer.hideRefs since this is the only way
+ # to undo an already set parameter: https://www.spinics.net/lists/git/msg256772.html
+ GIT_CONFIG_SHOW_ALL_REFS = "transfer.hideRefs=!refs".freeze
attr_accessor :key_id, :gl_repository, :repo_name, :command, :git_access, :show_all_refs
attr_reader :repo_path
@@ -124,13 +127,15 @@ class GitlabShell
# The entire gitaly_request hash should be built in gitlab-ce and passed
# on as-is. For now we build a fake one on the spot.
- gitaly_request = JSON.dump({
+ gitaly_request = {
'repository' => @gitaly['repository'],
'gl_repository' => @gl_repository,
- 'gl_id' => @key_id,
- })
+ 'gl_id' => @key_id
+ }
+
+ gitaly_request['git_config_options'] = [GIT_CONFIG_SHOW_ALL_REFS] if @show_all_refs
- args = [gitaly_address, gitaly_request]
+ args = [gitaly_address, JSON.dump(gitaly_request)]
end
args_string = [File.basename(executable), *args].join(' ')
@@ -160,9 +165,7 @@ class GitlabShell
env['GITALY_TOKEN'] = @gitaly['token']
end
- # We have to use a negative transfer.hideRefs since this is the only way
- # to undo an already set parameter: https://www.spinics.net/lists/git/msg256772.html
- env['GIT_CONFIG_PARAMETERS'] = "'transfer.hideRefs=!refs'" if @show_all_refs
+ env['GIT_CONFIG_PARAMETERS'] = "'#{GIT_CONFIG_SHOW_ALL_REFS}'" if @show_all_refs
if git_trace_available?
env.merge!({
diff --git a/spec/gitlab_shell_spec.rb b/spec/gitlab_shell_spec.rb
index 87389b4..6f4f363 100644
--- a/spec/gitlab_shell_spec.rb
+++ b/spec/gitlab_shell_spec.rb
@@ -157,6 +157,18 @@ describe GitlabShell do
end
end
+ context 'gitaly-upload-pack with GeoNode' do
+ let(:ssh_cmd) { "git-upload-pack gitlab-ci.git" }
+ let(:gitaly_check_access_with_geo) { GitAccessStatus.new(true, 'ok', gl_repository, repo_path, { 'repository' => { 'relative_path' => repo_name, 'storage_name' => 'default'} , 'address' => 'unix:gitaly.socket' }, true) }
+ let(:gitaly_message_with_all_refs) { JSON.dump({ 'repository' => { 'relative_path' => repo_name, 'storage_name' => 'default' }, 'gl_repository' => gl_repository , 'gl_id' => key_id, 'git_config_options' => [GitlabShell::GIT_CONFIG_SHOW_ALL_REFS]}) }
+ before { api.stub(check_access: gitaly_check_access_with_geo) }
+ after { subject.exec(ssh_cmd) }
+
+ it "should execute the command with unhiding refs" do
+ subject.should_receive(:exec_cmd).with(File.join(ROOT_PATH, "bin/gitaly-upload-pack"), 'unix:gitaly.socket', gitaly_message_with_all_refs)
+ end
+ end
+
context 'gitaly-upload-pack' do
let(:ssh_cmd) { "git-upload-pack gitlab-ci.git" }
before {