mirror of
https://github.com/spf13/cobra
synced 2024-11-24 06:37:06 +00:00
Fix help text for runnable plugin command
When creating a plugin without sub commands, the help text included the command name (kubectl-plugin) instead of the display name (kubectl plugin): Usage: kubectl-plugin [flags] The issue is that the usage line for this case does not use the command path but the raw `Use` string, and this case was not tested. Add a test for this case and fix UsageLine() to replace the command name with the display name. Tested using https://github.com/nirs/kubernetes/tree/sample-cli-plugin-help
This commit is contained in:
parent
df547f5fc6
commit
a73b9c391a
2 changed files with 23 additions and 2 deletions
|
@ -1441,10 +1441,11 @@ func (c *Command) displayName() string {
|
||||||
// UseLine puts out the full usage for a given command (including parents).
|
// UseLine puts out the full usage for a given command (including parents).
|
||||||
func (c *Command) UseLine() string {
|
func (c *Command) UseLine() string {
|
||||||
var useline string
|
var useline string
|
||||||
|
use := strings.Replace(c.Use, c.Name(), c.displayName(), 1)
|
||||||
if c.HasParent() {
|
if c.HasParent() {
|
||||||
useline = c.parent.CommandPath() + " " + c.Use
|
useline = c.parent.CommandPath() + " " + use
|
||||||
} else {
|
} else {
|
||||||
useline = c.Use
|
useline = use
|
||||||
}
|
}
|
||||||
if c.DisableFlagsInUseLine {
|
if c.DisableFlagsInUseLine {
|
||||||
return useline
|
return useline
|
||||||
|
|
|
@ -370,6 +370,26 @@ func TestAliasPrefixMatching(t *testing.T) {
|
||||||
// executable is `kubectl-plugin`, but we run it as `kubectl plugin`. The help
|
// executable is `kubectl-plugin`, but we run it as `kubectl plugin`. The help
|
||||||
// text should reflect the way we run the command.
|
// text should reflect the way we run the command.
|
||||||
func TestPlugin(t *testing.T) {
|
func TestPlugin(t *testing.T) {
|
||||||
|
cmd := &Command{
|
||||||
|
Use: "kubectl-plugin",
|
||||||
|
Args: NoArgs,
|
||||||
|
Annotations: map[string]string{
|
||||||
|
CommandDisplayNameAnnotation: "kubectl plugin",
|
||||||
|
},
|
||||||
|
Run: emptyRun,
|
||||||
|
}
|
||||||
|
|
||||||
|
cmdHelp, err := executeCommand(cmd, "-h")
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
checkStringContains(t, cmdHelp, "kubectl plugin [flags]")
|
||||||
|
checkStringContains(t, cmdHelp, "help for kubectl plugin")
|
||||||
|
}
|
||||||
|
|
||||||
|
// TestPlugin checks usage as plugin with sub commands.
|
||||||
|
func TestPluginWithSubCommands(t *testing.T) {
|
||||||
rootCmd := &Command{
|
rootCmd := &Command{
|
||||||
Use: "kubectl-plugin",
|
Use: "kubectl-plugin",
|
||||||
Args: NoArgs,
|
Args: NoArgs,
|
||||||
|
|
Loading…
Reference in a new issue