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:")
|
|
|
|
}
|
|
|
|
}
|