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
|
package ssh
import (
"testing"
"github.com/go-git/go-git/v5/plumbing/transport"
"github.com/kevinburke/ssh_config"
"golang.org/x/crypto/ssh"
. "gopkg.in/check.v1"
)
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")
}
func (s *SuiteCommon) TestIssue70(c *C) {
uploadPack := &UploadPackSuite{}
uploadPack.SetUpSuite(c)
config := &ssh.ClientConfig{
HostKeyCallback: ssh.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)
}
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]
}
|