summaryrefslogtreecommitdiff
path: root/internal/command/uploadpack
diff options
context:
space:
mode:
Diffstat (limited to 'internal/command/uploadpack')
-rw-r--r--internal/command/uploadpack/gitalycall.go22
-rw-r--r--internal/command/uploadpack/gitalycall_test.go56
2 files changed, 3 insertions, 75 deletions
diff --git a/internal/command/uploadpack/gitalycall.go b/internal/command/uploadpack/gitalycall.go
index 96dd823..2ba5f1d 100644
--- a/internal/command/uploadpack/gitalycall.go
+++ b/internal/command/uploadpack/gitalycall.go
@@ -15,24 +15,7 @@ import (
func (c *Command) performGitalyCall(ctx context.Context, response *accessverifier.Response) error {
gc := handler.NewGitalyCommand(c.Config, string(commandargs.UploadPack), response)
- if response.Gitaly.UseSidechannel {
- request := &pb.SSHUploadPackWithSidechannelRequest{
- Repository: &response.Gitaly.Repo,
- GitProtocol: c.Args.Env.GitProtocolVersion,
- GitConfigOptions: response.GitConfigOptions,
- }
-
- return gc.RunGitalyCommand(ctx, func(ctx context.Context, conn *grpc.ClientConn) (int32, error) {
- ctx, cancel := gc.PrepareContext(ctx, request.Repository, c.Args.Env)
- defer cancel()
-
- registry := c.Config.GitalyClient.SidechannelRegistry
- rw := c.ReadWriter
- return client.UploadPackWithSidechannel(ctx, conn, registry, rw.In, rw.Out, rw.ErrOut, request)
- })
- }
-
- request := &pb.SSHUploadPackRequest{
+ request := &pb.SSHUploadPackWithSidechannelRequest{
Repository: &response.Gitaly.Repo,
GitProtocol: c.Args.Env.GitProtocolVersion,
GitConfigOptions: response.GitConfigOptions,
@@ -42,7 +25,8 @@ func (c *Command) performGitalyCall(ctx context.Context, response *accessverifie
ctx, cancel := gc.PrepareContext(ctx, request.Repository, c.Args.Env)
defer cancel()
+ registry := c.Config.GitalyClient.SidechannelRegistry
rw := c.ReadWriter
- return client.UploadPack(ctx, conn, rw.In, rw.Out, rw.ErrOut, request)
+ return client.UploadPackWithSidechannel(ctx, conn, registry, rw.In, rw.Out, rw.ErrOut, request)
})
}
diff --git a/internal/command/uploadpack/gitalycall_test.go b/internal/command/uploadpack/gitalycall_test.go
index e0a15ee..3245a65 100644
--- a/internal/command/uploadpack/gitalycall_test.go
+++ b/internal/command/uploadpack/gitalycall_test.go
@@ -41,62 +41,6 @@ func TestUploadPack(t *testing.T) {
Env: env,
}
- cmd := &Command{
- Config: &config.Config{GitlabUrl: url},
- Args: args,
- ReadWriter: &readwriter.ReadWriter{ErrOut: output, Out: output, In: input},
- }
-
- ctx := correlation.ContextWithCorrelation(context.Background(), "a-correlation-id")
- ctx = correlation.ContextWithClientName(ctx, "gitlab-shell-tests")
-
- err := cmd.Execute(ctx)
- require.NoError(t, err)
-
- require.Equal(t, "UploadPack: "+repo, output.String())
-
- for k, v := range map[string]string{
- "gitaly-feature-cache_invalidator": "true",
- "gitaly-feature-inforef_uploadpack_cache": "false",
- "x-gitlab-client-name": "gitlab-shell-tests-git-upload-pack",
- "key_id": "123",
- "user_id": "1",
- "remote_ip": "127.0.0.1",
- "key_type": "key",
- } {
- actual := testServer.ReceivedMD[k]
- require.Len(t, actual, 1)
- require.Equal(t, v, actual[0])
- }
- require.Empty(t, testServer.ReceivedMD["some-other-ff"])
- require.Equal(t, testServer.ReceivedMD["x-gitlab-correlation-id"][0], "a-correlation-id")
-}
-
-func TestUploadPack_withSidechannel(t *testing.T) {
- gitalyAddress, testServer := testserver.StartGitalyServer(t)
-
- requests := requesthandlers.BuildAllowedWithGitalyHandlersWithSidechannel(t, gitalyAddress)
- url := testserver.StartHttpServer(t, requests)
-
- output := &bytes.Buffer{}
- input := &bytes.Buffer{}
-
- userId := "1"
- repo := "group/repo"
-
- env := sshenv.Env{
- IsSSHConnection: true,
- OriginalCommand: "git-upload-pack " + repo,
- RemoteAddr: "127.0.0.1",
- }
-
- args := &commandargs.Shell{
- GitlabKeyId: userId,
- CommandType: commandargs.UploadPack,
- SshArgs: []string{"git-upload-pack", repo},
- Env: env,
- }
-
ctx := correlation.ContextWithCorrelation(context.Background(), "a-correlation-id")
ctx = correlation.ContextWithClientName(ctx, "gitlab-shell-tests")