2013-09-24 17:04:00 -04:00
|
|
|
package cobra
|
2013-09-03 18:54:51 -04:00
|
|
|
|
|
|
|
import (
|
2022-05-09 18:11:52 +01:00
|
|
|
"errors"
|
2013-09-03 18:54:51 -04:00
|
|
|
"testing"
|
2015-08-31 22:36:55 -05:00
|
|
|
"text/template"
|
2013-09-03 18:54:51 -04:00
|
|
|
)
|
|
|
|
|
2021-02-08 00:08:50 +00:00
|
|
|
func assertNoErr(t *testing.T, e error) {
|
|
|
|
if e != nil {
|
|
|
|
t.Error(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-31 22:36:55 -05:00
|
|
|
func TestAddTemplateFunctions(t *testing.T) {
|
|
|
|
AddTemplateFunc("t", func() bool { return true })
|
|
|
|
AddTemplateFuncs(template.FuncMap{
|
2015-09-04 14:34:51 -06:00
|
|
|
"f": func() bool { return false },
|
|
|
|
"h": func() string { return "Hello," },
|
2015-08-31 22:36:55 -05:00
|
|
|
"w": func() string { return "world." }})
|
|
|
|
|
|
|
|
c := &Command{}
|
|
|
|
c.SetUsageTemplate(`{{if t}}{{h}}{{end}}{{if f}}{{h}}{{end}} {{w}}`)
|
2015-09-04 14:34:51 -06:00
|
|
|
|
2017-10-31 19:58:37 +01:00
|
|
|
const expected = "Hello, world."
|
|
|
|
if got := c.UsageString(); got != expected {
|
|
|
|
t.Errorf("Expected UsageString: %v\nGot: %v", expected, got)
|
2017-04-05 18:44:50 +02:00
|
|
|
}
|
|
|
|
}
|
2022-05-09 18:11:52 +01:00
|
|
|
|
|
|
|
func Test_OnInitialize(t *testing.T) {
|
|
|
|
call := false
|
|
|
|
c := &Command{Use: "c", Run: emptyRun}
|
|
|
|
OnInitialize(func() {
|
|
|
|
call = true
|
|
|
|
})
|
|
|
|
_, err := executeCommand(c)
|
2022-05-12 17:31:26 +01:00
|
|
|
initializers = nil
|
2022-05-09 18:11:52 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
if !call {
|
|
|
|
t.Error("expected OnInitialize func to be called")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_OnInitializeE(t *testing.T) {
|
|
|
|
c := &Command{Use: "c", Run: emptyRun}
|
|
|
|
e := errors.New("test error")
|
|
|
|
OnInitializeE(func() error {
|
|
|
|
return e
|
|
|
|
})
|
|
|
|
_, err := executeCommand(c)
|
2022-05-12 17:31:26 +01:00
|
|
|
initializersE = nil
|
2022-05-09 18:11:52 +01:00
|
|
|
if err != e {
|
|
|
|
t.Error("expected error: %w", e)
|
|
|
|
}
|
|
|
|
}
|