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
|
package ssh
import (
"testing"
"github.com/kevinburke/ssh_config"
"golang.org/x/crypto/ssh"
. "gopkg.in/check.v1"
"gopkg.in/src-d/go-git.v4/plumbing/transport"
)
func Test(t *testing.T) { TestingT(t) }
func (s *SuiteCommon) TestOverrideConfig(c *C) {
config := &ssh.ClientConfig{
User: "foo",
Auth: []ssh.AuthMethod{
ssh.Password("yourpassword"),
},
HostKeyCallback: ssh.FixedHostKey(nil),
}
target := &ssh.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 := &ssh.ClientConfig{
User: "foo",
}
target := &ssh.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")
}
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]
}
|