-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput_test.go
76 lines (62 loc) · 1.61 KB
/
output_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
package main
import (
"testing"
)
var result = Result{
Host: "github.com",
Options: map[string]string{
"Hostname": "github.com",
"PreferredAuthentications": "publickey",
"ServerAliveInterval": "60",
},
OptionKeys: []string{"Hostname", "PreferredAuthentications", "ServerAliveInterval"},
}
func TestOutputPlain(t *testing.T) {
hostOnly := false
format := "plain"
o := NewOutput(result, hostOnly, format)
got := o.Format()
expected :=
`Host github.com
Hostname github.com
PreferredAuthentications publickey
ServerAliveInterval 60
`
if got != expected {
t.Error("Expected ", got, "to match ", expected)
}
}
func TestOutputPretty(t *testing.T) {
hostOnly := false
format := "pretty"
o := NewOutput(result, hostOnly, format)
got := o.Format()
expected :=
`Host github.com
Hostname github.com
PreferredAuthentications publickey
ServerAliveInterval 60
`
if got != expected {
t.Error("Expected ", got, "to match ", expected)
}
}
func TestOutputHostOnly(t *testing.T) {
hostOnly := true
format := "plain"
o := NewOutput(result, hostOnly, format)
got := o.Format()
if got != result.Options["Hostname"] {
t.Error("Expected ", result.Options["Hostname"], "Got ", got)
}
}
func TestOutputJson(t *testing.T) {
hostOnly := false
format := "json"
o := NewOutput(result, hostOnly, format)
got := o.Format()
expected := `{"Host":"github.com","Options":{"Hostname":"github.com","PreferredAuthentications":"publickey","ServerAliveInterval":"60"}}`
if got != expected {
t.Error("Expected ", expected, "Got ", got)
}
}