forked from maruel/subcommands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubcommands_test.go
292 lines (254 loc) · 6.61 KB
/
subcommands_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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
// Copyright 2012 Marc-Antoine Ruel. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
// Package subcommands permits a Go application to implement subcommands support
// similar to what is supported by the 'go' tool.
//
// The library is designed so that the test cases can run concurrently.
// Using global flags variables is discouraged to keep your program testable
// conccurently.
package subcommands
import (
"bytes"
"io"
"os"
"strconv"
"testing"
"github.com/maruel/ut"
)
func TestFindCommand(t *testing.T) {
commands := []*Command{
{UsageLine: "Fo"},
{UsageLine: "Foo bar"},
{UsageLine: "LongCommand"},
}
a := &DefaultApplication{Commands: commands}
// Exact
ut.AssertEqual(t, commands[0], FindCommand(a, "Fo"))
ut.AssertEqual(t, commands[1], FindCommand(a, "Foo"))
ut.AssertEqual(t, commands[2], FindCommand(a, "LongCommand"))
// Prefix
ut.AssertEqual(t, (*Command)(nil), FindCommand(a, "F"))
ut.AssertEqual(t, (*Command)(nil), FindCommand(a, "LongC"))
// Case insensitive
ut.AssertEqual(t, (*Command)(nil), FindCommand(a, "fo"))
ut.AssertEqual(t, (*Command)(nil), FindCommand(a, "foo"))
ut.AssertEqual(t, (*Command)(nil), FindCommand(a, "longcommand"))
}
func TestFindNearestCommand(t *testing.T) {
commands := []*Command{
{UsageLine: "Fo"},
{UsageLine: "Foo"},
{UsageLine: "LongCommand"},
{UsageLine: "LargCommand"},
Section("bar"),
}
a := &DefaultApplication{Commands: commands}
// Exact
ut.AssertEqual(t, commands[0], FindNearestCommand(a, "Fo"))
ut.AssertEqual(t, commands[1], FindNearestCommand(a, "Foo"))
ut.AssertEqual(t, commands[2], FindNearestCommand(a, "LongCommand"))
// Prefix
ut.AssertEqual(t, (*Command)(nil), FindNearestCommand(a, "F"))
ut.AssertEqual(t, commands[2], FindNearestCommand(a, "Lo"))
// Case insensitive
ut.AssertEqual(t, (*Command)(nil), FindNearestCommand(a, "fo"))
ut.AssertEqual(t, commands[1], FindNearestCommand(a, "foo"))
ut.AssertEqual(t, commands[2], FindNearestCommand(a, "longcommand"))
ut.AssertEqual(t, commands[2], FindNearestCommand(a, "longc"))
// Based on levenshtein distance
ut.AssertEqual(t, (*Command)(nil), FindNearestCommand(a, "Fof"))
ut.AssertEqual(t, commands[2], FindNearestCommand(a, "LongCommandd"))
ut.AssertEqual(t, commands[2], FindNearestCommand(a, "LongCmomand"))
ut.AssertEqual(t, commands[2], FindNearestCommand(a, "ongCommand"))
ut.AssertEqual(t, (*Command)(nil), FindNearestCommand(a, "LangCommand"))
// Section cannot be found.
ut.AssertEqual(t, (*Command)(nil), FindNearestCommand(a, "bar"))
}
func TestUsage(t *testing.T) {
a := &DefaultApplication{
Commands: []*Command{
{UsageLine: "Foo", ShortDesc: "A foo"},
{UsageLine: "SuperDuperLongLine", ShortDesc: "A long thing", Advanced: true},
},
EnvVars: map[string]EnvVarDefinition{
"EVAR": {ShortDesc: "Desc"},
"SUPER_LONG_EVAR": {ShortDesc: "Desc", Advanced: true},
"DFLT_EVAR": {ShortDesc: "Desc", Default: "yep"},
},
}
buf := bytes.Buffer{}
Usage(&buf, a, false)
ut.AssertEqual(t, buf.String(), `
Usage: [command] [arguments]
Commands:
Foo A foo
Environment Variables:
DFLT_EVAR Desc (Default: "yep")
EVAR Desc
Use " help [command]" for more information about a command.
Use " help -advanced" to display all commands.
`)
buf.Reset()
Usage(&buf, a, true)
ut.AssertEqual(t, buf.String(), `
Usage: [command] [arguments]
Commands:
Foo A foo
SuperDuperLongLine A long thing
Environment Variables:
DFLT_EVAR Desc (Default: "yep")
EVAR Desc
SUPER_LONG_EVAR Desc
Use " help [command]" for more information about a command.
`)
}
func TestDefaultApplication_GetOut_GetErr(t *testing.T) {
a := DefaultApplication{}
ut.AssertEqual(t, a.GetOut().(*os.File), os.Stdout)
ut.AssertEqual(t, a.GetErr().(*os.File), os.Stderr)
}
func TestCommandRunBase_GetFlags(t *testing.T) {
c := CommandRunBase{}
ut.AssertEqual(t, c.GetFlags(), &c.Flags)
}
func TestCmdHelp(t *testing.T) {
data := []struct {
args []string
out string
err string
exit int
}{
{
[]string{"help"},
"Title\n" +
"\n" +
"Usage: App [command] [arguments]\n" +
"\n" +
"Commands:\n" +
" help prints help about a command\n" +
"\n" +
"\n" +
"Use \"App help [command]\" for more information about a command.\n" +
"Use \"App help -advanced\" to display all commands.\n" +
"\n",
"",
0,
},
{
[]string{"help", "-advanced"},
"Title\n" +
"\n" +
"Usage: App [command] [arguments]\n" +
"\n" +
"Commands:\n" +
" help prints help about a command\n" +
" foo foo\n" +
"\n" +
"\n" +
"Use \"App help [command]\" for more information about a command.\n" +
"\n",
"",
0,
},
{
[]string{"help", "foo"},
"",
"Foo.\n" +
"\n" +
"usage: App foo\n",
0,
},
{
[]string{"help", "foo", "bar"},
"",
"App: Too many arguments given\n" +
"\n" +
"Run 'App help' for usage.\n",
2,
},
{
[]string{"foo", "-help"},
"",
"Foo.\n" +
"\n" +
"usage: App foo\n",
2,
},
{
[]string{"help", "inexistant"},
"",
"App: unknown command `inexistant`\n" +
"\n" +
"Run 'App help' for usage.\n",
2,
},
{
[]string{"inexistant"},
"",
"App: unknown command `inexistant`\n" +
"\n" +
"Run 'App help' for usage.\n",
2,
},
{
nil,
"",
"Title\n" +
"\n" +
"Usage: App [command] [arguments]\n" +
"\n" +
"Commands:\n" +
" help prints help about a command\n" +
"\n" +
"\n" +
"Use \"App help [command]\" for more information about a command.\n" +
"Use \"App help -advanced\" to display all commands.\n" +
"\n",
2,
},
}
for i, line := range data {
line := line
t.Run(strconv.Itoa(i), func(t *testing.T) {
a := application{
DefaultApplication: DefaultApplication{
Name: "App",
Title: "Title",
Commands: []*Command{
CmdHelp,
{
UsageLine: "foo",
ShortDesc: "foo",
LongDesc: "Foo.",
Advanced: true,
CommandRun: func() CommandRun {
return &command{}
},
},
},
},
}
ut.AssertEqual(t, Run(&a, line.args), line.exit)
ut.AssertEqual(t, a.out.String(), line.out)
ut.AssertEqual(t, a.err.String(), line.err)
})
}
}
type application struct {
DefaultApplication
out bytes.Buffer
err bytes.Buffer
}
func (a *application) GetOut() io.Writer {
return &a.out
}
func (a *application) GetErr() io.Writer {
return &a.err
}
type command struct {
CommandRunBase
}
func (c *command) Run(a Application, args []string, env Env) int {
return 42
}