aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/transport/ssh/auth_method_test.go
diff options
context:
space:
mode:
authorEthan Young <ethankyoung@gmail.com>2017-05-28 09:46:54 -0600
committerSantiago M. Mola <santi@mola.io>2017-06-01 16:57:31 +0200
commitf9dc7b130fcd8fa1ff0f086de89744c8c194c1e5 (patch)
tree3e2f94bf00d04ec2d2610028ff531313b971b906 /plumbing/transport/ssh/auth_method_test.go
parent7e249dfcf28765939bde8f38784b3274b522f880 (diff)
downloadgo-git-f9dc7b130fcd8fa1ff0f086de89744c8c194c1e5.tar.gz
Use xanzy/ssh-agent to create the ssh agent correctly based on os.
Diffstat (limited to 'plumbing/transport/ssh/auth_method_test.go')
-rw-r--r--plumbing/transport/ssh/auth_method_test.go12
1 files changed, 11 insertions, 1 deletions
diff --git a/plumbing/transport/ssh/auth_method_test.go b/plumbing/transport/ssh/auth_method_test.go
index 6f3d82f..aa05f7f 100644
--- a/plumbing/transport/ssh/auth_method_test.go
+++ b/plumbing/transport/ssh/auth_method_test.go
@@ -94,6 +94,16 @@ func (s *SuiteCommon) TestPublicKeysCallbackString(c *C) {
c.Assert(a.String(), Equals, fmt.Sprintf("user: test, name: %s", PublicKeysCallbackName))
}
func (s *SuiteCommon) TestNewSSHAgentAuth(c *C) {
+ if os.Getenv("SSH_AUTH_SOCK") == "" {
+ c.Skip("SSH_AUTH_SOCK or SSH_TEST_PRIVATE_KEY are required")
+ }
+
+ auth, err := NewSSHAgentAuth("foo")
+ c.Assert(err, IsNil)
+ c.Assert(auth, NotNil)
+}
+
+func (s *SuiteCommon) TestNewSSHAgentAuthNoAgent(c *C) {
addr := os.Getenv("SSH_AUTH_SOCK")
err := os.Unsetenv("SSH_AUTH_SOCK")
c.Assert(err, IsNil)
@@ -105,7 +115,7 @@ func (s *SuiteCommon) TestNewSSHAgentAuth(c *C) {
k, err := NewSSHAgentAuth("foo")
c.Assert(k, IsNil)
- c.Assert(err, Equals, ErrEmptySSHAgentAddr)
+ c.Assert(err, ErrorMatches, ".*SSH_AUTH_SOCK.*")
}
func (*SuiteCommon) TestNewPublicKeys(c *C) {