-
Notifications
You must be signed in to change notification settings - Fork 3
/
ssh_test.go
129 lines (120 loc) · 2.54 KB
/
ssh_test.go
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
129
package ssh
import (
"bufio"
"bytes"
"fmt"
"testing"
"time"
)
func TestSSH(t *testing.T) {
t.Run("Connectable", func(t *testing.T) {
cases := []struct {
host string
connectable bool
}{{
host: "127.0.0.1",
connectable: true,
},
{
host: "192.3.0.1",
connectable: false,
},
}
for _, c := range cases {
client := New(c.host).
WithUser("root").
WithPort("2222").
WithKey("./test/id_rsa")
fmt.Println(client)
ok, err := client.Connectable(5 * time.Second)
if !ok {
if err == nil {
t.Fatalf("error should not be nil ")
}
}
if ok != c.connectable {
t.Fatalf("should get %v but got %v", c.connectable, ok)
}
}
})
t.Run("public key", func(t *testing.T) {
cases := []struct {
cmd string
stdout string
stderr string
}{
{
cmd: "echo 1",
stdout: "1\n",
stderr: "",
},
{
cmd: "docker ps",
stdout: "",
stderr: "bash: docker: command not found\n",
},
}
for _, c := range cases {
host := "127.0.0.1"
var inPipe bytes.Buffer
var outPipe bytes.Buffer
var errPipe bytes.Buffer
options := CommandOptions{
Stdin: bufio.NewReader(&inPipe),
Stdout: bufio.NewWriter(&outPipe),
Stderr: bufio.NewWriter(&errPipe),
}
_ = New(host).
WithUser("root").
WithPort("2222").
WithKey("./test/id_rsa").
RunCommand(c.cmd, options)
if errPipe.String() != c.stderr {
t.Fatalf("should get %v but got %v", c.stderr, errPipe.String())
}
if outPipe.String() != c.stdout {
t.Fatalf("should get %v but got %v", c.stdout, outPipe.String())
}
}
})
t.Run("password", func(t *testing.T) {
cases := []struct {
cmd string
stdout string
stderr string
}{
{
cmd: "echo 1",
stdout: "1\n",
stderr: "",
},
{
cmd: "docker ps",
stdout: "",
stderr: "bash: docker: command not found\n",
},
}
for _, c := range cases {
host := "127.0.0.1"
var inPipe bytes.Buffer
var outPipe bytes.Buffer
var errPipe bytes.Buffer
options := CommandOptions{
Stdin: bufio.NewReader(&inPipe),
Stdout: bufio.NewWriter(&outPipe),
Stderr: bufio.NewWriter(&errPipe),
}
_ = New(host).
WithUser("root").
WithPort("2222").
WithPassword("THEPASSWORDYOUCREATED").
RunCommand(c.cmd, options)
if errPipe.String() != c.stderr {
t.Fatalf("should get %v but got %v", c.stderr, errPipe.String())
}
if outPipe.String() != c.stdout {
t.Fatalf("should get %v but got %v", c.stdout, outPipe.String())
}
}
})
}