1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
package ssh
import (
"testing"
"github.com/go-git/go-git/v5/plumbing/transport"
"github.com/gliderlabs/ssh"
"github.com/kevinburke/ssh_config"
stdssh "golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/testdata"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
func (s *SuiteCommon) TestOverrideConfig(c *C) {
config := &stdssh.ClientConfig{
User: "foo",
Auth: []stdssh.AuthMethod{
stdssh.Password("yourpassword"),
},
HostKeyCallback: stdssh.FixedHostKey(nil),
}
target := &stdssh.ClientConfig{}
overrideConfig(config, target)
c.Assert(target.User, Equals, "foo")
c.Assert(target.Auth, HasLen, 1)
c.Assert(target.HostKeyCallback, NotNil)
}
func (s *SuiteCommon) TestOverrideConfigKeep(c *C) {
config := &stdssh.ClientConfig{
User: "foo",
}
target := &stdssh.ClientConfig{
User: "bar",
}
overrideConfig(config, target)
c.Assert(target.User, Equals, "foo")
}
func (s *SuiteCommon) TestDefaultSSHConfig(c *C) {
defer func() {
DefaultSSHConfig = ssh_config.DefaultUserSettings
}()
DefaultSSHConfig = &mockSSHConfig{map[string]map[string]string{
"github.com": {
"Hostname": "foo.local",
"Port": "42",
},
}}
ep, err := transport.NewEndpoint("git@github.com:foo/bar.git")
c.Assert(err, IsNil)
cmd := &command{endpoint: ep}
c.Assert(cmd.getHostWithPort(), Equals, "foo.local:42")
}
func (s *SuiteCommon) TestDefaultSSHConfigNil(c *C) {
defer func() {
DefaultSSHConfig = ssh_config.DefaultUserSettings
}()
DefaultSSHConfig = nil
ep, err := transport.NewEndpoint("git@github.com:foo/bar.git")
c.Assert(err, IsNil)
cmd := &command{endpoint: ep}
c.Assert(cmd.getHostWithPort(), Equals, "github.com:22")
}
func (s *SuiteCommon) TestDefaultSSHConfigWildcard(c *C) {
defer func() {
DefaultSSHConfig = ssh_config.DefaultUserSettings
}()
DefaultSSHConfig = &mockSSHConfig{Values: map[string]map[string]string{
"*": {
"Port": "42",
},
}}
ep, err := transport.NewEndpoint("git@github.com:foo/bar.git")
c.Assert(err, IsNil)
cmd := &command{endpoint: ep}
c.Assert(cmd.getHostWithPort(), Equals, "github.com:22")
}
func (s *SuiteCommon) TestIgnoreHostKeyCallback(c *C) {
uploadPack := &UploadPackSuite{
opts: []ssh.Option{
ssh.HostKeyPEM(testdata.PEMBytes["ed25519"]),
},
}
uploadPack.SetUpSuite(c)
// Use the default client, which does not have a host key callback
uploadPack.Client = DefaultClient
auth, err := NewPublicKeys("foo", testdata.PEMBytes["rsa"], "")
c.Assert(err, IsNil)
c.Assert(auth, NotNil)
auth.HostKeyCallback = stdssh.InsecureIgnoreHostKey()
ep := uploadPack.newEndpoint(c, "bar.git")
ps, err := uploadPack.Client.NewUploadPackSession(ep, auth)
c.Assert(err, IsNil)
c.Assert(ps, NotNil)
}
func (s *SuiteCommon) TestFixedHostKeyCallback(c *C) {
hostKey, err := stdssh.ParsePrivateKey(testdata.PEMBytes["ed25519"])
c.Assert(err, IsNil)
uploadPack := &UploadPackSuite{
opts: []ssh.Option{
ssh.HostKeyPEM(testdata.PEMBytes["ed25519"]),
},
}
uploadPack.SetUpSuite(c)
// Use the default client, which does not have a host key callback
uploadPack.Client = DefaultClient
auth, err := NewPublicKeys("foo", testdata.PEMBytes["rsa"], "")
c.Assert(err, IsNil)
c.Assert(auth, NotNil)
auth.HostKeyCallback = stdssh.FixedHostKey(hostKey.PublicKey())
ep := uploadPack.newEndpoint(c, "bar.git")
ps, err := uploadPack.Client.NewUploadPackSession(ep, auth)
c.Assert(err, IsNil)
c.Assert(ps, NotNil)
}
func (s *SuiteCommon) TestFailHostKeyCallback(c *C) {
uploadPack := &UploadPackSuite{
opts: []ssh.Option{
ssh.HostKeyPEM(testdata.PEMBytes["ed25519"]),
},
}
uploadPack.SetUpSuite(c)
// Use the default client, which does not have a host key callback
uploadPack.Client = DefaultClient
auth, err := NewPublicKeys("foo", testdata.PEMBytes["rsa"], "")
c.Assert(err, IsNil)
c.Assert(auth, NotNil)
ep := uploadPack.newEndpoint(c, "bar.git")
_, err = uploadPack.Client.NewUploadPackSession(ep, auth)
c.Assert(err, NotNil)
}
func (s *SuiteCommon) TestIssue70(c *C) {
uploadPack := &UploadPackSuite{}
uploadPack.SetUpSuite(c)
config := &stdssh.ClientConfig{
HostKeyCallback: stdssh.InsecureIgnoreHostKey(),
}
r := &runner{
config: config,
}
cmd, err := r.Command("command", uploadPack.newEndpoint(c, "endpoint"), uploadPack.EmptyAuth)
c.Assert(err, IsNil)
c.Assert(cmd.(*command).client.Close(), IsNil)
err = cmd.Close()
c.Assert(err, IsNil)
}
/*
Given, an endpoint to a git server with a socks5 proxy URL,
When, the socks5 proxy server is not reachable,
Then, there should not be any panic and an error with appropriate message should be returned.
Related issue : https://github.com/go-git/go-git/pull/900
*/
func (s *SuiteCommon) TestInvalidSocks5Proxy(c *C) {
ep, err := transport.NewEndpoint("git@github.com:foo/bar.git")
c.Assert(err, IsNil)
ep.Proxy.URL = "socks5://127.0.0.1:1080"
auth, err := NewPublicKeys("foo", testdata.PEMBytes["rsa"], "")
c.Assert(err, IsNil)
c.Assert(auth, NotNil)
ps, err := DefaultClient.NewUploadPackSession(ep, auth)
//Since the proxy server is not running, we expect an error.
c.Assert(ps, IsNil)
c.Assert(err, NotNil)
c.Assert(err, ErrorMatches, "socks connect .* dial tcp 127.0.0.1:1080: .*")
}
type mockSSHConfig struct {
Values map[string]map[string]string
}
func (c *mockSSHConfig) Get(alias, key string) string {
a, ok := c.Values[alias]
if !ok {
return c.Values["*"][key]
}
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")
}
|