diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2015-12-12 03:22:52 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2015-12-12 03:22:52 +0100 |
commit | b543e4e02793a58db25148214ef149cb571792f5 (patch) | |
tree | d68b7e33aba06f67d3c3e301b4a68f09de0ded6a /clients | |
parent | c22c181f70e0afb294513315e9975b9f3f4c1d39 (diff) | |
download | go-git-b543e4e02793a58db25148214ef149cb571792f5.tar.gz |
blame code reorganization, and mutting the test
Diffstat (limited to 'clients')
-rw-r--r-- | clients/ssh/git_upload_pack_test.go | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/clients/ssh/git_upload_pack_test.go b/clients/ssh/git_upload_pack_test.go index 62a8596..66ac306 100644 --- a/clients/ssh/git_upload_pack_test.go +++ b/clients/ssh/git_upload_pack_test.go @@ -25,7 +25,6 @@ const ( ) func (s *SuiteRemote) TestConnect(c *C) { - fmt.Println("TestConnect") r := NewGitUploadPackService() c.Assert(r.Connect(fixRepo), Equals, ErrAuthRequired) } @@ -59,7 +58,6 @@ func (c *sshAgentConn) close() error { } func (s *SuiteRemote) TestConnectWithPublicKeysCallback(c *C) { - fmt.Println("TestConnectWithPublicKeysCallback") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() @@ -72,19 +70,16 @@ func (s *SuiteRemote) TestConnectWithPublicKeysCallback(c *C) { } func (s *SuiteRemote) TestConnectBadVcs(c *C) { - fmt.Println("TestConnectBadVcs") r := NewGitUploadPackService() c.Assert(r.ConnectWithAuth(fixRepoBadVcs, nil), ErrorMatches, fmt.Sprintf(".*%s.*", fixRepoBadVcs)) } func (s *SuiteRemote) TestConnectNonGit(c *C) { - fmt.Println("TestConnectNonGit") r := NewGitUploadPackService() c.Assert(r.ConnectWithAuth(fixRepoNonGit, nil), Equals, ErrUnsupportedVCS) } func (s *SuiteRemote) TestConnectNonGithub(c *C) { - fmt.Println("TestConnectNonGit") r := NewGitUploadPackService() c.Assert(r.ConnectWithAuth(fixGitRepoNonGithub, nil), Equals, ErrUnsupportedRepo) } @@ -97,14 +92,12 @@ func (*mockAuth) Name() string { return "" } func (*mockAuth) String() string { return "" } func (s *SuiteRemote) TestConnectWithAuthWrongType(c *C) { - fmt.Println("TestConnectWithAuthWrongType") r := NewGitUploadPackService() c.Assert(r.ConnectWithAuth(fixRepo, &mockAuth{}), Equals, ErrInvalidAuthMethod) c.Assert(r.connected, Equals, false) } func (s *SuiteRemote) TestAlreadyConnected(c *C) { - fmt.Println("TestAlreadyConnected") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() @@ -117,7 +110,6 @@ func (s *SuiteRemote) TestAlreadyConnected(c *C) { } func (s *SuiteRemote) TestDisconnect(c *C) { - fmt.Println("TestDisconnect") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() @@ -129,13 +121,11 @@ func (s *SuiteRemote) TestDisconnect(c *C) { } func (s *SuiteRemote) TestDisconnectedWhenNonConnected(c *C) { - fmt.Println("TestDisconnectedWhenNonConnected") r := NewGitUploadPackService() c.Assert(r.Disconnect(), Equals, ErrNotConnected) } func (s *SuiteRemote) TestAlreadyDisconnected(c *C) { - fmt.Println("TestAlreadyDisconnected") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() @@ -148,7 +138,6 @@ func (s *SuiteRemote) TestAlreadyDisconnected(c *C) { } func (s *SuiteRemote) TestServeralConnections(c *C) { - fmt.Println("TestServeralConnections") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() @@ -169,14 +158,12 @@ func (s *SuiteRemote) TestServeralConnections(c *C) { } func (s *SuiteRemote) TestInfoNotConnected(c *C) { - fmt.Println("TestInfoNotConnected") r := NewGitUploadPackService() _, err := r.Info() c.Assert(err, Equals, ErrNotConnected) } func (s *SuiteRemote) TestDefaultBranch(c *C) { - fmt.Println("TestDefaultBranch") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() @@ -191,7 +178,6 @@ func (s *SuiteRemote) TestDefaultBranch(c *C) { } func (s *SuiteRemote) TestCapabilities(c *C) { - fmt.Println("TestCapabilities") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() @@ -206,7 +192,6 @@ func (s *SuiteRemote) TestCapabilities(c *C) { } func (s *SuiteRemote) TestFetchNotConnected(c *C) { - fmt.Println("TestFetchNotConnected") r := NewGitUploadPackService() pr := &common.GitUploadPackRequest{} pr.Want(core.NewHash("6ecf0ef2c2dffb796033e5a02219af86ec6584e5")) @@ -215,7 +200,6 @@ func (s *SuiteRemote) TestFetchNotConnected(c *C) { } func (s *SuiteRemote) TestFetch(c *C) { - fmt.Println("TestFetch") agent, err := newSSHAgentConn() c.Assert(err, IsNil) defer func() { c.Assert(agent.close(), IsNil) }() |