2015-07-20 19:18:25 +00:00
|
|
|
package cli
|
2015-05-04 01:02:03 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-05-04 01:04:45 +00:00
|
|
|
func Test_ShowAppHelp_NoAuthor(t *testing.T) {
|
2015-05-04 01:02:03 +00:00
|
|
|
output := new(bytes.Buffer)
|
2015-07-20 19:18:25 +00:00
|
|
|
app := NewApp()
|
2015-05-04 01:02:03 +00:00
|
|
|
app.Writer = output
|
|
|
|
|
2015-07-20 19:18:25 +00:00
|
|
|
c := NewContext(app, nil, nil)
|
2015-05-04 01:02:03 +00:00
|
|
|
|
2015-07-20 19:18:25 +00:00
|
|
|
ShowAppHelp(c)
|
2015-05-04 01:02:03 +00:00
|
|
|
|
|
|
|
if bytes.Index(output.Bytes(), []byte("AUTHOR(S):")) != -1 {
|
|
|
|
t.Errorf("expected\n%snot to include %s", output.String(), "AUTHOR(S):")
|
|
|
|
}
|
|
|
|
}
|
2015-06-25 06:07:32 +00:00
|
|
|
|
|
|
|
func Test_ShowAppHelp_NoVersion(t *testing.T) {
|
|
|
|
output := new(bytes.Buffer)
|
2015-07-20 19:18:25 +00:00
|
|
|
app := NewApp()
|
2015-06-25 06:07:32 +00:00
|
|
|
app.Writer = output
|
|
|
|
|
2015-06-25 06:11:59 +00:00
|
|
|
app.Version = ""
|
|
|
|
|
2015-07-20 19:18:25 +00:00
|
|
|
c := NewContext(app, nil, nil)
|
2015-06-25 06:07:32 +00:00
|
|
|
|
2015-07-20 19:18:25 +00:00
|
|
|
ShowAppHelp(c)
|
2015-06-25 06:07:32 +00:00
|
|
|
|
|
|
|
if bytes.Index(output.Bytes(), []byte("VERSION:")) != -1 {
|
|
|
|
t.Errorf("expected\n%snot to include %s", output.String(), "VERSION:")
|
|
|
|
}
|
|
|
|
}
|
2015-10-13 22:03:47 +00:00
|
|
|
|
2016-03-11 16:25:30 +00:00
|
|
|
func Test_ShowAppHelp_HideVersion(t *testing.T) {
|
|
|
|
output := new(bytes.Buffer)
|
|
|
|
app := NewApp()
|
|
|
|
app.Writer = output
|
|
|
|
|
|
|
|
app.HideVersion = true
|
|
|
|
|
|
|
|
c := NewContext(app, nil, nil)
|
|
|
|
|
|
|
|
ShowAppHelp(c)
|
|
|
|
|
|
|
|
if bytes.Index(output.Bytes(), []byte("VERSION:")) != -1 {
|
|
|
|
t.Errorf("expected\n%snot to include %s", output.String(), "VERSION:")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-13 22:03:47 +00:00
|
|
|
func Test_Help_Custom_Flags(t *testing.T) {
|
|
|
|
oldFlag := HelpFlag
|
|
|
|
defer func() {
|
|
|
|
HelpFlag = oldFlag
|
|
|
|
}()
|
|
|
|
|
|
|
|
HelpFlag = BoolFlag{
|
|
|
|
Name: "help, x",
|
|
|
|
Usage: "show help",
|
|
|
|
}
|
|
|
|
|
|
|
|
app := App{
|
|
|
|
Flags: []Flag{
|
|
|
|
BoolFlag{Name: "foo, h"},
|
|
|
|
},
|
2016-04-27 13:12:34 +00:00
|
|
|
Action: func(ctx *Context) error {
|
2015-10-13 22:03:47 +00:00
|
|
|
if ctx.Bool("h") != true {
|
|
|
|
t.Errorf("custom help flag not set")
|
|
|
|
}
|
2016-04-27 13:12:34 +00:00
|
|
|
return nil
|
2015-10-13 22:03:47 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
output := new(bytes.Buffer)
|
|
|
|
app.Writer = output
|
|
|
|
app.Run([]string{"test", "-h"})
|
|
|
|
if output.Len() > 0 {
|
|
|
|
t.Errorf("unexpected output: %s", output.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_Version_Custom_Flags(t *testing.T) {
|
|
|
|
oldFlag := VersionFlag
|
|
|
|
defer func() {
|
|
|
|
VersionFlag = oldFlag
|
|
|
|
}()
|
|
|
|
|
|
|
|
VersionFlag = BoolFlag{
|
|
|
|
Name: "version, V",
|
|
|
|
Usage: "show version",
|
|
|
|
}
|
|
|
|
|
|
|
|
app := App{
|
|
|
|
Flags: []Flag{
|
|
|
|
BoolFlag{Name: "foo, v"},
|
|
|
|
},
|
2016-04-27 13:12:34 +00:00
|
|
|
Action: func(ctx *Context) error {
|
2015-10-13 22:03:47 +00:00
|
|
|
if ctx.Bool("v") != true {
|
|
|
|
t.Errorf("custom version flag not set")
|
|
|
|
}
|
2016-04-27 13:12:34 +00:00
|
|
|
return nil
|
2015-10-13 22:03:47 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
output := new(bytes.Buffer)
|
|
|
|
app.Writer = output
|
|
|
|
app.Run([]string{"test", "-v"})
|
|
|
|
if output.Len() > 0 {
|
|
|
|
t.Errorf("unexpected output: %s", output.String())
|
|
|
|
}
|
|
|
|
}
|