diff options
author | Paulo Gomes <pjbgf@linux.com> | 2023-12-14 08:53:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 08:53:43 +0000 |
commit | c8348a650177cb0fbb9ef3d0551b5a969c6b4ac3 (patch) | |
tree | f59862ee69d374794460dbaec154addd7bb794ba /plumbing/transport | |
parent | 952f1baf5e6ffc9e2e143821368944b40fa0bdbf (diff) | |
parent | ced1b81e32f971a80e474e9661b9c1b9c96569e7 (diff) | |
download | go-git-c8348a650177cb0fbb9ef3d0551b5a969c6b4ac3.tar.gz |
Merge pull request #969 from nodivbyzero/fix-185-setauth-err-check
plumbing: check setAuth error. Fixes #185
Diffstat (limited to 'plumbing/transport')
-rw-r--r-- | plumbing/transport/ssh/common.go | 4 | ||||
-rw-r--r-- | plumbing/transport/ssh/common_test.go | 23 |
2 files changed, 26 insertions, 1 deletions
diff --git a/plumbing/transport/ssh/common.go b/plumbing/transport/ssh/common.go index 46fda73..05dea44 100644 --- a/plumbing/transport/ssh/common.go +++ b/plumbing/transport/ssh/common.go @@ -49,7 +49,9 @@ type runner struct { func (r *runner) Command(cmd string, ep *transport.Endpoint, auth transport.AuthMethod) (common.Command, error) { c := &command{command: cmd, endpoint: ep, config: r.config} if auth != nil { - c.setAuth(auth) + if err := c.setAuth(auth); err != nil { + return nil, err + } } if err := c.connect(); err != nil { diff --git a/plumbing/transport/ssh/common_test.go b/plumbing/transport/ssh/common_test.go index 4cc2a06..a724936 100644 --- a/plumbing/transport/ssh/common_test.go +++ b/plumbing/transport/ssh/common_test.go @@ -206,3 +206,26 @@ func (c *mockSSHConfig) Get(alias, key string) string { return a[key] } + +type invalidAuthMethod struct { +} + +func (a *invalidAuthMethod) Name() string { + return "invalid" +} + +func (a *invalidAuthMethod) String() string { + return "invalid" +} + +func (s *SuiteCommon) TestCommandWithInvalidAuthMethod(c *C) { + uploadPack := &UploadPackSuite{} + uploadPack.SetUpSuite(c) + r := &runner{} + auth := &invalidAuthMethod{} + + _, err := r.Command("command", uploadPack.newEndpoint(c, "endpoint"), auth) + + c.Assert(err, NotNil) + c.Assert(err, ErrorMatches, "invalid auth method") +} |