-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli_test.go
233 lines (207 loc) · 8.15 KB
/
cli_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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package main
import (
"bytes"
"os"
"regexp"
"testing"
)
func TestCurrentVersion(t *testing.T) {
tests := []struct {
name string
version string
expectedOutput string
}{
{
name: "Version set by ldflags",
version: "v1.0.0",
expectedOutput: "Version: v1.0.0\n",
},
{
name: "Version set to (devel)",
version: "(devel)",
expectedOutput: "Version: (devel)\n", // Simplified assumption
},
}
// Save the original version and restore it after tests
originalVersion := version
defer func() { version = originalVersion }()
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Set the version for this test case
version = tt.version
// Redirect stdout to capture the output
r, w, _ := os.Pipe()
oldStdout := os.Stdout
os.Stdout = w
// Call the function
currentVersion()
// Close the writer and restore stdout
err := w.Close()
if err != nil {
t.Fatalf("Failed to close pipe: %v", err)
}
os.Stdout = oldStdout
// Read the output from the pipe
var buf bytes.Buffer
if _, err := buf.ReadFrom(r); err != nil {
t.Fatalf("Failed to read from pipe: %v", err)
}
// Compare the output with the expected result
got := buf.String()
if got != tt.expectedOutput {
t.Errorf("Expected %q, got %q", tt.expectedOutput, got)
}
})
}
}
var ansiRegex = regexp.MustCompile(`\x1b\[[0-9;]*m`)
func captureOutput(f func()) string {
var buf bytes.Buffer
stdout := os.Stdout
r, w, _ := os.Pipe()
os.Stdout = w
f()
_ = w.Close()
os.Stdout = stdout
_, _ = buf.ReadFrom(r)
return buf.String()
}
func stripANSI(input string) string {
return ansiRegex.ReplaceAllString(input, "")
}
func TestRunCLI(t *testing.T) {
tests := []struct {
name string
args []string
expectedOutput string
expectedCode int
}{
{
name: "No Arguments",
args: []string{},
expectedOutput: "╭────────────────────────────────────────────────────────╮\n" +
"│Welcome! This tool displays data related to Pokémon! │\n" +
"│ │\n" +
"│ USAGE: │\n" +
"│ poke-cli [flag] │\n" +
"│ poke-cli <command> [flag] │\n" +
"│ poke-cli <command> <subcommand> [flag] │\n" +
"│ │\n" +
"│ FLAGS: │\n" +
"│ -h, --help Shows the help menu │\n" +
"│ -l, --latest Prints the latest version available │\n" +
"│ -v, --version Prints the current version │\n" +
"│ │\n" +
"│ AVAILABLE COMMANDS: │\n" +
"│ pokemon Get details of a specific Pokémon │\n" +
"│ types Get details of a specific typing │\n" +
"╰────────────────────────────────────────────────────────╯\n",
expectedCode: 0,
},
{
name: "Help Flag Short",
args: []string{"-h"},
expectedOutput: "╭────────────────────────────────────────────────────────╮\n" +
"│Welcome! This tool displays data related to Pokémon! │\n" +
"│ │\n" +
"│ USAGE: │\n" +
"│ poke-cli [flag] │\n" +
"│ poke-cli <command> [flag] │\n" +
"│ poke-cli <command> <subcommand> [flag] │\n" +
"│ │\n" +
"│ FLAGS: │\n" +
"│ -h, --help Shows the help menu │\n" +
"│ -l, --latest Prints the latest version available │\n" +
"│ -v, --version Prints the current version │\n" +
"│ │\n" +
"│ AVAILABLE COMMANDS: │\n" +
"│ pokemon Get details of a specific Pokémon │\n" +
"│ types Get details of a specific typing │\n" +
"╰────────────────────────────────────────────────────────╯\n",
expectedCode: 0,
},
{
name: "Help Flag Long",
args: []string{"--help"},
expectedOutput: "╭────────────────────────────────────────────────────────╮\n" +
"│Welcome! This tool displays data related to Pokémon! │\n" +
"│ │\n" +
"│ USAGE: │\n" +
"│ poke-cli [flag] │\n" +
"│ poke-cli <command> [flag] │\n" +
"│ poke-cli <command> <subcommand> [flag] │\n" +
"│ │\n" +
"│ FLAGS: │\n" +
"│ -h, --help Shows the help menu │\n" +
"│ -l, --latest Prints the latest version available │\n" +
"│ -v, --version Prints the current version │\n" +
"│ │\n" +
"│ AVAILABLE COMMANDS: │\n" +
"│ pokemon Get details of a specific Pokémon │\n" +
"│ types Get details of a specific typing │\n" +
"╰────────────────────────────────────────────────────────╯\n",
expectedCode: 0,
},
{
name: "Invalid Command",
args: []string{"invalid"},
expectedOutput: "Error!",
expectedCode: 1,
},
{
name: "Latest Flag",
args: []string{"-l"},
expectedOutput: "Latest Docker image version: v0.9.1\nLatest release tag: v0.9.1\n",
expectedCode: 0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
exit = func(code int) {}
output := captureOutput(func() {
code := runCLI(tt.args)
if code != tt.expectedCode {
t.Errorf("Expected exit code %d, got %d", tt.expectedCode, code)
}
})
output = stripANSI(output)
if !bytes.Contains([]byte(output), []byte(tt.expectedOutput)) {
t.Errorf("Expected output to contain %q, got %q", tt.expectedOutput, output)
}
})
}
}
func TestMainFunction(t *testing.T) {
originalExit := exit
defer func() { exit = originalExit }() // Restore original exit after test
tests := []struct {
name string
args []string
expectedOutput string
expectedCode int
}{
{
name: "Run main command",
args: []string{"poke-cli"},
expectedOutput: "Welcome! This tool displays data related to Pokémon!",
expectedCode: 0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
exitCode := 0
exit = func(code int) { exitCode = code }
output := captureOutput(func() {
os.Args = tt.args
main()
})
output = stripANSI(output)
if exitCode != tt.expectedCode {
t.Errorf("Expected exit code %d, got %d", tt.expectedCode, exitCode)
}
if !bytes.Contains([]byte(output), []byte(tt.expectedOutput)) {
t.Errorf("Expected output to contain %q, got %q", tt.expectedOutput, output)
}
})
}
}