mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00
37 lines
855 B
Go
37 lines
855 B
Go
package commands
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
cmds "gx/ipfs/QmP9vZfc5WSjfGTXmwX2EcicMFzmZ6fXn7HTdKYat6ccmH/go-ipfs-cmds"
|
|
)
|
|
|
|
func checkHelptextRecursive(t *testing.T, name []string, c *cmds.Command) {
|
|
if c.Helptext.Tagline == "" {
|
|
t.Errorf("%s has no tagline!", strings.Join(name, " "))
|
|
}
|
|
|
|
if c.Helptext.LongDescription == "" {
|
|
t.Errorf("%s has no long description!", strings.Join(name, " "))
|
|
}
|
|
|
|
if c.Helptext.ShortDescription == "" {
|
|
t.Errorf("%s has no short description!", strings.Join(name, " "))
|
|
}
|
|
|
|
if c.Helptext.Synopsis == "" {
|
|
t.Errorf("%s has no synopsis!", strings.Join(name, " "))
|
|
}
|
|
|
|
for subname, sub := range c.Subcommands {
|
|
checkHelptextRecursive(t, append(name, subname), sub)
|
|
}
|
|
}
|
|
|
|
func TestHelptexts(t *testing.T) {
|
|
t.Skip("sill isn't 100%")
|
|
Root.ProcessHelp()
|
|
checkHelptextRecursive(t, []string{"ipfs"}, Root)
|
|
}
|