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
|
package ssh
import (
"io/ioutil"
"os"
. "gopkg.in/check.v1"
"gopkg.in/src-d/go-git.v4/clients/common"
"gopkg.in/src-d/go-git.v4/core"
)
type RemoteSuite struct {
Endpoint common.Endpoint
}
var _ = Suite(&RemoteSuite{})
func (s *RemoteSuite) SetUpSuite(c *C) {
var err error
s.Endpoint, err = common.NewEndpoint("git@github.com:git-fixtures/basic.git")
c.Assert(err, IsNil)
if os.Getenv("SSH_AUTH_SOCK") == "" {
c.Skip("SSH_AUTH_SOCK is not set")
}
}
// A mock implementation of client.common.AuthMethod
// to test non ssh auth method detection.
type mockAuth struct{}
func (*mockAuth) Name() string { return "" }
func (*mockAuth) String() string { return "" }
func (s *RemoteSuite) TestConnectWithAuthWrongType(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.ConnectWithAuth(&mockAuth{}), Equals, ErrInvalidAuthMethod)
}
func (s *RemoteSuite) TestAlreadyConnected(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Connect(), IsNil)
defer func() {
c.Assert(r.Disconnect(), IsNil)
}()
c.Assert(r.Connect(), Equals, ErrAlreadyConnected)
}
func (s *RemoteSuite) TestDisconnect(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Connect(), IsNil)
c.Assert(r.Disconnect(), IsNil)
}
func (s *RemoteSuite) TestDisconnectedWhenNonConnected(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Disconnect(), Equals, ErrNotConnected)
}
func (s *RemoteSuite) TestAlreadyDisconnected(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Connect(), IsNil)
c.Assert(r.Disconnect(), IsNil)
c.Assert(r.Disconnect(), Equals, ErrNotConnected)
}
func (s *RemoteSuite) TestServeralConnections(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Connect(), IsNil)
c.Assert(r.Disconnect(), IsNil)
c.Assert(r.Connect(), IsNil)
c.Assert(r.Disconnect(), IsNil)
c.Assert(r.Connect(), IsNil)
c.Assert(r.Disconnect(), IsNil)
}
func (s *RemoteSuite) TestInfoNotConnected(c *C) {
r := NewGitUploadPackService(s.Endpoint)
_, err := r.Info()
c.Assert(err, Equals, ErrNotConnected)
}
func (s *RemoteSuite) TestDefaultBranch(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Connect(), IsNil)
defer func() { c.Assert(r.Disconnect(), IsNil) }()
info, err := r.Info()
c.Assert(err, IsNil)
c.Assert(info.Capabilities.SymbolicReference("HEAD"), Equals, "refs/heads/master")
}
func (s *RemoteSuite) TestCapabilities(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Connect(), IsNil)
defer func() { c.Assert(r.Disconnect(), IsNil) }()
info, err := r.Info()
c.Assert(err, IsNil)
c.Assert(info.Capabilities.Get("agent").Values, HasLen, 1)
}
func (s *RemoteSuite) TestFetchNotConnected(c *C) {
r := NewGitUploadPackService(s.Endpoint)
pr := &common.GitUploadPackRequest{}
pr.Want(core.NewHash("6ecf0ef2c2dffb796033e5a02219af86ec6584e5"))
_, err := r.Fetch(pr)
c.Assert(err, Equals, ErrNotConnected)
}
func (s *RemoteSuite) TestFetch(c *C) {
r := NewGitUploadPackService(s.Endpoint)
c.Assert(r.Connect(), IsNil)
defer func() { c.Assert(r.Disconnect(), IsNil) }()
req := &common.GitUploadPackRequest{}
req.Want(core.NewHash("6ecf0ef2c2dffb796033e5a02219af86ec6584e5"))
req.Want(core.NewHash("e8d3ffab552895c19b9fcf7aa264d277cde33881"))
reader, err := r.Fetch(req)
c.Assert(err, IsNil)
b, err := ioutil.ReadAll(reader)
c.Assert(err, IsNil)
c.Assert(len(b), Equals, 85585)
}
|