-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathformatter_test.go
More file actions
167 lines (157 loc) · 6.31 KB
/
Copy pathformatter_test.go
File metadata and controls
167 lines (157 loc) · 6.31 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package herd
import (
"fmt"
"strconv"
"testing"
"time"
)
var results []*Result
var testformatter = newPrettyFormatter(defaultColorConfigDark)
func init() {
i := 0
count := func() int {
i++
return i
}
start := time.Date(2019, 12, 8, 20, 26, 0, 0, time.UTC)
results = []*Result{
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
Err: fmt.Errorf("It's always DNS"),
ExitStatus: -1,
Stdout: []byte{},
Stderr: []byte{},
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
ExitSuccess: true,
Stdout: []byte("May the forks be with you\nAnd you\n"),
Stderr: []byte{},
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
ExitSuccess: true,
Stdout: []byte("Newline is added automatically"),
Stderr: []byte{},
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
Err: fmt.Errorf("exited with status 1"),
ExitStatus: 1,
Stdout: []byte{},
Stderr: []byte("Text on stderr\nMore text\n"),
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
Err: fmt.Errorf("exited with status 1"),
ExitStatus: 1,
Stdout: []byte("Text on stdout\n"),
Stderr: []byte("Text on stderr\nMore text\n"),
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
ExitSuccess: true,
Stdout: []byte("Text on stdout without newline"),
Stderr: []byte("Text on stderr\nMore text\n"),
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
ExitSuccess: false,
Stdout: []byte("exit 0, but no success"),
Stderr: []byte{},
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
{
Host: fmt.Sprintf("test-host-%03d.example.com", count()),
ExitSuccess: true,
ExitStatus: 1,
Stdout: []byte("exit 1, but success"),
Stderr: []byte{},
StartTime: start,
EndTime: start.Add(12 * time.Second),
ElapsedTime: 12,
},
}
}
func TestPrettyFormatterFormatCommand(t *testing.T) {
if x := testformatter.formatCommand("hello world"); x != "\033[0;36mhello world\033[0m\n" {
t.Errorf("Expected colored string, got %s", strconv.Quote(x))
}
}
func TestPrettyFormatterFormatStatus(t *testing.T) {
expected := []string{
"\033[0;31mtest-host-001.example.com It's always DNS after 12s\033[0m\n",
"\033[0;32mtest-host-002.example.com completed successfully after 12s\033[0m\n",
"\033[0;32mtest-host-003.example.com completed successfully after 12s\033[0m\n",
"\033[0;33mtest-host-004.example.com exited with status 1 after 12s\033[0m\n",
"\033[0;33mtest-host-005.example.com exited with status 1 after 12s\033[0m\n",
"\033[0;32mtest-host-006.example.com completed successfully after 12s\033[0m\n",
"\033[0;33mtest-host-007.example.com exited with status 0 after 12s\033[0m\n",
"\033[0;32mtest-host-008.example.com completed successfully with status 1 after 12s\033[0m\n",
}
for i, r := range results {
if s := testformatter.formatStatus(r, 0); s != expected[i] {
t.Errorf("Result %d, expected status %s, got %s", i, strconv.Quote(expected[i]), strconv.Quote(s))
}
}
}
func TestPrettyFormatterFormatOutput(t *testing.T) {
expected := []string{
"\033[0;31mtest-host-001.example.com It's always DNS after 12s\033[0m\n",
"\033[0;32mtest-host-002.example.com \033[0mMay the forks be with you\n And you\n",
"\033[0;32mtest-host-003.example.com \033[0mNewline is added automatically\n",
"\033[0;33mtest-host-004.example.com \033[0mText on stderr\n More text\n\033[0;33mtest-host-004.example.com exited with status 1 after 12s\033[0m\n",
"\033[0;33mtest-host-005.example.com \033[0mText on stdout\n\033[0;33mtest-host-005.example.com \033[0mText on stderr\n More text\n\033[0;33mtest-host-005.example.com exited with status 1 after 12s\033[0m\n",
"\033[0;32mtest-host-006.example.com \033[0mText on stdout without newline\n\x1b[0;33mtest-host-006.example.com \x1b[0mText on stderr\n More text\n",
"\x1b[0;32mtest-host-007.example.com \x1b[0mexit 0, but no success\n",
"\x1b[0;32mtest-host-008.example.com \x1b[0mexit 1, but success\n",
}
for i, r := range results {
if s := testformatter.formatOutput(r, 0); s != expected[i] {
t.Errorf("Result %d, expected output %s, got %s", i, strconv.Quote(expected[i]), strconv.Quote(s))
}
}
}
func TestPrettyFormatterFormatResult(t *testing.T) {
expected := []string{
"\033[0;31mtest-host-001.example.com It's always DNS after 12s\033[0m\n",
"\033[0;32mtest-host-002.example.com completed successfully after 12s\033[0m\n May the forks be with you\n And you\n",
"\033[0;32mtest-host-003.example.com completed successfully after 12s\033[0m\n Newline is added automatically\n",
"\033[0;33mtest-host-004.example.com exited with status 1 after 12s\033[0m\n\033[0;90m----\033[0m\n Text on stderr\n More text\n",
"\033[0;33mtest-host-005.example.com exited with status 1 after 12s\033[0m\n Text on stdout\n\033[0;90m----\033[0m\n Text on stderr\n More text\n",
"\033[0;32mtest-host-006.example.com completed successfully after 12s\x1b[0m\n Text on stdout without newline\n\x1b[0;90m----\x1b[0m\n Text on stderr\n More text\n",
"\x1b[0;33mtest-host-007.example.com exited with status 0 after 12s\x1b[0m\n exit 0, but no success\n",
"\x1b[0;32mtest-host-008.example.com completed successfully with status 1 after 12s\x1b[0m\n exit 1, but success\n",
}
for i, r := range results {
if s := testformatter.formatResult(r, 0); s != expected[i] {
t.Errorf("Result %d, expected result %s, got %s", i, strconv.Quote(expected[i]), strconv.Quote(s))
}
}
}
func TestIndent(t *testing.T) {
t.Skip("Not yet implemented")
}
func TestLogrusFormatter(t *testing.T) {
t.Skip("Not yet implemented")
}