-
Notifications
You must be signed in to change notification settings - Fork 41
/
app_test.go
468 lines (393 loc) · 10.4 KB
/
app_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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
package gcli_test
import (
"bytes"
"fmt"
"strings"
"testing"
"github.com/gookit/color"
"github.com/gookit/gcli/v3"
"github.com/gookit/goutil/dump"
"github.com/gookit/goutil/testutil/assert"
)
var (
emptyCmd = &gcli.Command{
Name: "empty",
Desc: "an test command",
}
simpleCmd = &gcli.Command{
Name: "simple",
Desc: "an simple command",
Func: func(c *gcli.Command, args []string) error {
dump.Println(c.Path(), args)
c.Ctx.Set("simple", "simple command")
return nil
},
}
subCmd = &gcli.Command{
Name: "sub",
Desc: "an simple sub command",
Func: func(c *gcli.Command, args []string) error {
fmt.Println(c.Path(), args)
return nil
},
}
appWithMl = gcli.New(func(app *gcli.App) {
app.ExitOnEnd = false
app.Add(&gcli.Command{
Name: "top1",
Desc: "desc for top1",
Subs: []*gcli.Command{
{
Name: "sub1",
Desc: "desc for top1.sub1",
Func: func(c *gcli.Command, args []string) error {
c.Ctx.Set("msg", c.App().Ctx.Get("top1:sub1"))
return nil
},
Subs: []*gcli.Command{
{
Name: "sub1-1",
Desc: "desc for top1.sub1.sub1-1",
Func: func(c *gcli.Command, args []string) error {
c.Ctx.Set("msg", c.App().Ctx.Get("top1:sub1:sub1-1"))
return nil
},
},
},
},
},
})
app.Add(&gcli.Command{
Name: "top2",
Desc: "desc for top2",
})
})
)
func TestApp_MatchByPath(t *testing.T) {
// is := assert.New(t)
app := gcli.NewApp()
app.Add(
gcli.NewCommand("cmd1", "desc"),
gcli.NewCommand("cmd2", "desc2"),
)
simpleCmd.AddCommand(subCmd)
app.AddCommand(simpleCmd)
assert.True(t, app.HasCommand(simpleCmd.Name))
c := app.MatchByPath("simple:sub")
assert.NotNil(t, c)
assert.Eq(t, "sub", c.Name)
assert.Eq(t, "simple", c.ParentName())
c = appWithMl.FindByPath("top1:sub1")
assert.Eq(t, "sub1", c.Name)
}
func TestApp_Add(t *testing.T) {
is := assert.New(t)
app := gcli.NewApp()
app.Add(gcli.NewCommand("c1", "c1 desc", func(c *gcli.Command) {
is.Eq("c1", c.Name)
}), gcli.NewCommand("c2", "c2 desc", func(c *gcli.Command) {
is.Eq("c2", c.Name)
}))
app.AddCommand(&gcli.Command{
Name: "c3",
Desc: "{$cmd} desc",
Aliases: []string{"alias1"},
Config: func(c *gcli.Command) {
is.Eq("c3", c.Name)
},
})
is.True(app.IsCommand("c1"))
is.True(app.IsCommand("c2"))
is.True(app.HasCommand("c3"))
is.Len(app.CmdNames(), 3)
is.Len(app.CmdNameMap(), 3)
is.NotEmpty(app.CommandNames())
c := gcli.NewCommand("mdl-test", "desc test2")
app.AddCommand(c)
is.Eq("", c.ParentName())
is.Eq("mdl-test", c.Name)
is.Eq("c3", app.ResolveAlias("alias1"))
is.True(app.IsAlias("alias1"))
}
func TestApp_AddCommand(t *testing.T) {
app := gcli.NewApp(func(a *gcli.App) {
a.ExitOnEnd = false
})
app.AddCommand(emptyCmd)
cmd1 := gcli.NewCommand("cmd1", "desc")
cmd1.Disable()
app.AddCommand(cmd1)
assert.Len(t, app.Commands(), 1)
assert.Len(t, app.CommandNames(), 1)
assert.False(t, app.IsCommand("cmd1"))
assert.Eq(t, "", app.CommandName())
assert.PanicsMsg(t, func() {
app.AddCommand(&gcli.Command{})
}, "GCli: the command name can not be empty")
assert.PanicsMsg(t, func() {
app.AddCommand(&gcli.Command{Name: "+xdd"})
}, "GCli: the command name '+xdd' is invalid, must match: ^[a-zA-Z][\\w-]*$")
}
func TestApp_AddAliases(t *testing.T) {
app := gcli.NewApp(func(a *gcli.App) {
a.ExitOnEnd = false
})
cmd := &gcli.Command{
Name: "test",
Desc: "the desc",
Aliases: []string{"alias1"},
}
app.AddCommand(cmd)
app.AddCommand(gcli.NewCommand("cmd2", "desc"))
assert.True(t, app.IsAlias("alias1"))
assert.PanicsMsg(t, func() {
app.AddCommand(gcli.NewCommand("alias1", "desc"))
}, "GCli: The name 'alias1' is already used as an alias")
assert.PanicsMsg(t, func() {
app.AddAliases("cmd2", "test")
}, "GCli: The name 'test' has been used as an command name")
}
func TestApp_Run_noCommands(t *testing.T) {
is := assert.New(t)
app := gcli.NewApp(func(a *gcli.App) {
a.ExitOnEnd = false
a.Version = "1.3.9"
})
app.Run([]string{})
// disable color code, re-set output for test
buf := new(bytes.Buffer)
color.Disable()
color.SetOutput(buf)
gcli.SetVerbose(gcli.VerbCrazy)
defer func() {
color.ResetOptions()
gcli.SetVerbose(gcli.VerbError)
}()
// run
code := app.Run([]string{})
str := buf.String()
buf.Reset()
is.Eq(0, code)
is.Contains(str, "1.3.9")
is.Contains(str, "Version: 1.3.9")
is.Contains(str, "This is my console application")
is.Contains(str, "Display help information")
err := app.Exec("not-exists", []string{})
is.Err(err)
}
func TestApp_Run_command_withArguments(t *testing.T) {
is := assert.New(t)
app := gcli.NewApp(func(a *gcli.App) {
a.ExitOnEnd = false
})
// run with command
var argStr, cmdRet string
app.Add(&gcli.Command{
Name: "test",
Desc: "desc for test command",
Config: func(c *gcli.Command) {
c.AddArg("arg0", "desc")
c.BindArg(&gcli.Argument{Name: "arg1", Desc: "desc1"})
},
Func: func(c *gcli.Command, args []string) error {
cmdRet = c.Name
argStr = strings.Join(args, ",")
return nil
},
})
// run a command
code := app.Run([]string{"test"})
is.Eq(0, code)
is.Eq("", argStr)
is.Eq("test", cmdRet)
is.Eq("test", app.CommandName())
// clear
argStr = ""
cmdRet = ""
err := app.Exec("test", []string{"val0", "val1", "val2"})
is.NoErr(err)
is.Eq("test", cmdRet)
is.Eq("val2", argStr)
err = app.Exec("not-exists", []string{})
is.Err(err)
is.Eq(`exec unknown command "not-exists"`, err.Error())
// other
// app.AddError(fmt.Errorf("test error"))
}
func TestApp_Run_command_withOptions(t *testing.T) {
is := assert.New(t)
app := gcli.NewApp(gcli.NotExitOnEnd())
// run with command
var optStr, cmdRet string
var opt1 string
app.Add(&gcli.Command{
Name: "test",
Desc: "desc for test command",
Config: func(c *gcli.Command) {
c.AddArg("arg0", "desc")
c.BindArg(&gcli.Argument{Name: "arg1", Desc: "desc1"})
c.StrOpt(&opt1, "opt1", "o", "", "opt desc")
},
Func: func(c *gcli.Command, args []string) error {
cmdRet = c.Name
optStr = strings.Join(args, ",")
return nil
},
})
// run command
code := app.Run([]string{"test"})
is.Eq(0, code)
is.Eq("", optStr)
is.Eq("test", cmdRet)
is.Eq("test", app.CommandName())
// help option
app.Run([]string{"test", "-h"})
// disable color code, reset output for test
buf := new(bytes.Buffer)
color.Disable()
color.SetOutput(buf)
gcli.SetVerbose(gcli.VerbCrazy)
defer func() {
color.ResetOptions()
gcli.SetVerbose(gcli.VerbError)
}()
app.Run([]string{"test", "-h"})
s := buf.String()
fmt.Println(s)
is.Contains(s, "-o, --opt1 string")
}
func TestApp_Run_subcommand(t *testing.T) {
is := assert.New(t)
id := "top1:sub1"
appWithMl.Ctx.Set(id, "TestApp_Run_subcommand")
appWithMl.Run([]string{"top1", "sub1"})
c := appWithMl.FindCommand(id)
is.NotEmpty(c)
is.Eq("TestApp_Run_subcommand", c.Ctx.Get("msg"))
}
func TestApp_Run_by_cmd_ID(t *testing.T) {
is := assert.New(t)
appWithMl.Ctx.Set("top1:sub1", "TestApp_Run_by_cmd_ID")
appWithMl.Run([]string{"top1:sub1"})
c := appWithMl.FindCommand("top1:sub1")
is.NotEmpty(c)
is.Eq("TestApp_Run_by_cmd_ID", c.Ctx.Get("msg"))
}
func TestApp_AddAliases_and_run(t *testing.T) {
is := assert.New(t)
id := "top1:sub1"
appWithMl.AddAliases(id, "ts1")
appWithMl.Ctx.Set(id, "TestApp_AddAliases_and_run")
appWithMl.Run([]string{"ts1"})
c := appWithMl.FindCommand(id)
is.NotEmpty(c)
is.Eq("TestApp_AddAliases_and_run", c.Ctx.Get("msg"))
}
func TestApp_showCommandHelp(t *testing.T) {
is := assert.New(t)
app := gcli.NewApp(func(a *gcli.App) {
a.ExitOnEnd = false
})
app.AddCommand(gcli.NewCommand("test", "desc for test command"))
app.Run([]string{"help", "test"})
// disable color code, re-set output for test
buf := new(bytes.Buffer)
color.Disable()
color.SetOutput(buf)
defer color.ResetOptions()
// show command help
code := app.Run([]string{"help", "test"})
str := buf.String()
buf.Reset()
is.Eq(0, code)
is.Contains(str, "Name: test")
is.Contains(str, "Desc for test command")
// show command help: arg error
code = app.Run([]string{"help", "test", "more"})
str = buf.String()
buf.Reset()
is.Eq(gcli.ERR, code)
is.Contains(str, "ERROR: Too many arguments given.")
// show command help for 'help'
code = app.Run([]string{"help", "help"})
str = buf.String()
buf.Reset()
is.Eq(gcli.OK, code)
is.Contains(str, "Display help message for application or command.")
// show command help: unknown command
code = app.Run([]string{"help", "not-exist"})
str = buf.String()
buf.Reset()
is.Eq(gcli.ERR, code)
is.Contains(str, "Unknown command name 'not-exist'")
}
func TestApp_showVersion(t *testing.T) {
app := gcli.NewApp(func(a *gcli.App) {
a.ExitOnEnd = false
a.Version = "1.3.9"
a.Desc = "application desc"
a.Logo.Text = "MY-LOGO"
})
app.Run([]string{"--version"})
// disable color code, re-set output for test
buf := new(bytes.Buffer)
color.Disable()
color.SetOutput(buf)
defer color.ResetOptions()
app.Run([]string{"--version"})
str := buf.String()
buf.Reset()
assert.Contains(t, str, "Version: 1.3.9")
assert.Contains(t, str, "Application desc")
assert.Contains(t, str, "MY-LOGO")
}
func TestApp_showCommandTips(t *testing.T) {
app := gcli.NewApp()
app.ExitOnEnd = false
app.AddCommand(emptyCmd)
app.Run([]string{"emp"})
// disable color code, re-set output for test
buf := new(bytes.Buffer)
color.Disable()
color.SetOutput(buf)
defer color.ResetOptions()
app.Run([]string{"emp"})
str := buf.String()
buf.Reset()
assert.Contains(t, str, "ERROR: unknown input command \"emp\"")
assert.Contains(t, str, `Maybe you mean:
empty`)
}
// func TestApp_RemoveCommand(t *testing.T) {
// app := gcli.NewApp()
//
// app.Add(
// gcli.NewCommand("cmd1", "desc"),
// gcli.NewCommand("cmd2", "desc"),
// )
//
// assert.Len(t, app.Commands(), 2)
// assert.True(t, app.IsCommand("cmd1"))
//
// assert.Eq(t, 1, app.RemoveCommand("cmd1"))
// assert.Len(t, app.Commands(), 1)
// assert.False(t, app.IsCommand("cmd1"))
// }
func TestApp_AddHandler(t *testing.T) {
app := gcli.NewApp()
app.AddHandler(&UserCommand{})
assert.True(t, app.HasCommand("test"))
}
// UserCommand for tests
type UserCommand struct {
opt1 string
}
func (uc *UserCommand) Creator() *gcli.Command {
return gcli.NewCommand("test", "desc message")
}
func (uc *UserCommand) Config(c *gcli.Command) {
c.StrOpt(&uc.opt1, "opt", "o", "", "desc")
}
func (uc *UserCommand) Execute(_ *gcli.Command, _ []string) error {
return nil
}