2022-09-16 11:55:56 +00:00
|
|
|
// Copyright 2013-2022 The Cobra Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-04-03 19:43:43 +00:00
|
|
|
package cobra
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2021-05-03 16:33:57 +00:00
|
|
|
"context"
|
2020-04-03 19:43:43 +00:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2020-04-06 17:28:44 +00:00
|
|
|
func validArgsFunc(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
2020-04-03 19:43:43 +00:00
|
|
|
if len(args) != 0 {
|
2020-04-06 17:28:44 +00:00
|
|
|
return nil, ShellCompDirectiveNoFileComp
|
2020-04-03 19:43:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var completions []string
|
2020-04-10 19:56:28 +00:00
|
|
|
for _, comp := range []string{"one\tThe first", "two\tThe second"} {
|
2020-04-03 19:43:43 +00:00
|
|
|
if strings.HasPrefix(comp, toComplete) {
|
|
|
|
completions = append(completions, comp)
|
|
|
|
}
|
|
|
|
}
|
2020-04-06 17:28:44 +00:00
|
|
|
return completions, ShellCompDirectiveDefault
|
2020-04-03 19:43:43 +00:00
|
|
|
}
|
|
|
|
|
2020-04-06 17:28:44 +00:00
|
|
|
func validArgsFunc2(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
2020-04-03 19:43:43 +00:00
|
|
|
if len(args) != 0 {
|
2020-04-06 17:28:44 +00:00
|
|
|
return nil, ShellCompDirectiveNoFileComp
|
2020-04-03 19:43:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var completions []string
|
2020-04-10 19:56:28 +00:00
|
|
|
for _, comp := range []string{"three\tThe third", "four\tThe fourth"} {
|
2020-04-03 19:43:43 +00:00
|
|
|
if strings.HasPrefix(comp, toComplete) {
|
|
|
|
completions = append(completions, comp)
|
|
|
|
}
|
|
|
|
}
|
2020-04-06 17:28:44 +00:00
|
|
|
return completions, ShellCompDirectiveDefault
|
2020-04-03 19:43:43 +00:00
|
|
|
}
|
|
|
|
|
2020-06-29 19:52:14 +00:00
|
|
|
func TestCmdNameCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd1 := &Command{
|
|
|
|
Use: "firstChild",
|
|
|
|
Short: "First command",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd2 := &Command{
|
|
|
|
Use: "secondChild",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
hiddenCmd := &Command{
|
|
|
|
Use: "testHidden",
|
|
|
|
Hidden: true, // Not completed
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
deprecatedCmd := &Command{
|
|
|
|
Use: "testDeprecated",
|
|
|
|
Deprecated: "deprecated", // Not completed
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
aliasedCmd := &Command{
|
|
|
|
Use: "aliased",
|
|
|
|
Short: "A command with aliases",
|
|
|
|
Aliases: []string{"testAlias", "testSynonym"}, // Not completed
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
rootCmd.AddCommand(childCmd1, childCmd2, hiddenCmd, deprecatedCmd, aliasedCmd)
|
|
|
|
|
|
|
|
// Test that sub-command names are completed
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"aliased",
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-29 19:52:14 +00:00
|
|
|
"firstChild",
|
|
|
|
"help",
|
|
|
|
"secondChild",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names are completed with prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "s")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"secondChild",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that even with no valid sub-command matches, hidden, deprecated and
|
|
|
|
// aliases are not completed
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "test")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names are completed with description
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"aliased\tA command with aliases",
|
2021-12-07 22:52:50 +00:00
|
|
|
"completion\tGenerate the autocompletion script for the specified shell",
|
2020-06-29 19:52:14 +00:00
|
|
|
"firstChild\tFirst command",
|
|
|
|
"help\tHelp about any command",
|
|
|
|
"secondChild",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNoCmdNameCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
2020-09-09 15:34:51 +00:00
|
|
|
rootCmd.Flags().String("localroot", "", "local root flag")
|
|
|
|
|
2020-06-29 19:52:14 +00:00
|
|
|
childCmd1 := &Command{
|
|
|
|
Use: "childCmd1",
|
|
|
|
Short: "First command",
|
|
|
|
Args: MinimumNArgs(0),
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd1)
|
|
|
|
childCmd1.PersistentFlags().StringP("persistent", "p", "", "persistent flag")
|
|
|
|
persistentFlag := childCmd1.PersistentFlags().Lookup("persistent")
|
|
|
|
childCmd1.Flags().StringP("nonPersistent", "n", "", "non-persistent flag")
|
|
|
|
nonPersistentFlag := childCmd1.Flags().Lookup("nonPersistent")
|
|
|
|
|
|
|
|
childCmd2 := &Command{
|
|
|
|
Use: "childCmd2",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd1.AddCommand(childCmd2)
|
|
|
|
|
|
|
|
// Test that sub-command names are not completed if there is an argument already
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd1", "arg1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names are not completed if a local non-persistent flag is present
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd1", "--nonPersistent", "value", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
nonPersistentFlag.Changed = false
|
|
|
|
|
2020-09-09 15:34:51 +00:00
|
|
|
expected = strings.Join([]string{
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names are completed if a local non-persistent flag is present and TraverseChildren is set to true
|
|
|
|
// set TraverseChildren to true on the root cmd
|
|
|
|
rootCmd.TraverseChildren = true
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--localroot", "value", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset TraverseChildren for next command
|
|
|
|
rootCmd.TraverseChildren = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"childCmd1",
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-09-09 15:34:51 +00:00
|
|
|
"help",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names from a child cmd are completed if a local non-persistent flag is present
|
|
|
|
// and TraverseChildren is set to true on the root cmd
|
|
|
|
rootCmd.TraverseChildren = true
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--localroot", "value", "childCmd1", "--nonPersistent", "value", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset TraverseChildren for next command
|
|
|
|
rootCmd.TraverseChildren = false
|
|
|
|
// Reset the flag for the next command
|
|
|
|
nonPersistentFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"childCmd2",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that we don't use Traverse when we shouldn't.
|
|
|
|
// This command should not return a completion since the command line is invalid without TraverseChildren.
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--localroot", "value", "childCmd1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
2020-06-29 19:52:14 +00:00
|
|
|
expected = strings.Join([]string{
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names are not completed if a local non-persistent short flag is present
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd1", "-n", "value", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
nonPersistentFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names are completed with a persistent flag
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd1", "--persistent", "value", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
persistentFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"childCmd2",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that sub-command names are completed with a persistent short flag
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd1", "-p", "value", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
persistentFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"childCmd2",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidArgsCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
ValidArgs: []string{"one", "two", "three"},
|
|
|
|
Args: MinimumNArgs(1),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that validArgs are completed
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
"three",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that validArgs are completed with prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "o")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"one",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that validArgs don't repeat
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "one", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidArgsAndCmdCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
ValidArgs: []string{"one", "two"},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "thechild",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
// Test that both sub-commands and validArgs are completed
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-29 19:52:14 +00:00
|
|
|
"help",
|
|
|
|
"thechild",
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that both sub-commands and validArgs are completed with prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"thechild",
|
|
|
|
"two",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidArgsFuncAndCmdCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "thechild",
|
|
|
|
Short: "The child command",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
// Test that both sub-commands and validArgsFunction are completed
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-29 19:52:14 +00:00
|
|
|
"help",
|
|
|
|
"thechild",
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that both sub-commands and validArgs are completed with prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"thechild",
|
|
|
|
"two",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that both sub-commands and validArgs are completed with description
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"thechild\tThe child command",
|
|
|
|
"two\tThe second",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFlagNameCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "childCmd",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
rootCmd.Flags().IntP("first", "f", -1, "first flag")
|
|
|
|
rootCmd.PersistentFlags().BoolP("second", "s", false, "second flag")
|
|
|
|
childCmd.Flags().String("subFlag", "", "sub flag")
|
|
|
|
|
|
|
|
// Test that flag names are not shown if the user has not given the '-' prefix
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"childCmd",
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-29 19:52:14 +00:00
|
|
|
"help",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are completed
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--first",
|
|
|
|
"-f",
|
|
|
|
"--second",
|
|
|
|
"-s",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are completed when a prefix is given
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--f")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--first",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are completed in a sub-cmd
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--second",
|
|
|
|
"-s",
|
|
|
|
"--subFlag",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFlagNameCompletionInGoWithDesc(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "childCmd",
|
|
|
|
Short: "first command",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
2020-09-09 17:27:42 +00:00
|
|
|
rootCmd.Flags().IntP("first", "f", -1, "first flag\nlonger description for flag")
|
2020-06-29 19:52:14 +00:00
|
|
|
rootCmd.PersistentFlags().BoolP("second", "s", false, "second flag")
|
|
|
|
childCmd.Flags().String("subFlag", "", "sub flag")
|
|
|
|
|
|
|
|
// Test that flag names are not shown if the user has not given the '-' prefix
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"childCmd\tfirst command",
|
2021-12-07 22:52:50 +00:00
|
|
|
"completion\tGenerate the autocompletion script for the specified shell",
|
2020-06-29 19:52:14 +00:00
|
|
|
"help\tHelp about any command",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are completed
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--first\tfirst flag",
|
|
|
|
"-f\tfirst flag",
|
|
|
|
"--second\tsecond flag",
|
|
|
|
"-s\tsecond flag",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are completed when a prefix is given
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "--f")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--first\tfirst flag",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are completed in a sub-cmd
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "childCmd", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--second\tsecond flag",
|
|
|
|
"-s\tsecond flag",
|
|
|
|
"--subFlag\tsub flag",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFlagNameCompletionRepeat(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "childCmd",
|
|
|
|
Short: "first command",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
rootCmd.Flags().IntP("first", "f", -1, "first flag")
|
|
|
|
firstFlag := rootCmd.Flags().Lookup("first")
|
|
|
|
rootCmd.Flags().BoolP("second", "s", false, "second flag")
|
|
|
|
secondFlag := rootCmd.Flags().Lookup("second")
|
|
|
|
rootCmd.Flags().StringArrayP("array", "a", nil, "array flag")
|
|
|
|
arrayFlag := rootCmd.Flags().Lookup("array")
|
|
|
|
rootCmd.Flags().IntSliceP("slice", "l", nil, "slice flag")
|
|
|
|
sliceFlag := rootCmd.Flags().Lookup("slice")
|
|
|
|
rootCmd.Flags().BoolSliceP("bslice", "b", nil, "bool slice flag")
|
|
|
|
bsliceFlag := rootCmd.Flags().Lookup("bslice")
|
|
|
|
|
|
|
|
// Test that flag names are not repeated unless they are an array or slice
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--first", "1", "--")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
firstFlag.Changed = false
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"--array",
|
|
|
|
"--bslice",
|
|
|
|
"--second",
|
|
|
|
"--slice",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are not repeated unless they are an array or slice
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--first", "1", "--second=false", "--")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
firstFlag.Changed = false
|
|
|
|
secondFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--array",
|
|
|
|
"--bslice",
|
|
|
|
"--slice",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are not repeated unless they are an array or slice
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--slice", "1", "--slice=2", "--array", "val", "--bslice", "true", "--")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
sliceFlag.Changed = false
|
|
|
|
arrayFlag.Changed = false
|
|
|
|
bsliceFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--array",
|
|
|
|
"--bslice",
|
|
|
|
"--first",
|
|
|
|
"--second",
|
|
|
|
"--slice",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are not repeated unless they are an array or slice, using shortname
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-l", "1", "-l=2", "-a", "val", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
sliceFlag.Changed = false
|
|
|
|
arrayFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--array",
|
|
|
|
"-a",
|
|
|
|
"--bslice",
|
|
|
|
"-b",
|
|
|
|
"--first",
|
|
|
|
"-f",
|
|
|
|
"--second",
|
|
|
|
"-s",
|
|
|
|
"--slice",
|
|
|
|
"-l",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that flag names are not repeated unless they are an array or slice, using shortname with prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-l", "1", "-l=2", "-a", "val", "-a")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
sliceFlag.Changed = false
|
|
|
|
arrayFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"-a",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRequiredFlagNameCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
ValidArgs: []string{"realArg"},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "childCmd",
|
|
|
|
ValidArgsFunction: func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"subArg"}, ShellCompDirectiveNoFileComp
|
|
|
|
},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
rootCmd.Flags().IntP("requiredFlag", "r", -1, "required flag")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.MarkFlagRequired("requiredFlag"))
|
2020-06-29 19:52:14 +00:00
|
|
|
requiredFlag := rootCmd.Flags().Lookup("requiredFlag")
|
|
|
|
|
|
|
|
rootCmd.PersistentFlags().IntP("requiredPersistent", "p", -1, "required persistent")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.MarkPersistentFlagRequired("requiredPersistent"))
|
2020-06-29 19:52:14 +00:00
|
|
|
requiredPersistent := rootCmd.PersistentFlags().Lookup("requiredPersistent")
|
|
|
|
|
|
|
|
rootCmd.Flags().StringP("release", "R", "", "Release name")
|
|
|
|
|
|
|
|
childCmd.Flags().BoolP("subRequired", "s", false, "sub required flag")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, childCmd.MarkFlagRequired("subRequired"))
|
2020-06-29 19:52:14 +00:00
|
|
|
childCmd.Flags().BoolP("subNotRequired", "n", false, "sub not required flag")
|
|
|
|
|
|
|
|
// Test that a required flag is suggested even without the - prefix
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"childCmd",
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-29 19:52:14 +00:00
|
|
|
"help",
|
|
|
|
"--requiredFlag",
|
|
|
|
"-r",
|
|
|
|
"--requiredPersistent",
|
|
|
|
"-p",
|
|
|
|
"realArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that a required flag is suggested without other flags when using the '-' prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--requiredFlag",
|
|
|
|
"-r",
|
|
|
|
"--requiredPersistent",
|
|
|
|
"-p",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that if no required flag matches, the normal flags are suggested
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--relea")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--release",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test required flags for sub-commands
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--requiredPersistent",
|
|
|
|
"-p",
|
|
|
|
"--subRequired",
|
|
|
|
"-s",
|
|
|
|
"subArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--requiredPersistent",
|
|
|
|
"-p",
|
|
|
|
"--subRequired",
|
|
|
|
"-s",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "childCmd", "--subNot")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--subNotRequired",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that when a required flag is present, it is not suggested anymore
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--requiredFlag", "1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
requiredFlag.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--requiredPersistent",
|
|
|
|
"-p",
|
|
|
|
"realArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that when a persistent required flag is present, it is not suggested anymore
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--requiredPersistent", "1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flag for the next command
|
|
|
|
requiredPersistent.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"childCmd",
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-29 19:52:14 +00:00
|
|
|
"help",
|
|
|
|
"--requiredFlag",
|
|
|
|
"-r",
|
|
|
|
"realArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that when all required flags are present, normal completion is done
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--requiredFlag", "1", "--requiredPersistent", "1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
// Reset the flags for the next command
|
|
|
|
requiredFlag.Changed = false
|
|
|
|
requiredPersistent.Changed = false
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"realArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFlagFileExtFilterCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
// No extensions. Should be ignored.
|
|
|
|
rootCmd.Flags().StringP("file", "f", "", "file flag")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.MarkFlagFilename("file"))
|
2020-06-29 19:52:14 +00:00
|
|
|
|
|
|
|
// Single extension
|
|
|
|
rootCmd.Flags().StringP("log", "l", "", "log flag")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.MarkFlagFilename("log", "log"))
|
2020-06-29 19:52:14 +00:00
|
|
|
|
|
|
|
// Multiple extensions
|
|
|
|
rootCmd.Flags().StringP("yaml", "y", "", "yaml flag")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.MarkFlagFilename("yaml", "yaml", "yml"))
|
2020-06-29 19:52:14 +00:00
|
|
|
|
|
|
|
// Directly using annotation
|
|
|
|
rootCmd.Flags().StringP("text", "t", "", "text flag")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.Flags().SetAnnotation("text", BashCompFilenameExt, []string{"txt"}))
|
2020-06-29 19:52:14 +00:00
|
|
|
|
|
|
|
// Test that the completion logic returns the proper info for the completion
|
|
|
|
// script to handle the file filtering
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--file", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--log", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"log",
|
|
|
|
":8",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterFileExt", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--yaml", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"yaml", "yml",
|
|
|
|
":8",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterFileExt", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--yaml=")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"yaml", "yml",
|
|
|
|
":8",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterFileExt", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-y", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"yaml", "yml",
|
|
|
|
":8",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterFileExt", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-y=")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"yaml", "yml",
|
|
|
|
":8",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterFileExt", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--text", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"txt",
|
|
|
|
":8",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterFileExt", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFlagDirFilterCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter directories
|
|
|
|
rootCmd.Flags().StringP("dir", "d", "", "dir flag")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.MarkFlagDirname("dir"))
|
2020-06-29 19:52:14 +00:00
|
|
|
|
|
|
|
// Filter directories within a directory
|
|
|
|
rootCmd.Flags().StringP("subdir", "s", "", "subdir")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.Flags().SetAnnotation("subdir", BashCompSubdirsInDir, []string{"themes"}))
|
2020-06-29 19:52:14 +00:00
|
|
|
|
|
|
|
// Multiple directory specification get ignored
|
|
|
|
rootCmd.Flags().StringP("manydir", "m", "", "manydir")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.Flags().SetAnnotation("manydir", BashCompSubdirsInDir, []string{"themes", "colors"}))
|
2020-06-29 19:52:14 +00:00
|
|
|
|
|
|
|
// Test that the completion logic returns the proper info for the completion
|
|
|
|
// script to handle the directory filtering
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--dir", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
":16",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterDirs", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-d", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":16",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterDirs", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--subdir", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"themes",
|
|
|
|
":16",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterDirs", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--subdir=")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"themes",
|
|
|
|
":16",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterDirs", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-s", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"themes",
|
|
|
|
":16",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterDirs", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-s=")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"themes",
|
|
|
|
":16",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterDirs", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--manydir", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":16",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveFilterDirs", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-03 16:33:57 +00:00
|
|
|
func TestValidArgsFuncCmdContext(t *testing.T) {
|
|
|
|
validArgsFunc := func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
ctx := cmd.Context()
|
|
|
|
|
|
|
|
if ctx == nil {
|
|
|
|
t.Error("Received nil context in completion func")
|
|
|
|
} else if ctx.Value("testKey") != "123" {
|
|
|
|
t.Error("Received invalid context")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, ShellCompDirectiveDefault
|
|
|
|
}
|
|
|
|
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "childCmd",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
//nolint:golint,staticcheck // We can safely use a basic type as key in tests.
|
|
|
|
ctx := context.WithValue(context.Background(), "testKey", "123")
|
|
|
|
|
|
|
|
// Test completing an empty string on the childCmd
|
|
|
|
_, output, err := executeCommandWithContextC(ctx, rootCmd, ShellCompNoDescRequestCmd, "childCmd", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 19:43:43 +00:00
|
|
|
func TestValidArgsFuncSingleCmd(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completing an empty string
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with a prefix
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"two",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidArgsFuncSingleCmdInvalidArg(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
// If we don't specify a value for Args, this test fails.
|
|
|
|
// This is only true for a root command without any subcommands, and is caused
|
|
|
|
// by the fact that the __complete command becomes a subcommand when there should not be one.
|
|
|
|
// The problem is in the implementation of legacyArgs().
|
|
|
|
Args: MinimumNArgs(1),
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with wrong number of args
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "unexpectedArg", "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
":4",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidArgsFuncChildCmds(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child1Cmd := &Command{
|
|
|
|
Use: "child1",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
child2Cmd := &Command{
|
|
|
|
Use: "child2",
|
|
|
|
ValidArgsFunction: validArgsFunc2,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child1Cmd, child2Cmd)
|
|
|
|
|
|
|
|
// Test completion of first sub-command with empty argument
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child1", "")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completion of first sub-command with a prefix to complete
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child1", "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"two",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with wrong number of args
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child1", "unexpectedArg", "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":4",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completion of second sub-command with empty argument
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child2", "")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"three",
|
|
|
|
"four",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child2", "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"three",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with wrong number of args
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child2", "unexpectedArg", "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":4",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestValidArgsFuncAliases(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child := &Command{
|
|
|
|
Use: "child",
|
|
|
|
Aliases: []string{"son", "daughter"},
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child)
|
|
|
|
|
|
|
|
// Test completion of first sub-command with empty argument
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "son", "")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completion of first sub-command with a prefix to complete
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "daughter", "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"two",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with wrong number of args
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "son", "unexpectedArg", "t")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":4",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 19:56:28 +00:00
|
|
|
func TestValidArgsFuncInBashScript(t *testing.T) {
|
2020-04-03 19:43:43 +00:00
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child := &Command{
|
|
|
|
Use: "child",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child)
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.GenBashCompletion(buf))
|
2020-04-03 19:43:43 +00:00
|
|
|
output := buf.String()
|
|
|
|
|
|
|
|
check(t, output, "has_completion_function=1")
|
|
|
|
}
|
|
|
|
|
2020-04-10 19:56:28 +00:00
|
|
|
func TestNoValidArgsFuncInBashScript(t *testing.T) {
|
2020-04-03 19:43:43 +00:00
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child := &Command{
|
|
|
|
Use: "child",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child)
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.GenBashCompletion(buf))
|
2020-04-03 19:43:43 +00:00
|
|
|
output := buf.String()
|
|
|
|
|
|
|
|
checkOmit(t, output, "has_completion_function=1")
|
|
|
|
}
|
|
|
|
|
2020-04-10 19:56:28 +00:00
|
|
|
func TestCompleteCmdInBashScript(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child := &Command{
|
|
|
|
Use: "child",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child)
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.GenBashCompletion(buf))
|
2020-04-10 19:56:28 +00:00
|
|
|
output := buf.String()
|
|
|
|
|
|
|
|
check(t, output, ShellCompNoDescRequestCmd)
|
|
|
|
}
|
|
|
|
|
2020-06-29 19:52:14 +00:00
|
|
|
func TestCompleteNoDesCmdInZshScript(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child := &Command{
|
|
|
|
Use: "child",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child)
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.GenZshCompletionNoDesc(buf))
|
2020-06-29 19:52:14 +00:00
|
|
|
output := buf.String()
|
|
|
|
|
|
|
|
check(t, output, ShellCompNoDescRequestCmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCompleteCmdInZshScript(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child := &Command{
|
|
|
|
Use: "child",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child)
|
|
|
|
|
|
|
|
buf := new(bytes.Buffer)
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.GenZshCompletion(buf))
|
2020-06-29 19:52:14 +00:00
|
|
|
output := buf.String()
|
|
|
|
|
|
|
|
check(t, output, ShellCompRequestCmd)
|
|
|
|
checkOmit(t, output, ShellCompNoDescRequestCmd)
|
|
|
|
}
|
|
|
|
|
2020-04-03 19:43:43 +00:00
|
|
|
func TestFlagCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.Flags().IntP("introot", "i", -1, "help message for flag introot")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.RegisterFlagCompletionFunc("introot", func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
2020-04-03 19:43:43 +00:00
|
|
|
completions := []string{}
|
2020-04-10 19:56:28 +00:00
|
|
|
for _, comp := range []string{"1\tThe first", "2\tThe second", "10\tThe tenth"} {
|
2020-04-03 19:43:43 +00:00
|
|
|
if strings.HasPrefix(comp, toComplete) {
|
|
|
|
completions = append(completions, comp)
|
|
|
|
}
|
|
|
|
}
|
2020-04-06 17:28:44 +00:00
|
|
|
return completions, ShellCompDirectiveDefault
|
2021-02-08 00:08:50 +00:00
|
|
|
}))
|
2020-04-03 19:43:43 +00:00
|
|
|
rootCmd.Flags().String("filename", "", "Enter a filename")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.RegisterFlagCompletionFunc("filename", func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
2020-04-03 19:43:43 +00:00
|
|
|
completions := []string{}
|
2020-04-10 19:56:28 +00:00
|
|
|
for _, comp := range []string{"file.yaml\tYAML format", "myfile.json\tJSON format", "file.xml\tXML format"} {
|
2020-04-03 19:43:43 +00:00
|
|
|
if strings.HasPrefix(comp, toComplete) {
|
|
|
|
completions = append(completions, comp)
|
|
|
|
}
|
|
|
|
}
|
2020-04-06 17:28:44 +00:00
|
|
|
return completions, ShellCompDirectiveNoSpace | ShellCompDirectiveNoFileComp
|
2021-02-08 00:08:50 +00:00
|
|
|
}))
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
// Test completing an empty string
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--introot", "")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"1",
|
|
|
|
"2",
|
|
|
|
"10",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with a prefix
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--introot", "1")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"1",
|
|
|
|
"10",
|
|
|
|
":0",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completing an empty string
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--filename", "")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"file.yaml",
|
|
|
|
"myfile.json",
|
|
|
|
"file.xml",
|
|
|
|
":6",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with a prefix
|
2020-04-10 19:56:28 +00:00
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "--filename", "f")
|
2020-04-03 19:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"file.yaml",
|
|
|
|
"file.xml",
|
|
|
|
":6",
|
2020-04-06 17:28:44 +00:00
|
|
|
"Completion ended with directive: ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp", ""}, "\n")
|
2020-04-03 19:43:43 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
2020-04-10 19:56:28 +00:00
|
|
|
|
|
|
|
func TestValidArgsFuncChildCmdsWithDesc(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child1Cmd := &Command{
|
|
|
|
Use: "child1",
|
|
|
|
ValidArgsFunction: validArgsFunc,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
child2Cmd := &Command{
|
|
|
|
Use: "child2",
|
|
|
|
ValidArgsFunction: validArgsFunc2,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child1Cmd, child2Cmd)
|
|
|
|
|
|
|
|
// Test completion of first sub-command with empty argument
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompRequestCmd, "child1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"one\tThe first",
|
|
|
|
"two\tThe second",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completion of first sub-command with a prefix to complete
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child1", "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"two\tThe second",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with wrong number of args
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child1", "unexpectedArg", "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completion of second sub-command with empty argument
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child2", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"three\tThe third",
|
|
|
|
"four\tThe fourth",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child2", "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"three\tThe third",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with wrong number of args
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child2", "unexpectedArg", "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-01 15:47:10 +00:00
|
|
|
func TestFlagCompletionWithNotInterspersedArgs(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Run: emptyRun}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "child",
|
|
|
|
Run: emptyRun,
|
|
|
|
ValidArgsFunction: func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"--validarg", "test"}, ShellCompDirectiveDefault
|
|
|
|
},
|
|
|
|
}
|
|
|
|
childCmd2 := &Command{
|
|
|
|
Use: "child2",
|
|
|
|
Run: emptyRun,
|
|
|
|
ValidArgs: []string{"arg1", "arg2"},
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd, childCmd2)
|
|
|
|
childCmd.Flags().Bool("bool", false, "test bool flag")
|
|
|
|
childCmd.Flags().String("string", "", "test string flag")
|
|
|
|
_ = childCmd.RegisterFlagCompletionFunc("string", func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"myval"}, ShellCompDirectiveDefault
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test flag completion with no argument
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompRequestCmd, "child", "--")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"--bool\ttest bool flag",
|
|
|
|
"--string\ttest string flag",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that no flags are completed after the -- arg
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that no flags are completed after the -- arg with a flag set
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--bool", "--", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// set Interspersed to false which means that no flags should be completed after the first arg
|
|
|
|
childCmd.Flags().SetInterspersed(false)
|
|
|
|
|
|
|
|
// Test that no flags are completed after the first arg
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "arg", "--")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that no flags are completed after the fist arg with a flag set
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--string", "t", "arg", "--")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that args are still completed after --
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that args are still completed even if flagname with ValidArgsFunction exists
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--", "--string", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that args are still completed even if flagname with ValidArgsFunction exists
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child2", "--", "a")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"arg1",
|
|
|
|
"arg2",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that --validarg is not parsed as flag after --
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--", "--validarg", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that --validarg is not parsed as flag after an arg
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "arg", "--validarg", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"test",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that --validarg is added to args for the ValidArgsFunction
|
|
|
|
childCmd.ValidArgsFunction = func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return args, ShellCompDirectiveDefault
|
|
|
|
}
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--", "--validarg", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that --validarg is added to args for the ValidArgsFunction and toComplete is also set correctly
|
|
|
|
childCmd.ValidArgsFunction = func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return append(args, toComplete), ShellCompDirectiveDefault
|
|
|
|
}
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "child", "--", "--validarg", "--toComp=ab")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--validarg",
|
|
|
|
"--toComp=ab",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-02 15:25:47 +00:00
|
|
|
func TestFlagCompletionWorksRootCommandAddedAfterFlags(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Run: emptyRun}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "child",
|
|
|
|
Run: emptyRun,
|
|
|
|
ValidArgsFunction: func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"--validarg", "test"}, ShellCompDirectiveDefault
|
|
|
|
},
|
|
|
|
}
|
|
|
|
childCmd.Flags().Bool("bool", false, "test bool flag")
|
|
|
|
childCmd.Flags().String("string", "", "test string flag")
|
|
|
|
_ = childCmd.RegisterFlagCompletionFunc("string", func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"myval"}, ShellCompDirectiveDefault
|
|
|
|
})
|
|
|
|
|
|
|
|
// Important: This is a test for https://github.com/spf13/cobra/issues/1437
|
|
|
|
// Only add the subcommand after RegisterFlagCompletionFunc was called, do not change this order!
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
// Test that flag completion works for the subcmd
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompRequestCmd, "child", "--string", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"myval",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 19:56:28 +00:00
|
|
|
func TestFlagCompletionInGoWithDesc(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.Flags().IntP("introot", "i", -1, "help message for flag introot")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.RegisterFlagCompletionFunc("introot", func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
2020-04-10 19:56:28 +00:00
|
|
|
completions := []string{}
|
|
|
|
for _, comp := range []string{"1\tThe first", "2\tThe second", "10\tThe tenth"} {
|
|
|
|
if strings.HasPrefix(comp, toComplete) {
|
|
|
|
completions = append(completions, comp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return completions, ShellCompDirectiveDefault
|
2021-02-08 00:08:50 +00:00
|
|
|
}))
|
2020-04-10 19:56:28 +00:00
|
|
|
rootCmd.Flags().String("filename", "", "Enter a filename")
|
2021-02-08 00:08:50 +00:00
|
|
|
assertNoErr(t, rootCmd.RegisterFlagCompletionFunc("filename", func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
2020-04-10 19:56:28 +00:00
|
|
|
completions := []string{}
|
|
|
|
for _, comp := range []string{"file.yaml\tYAML format", "myfile.json\tJSON format", "file.xml\tXML format"} {
|
|
|
|
if strings.HasPrefix(comp, toComplete) {
|
|
|
|
completions = append(completions, comp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return completions, ShellCompDirectiveNoSpace | ShellCompDirectiveNoFileComp
|
2021-02-08 00:08:50 +00:00
|
|
|
}))
|
2020-04-10 19:56:28 +00:00
|
|
|
|
|
|
|
// Test completing an empty string
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompRequestCmd, "--introot", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"1\tThe first",
|
|
|
|
"2\tThe second",
|
|
|
|
"10\tThe tenth",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with a prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "--introot", "1")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"1\tThe first",
|
|
|
|
"10\tThe tenth",
|
|
|
|
":0",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveDefault", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test completing an empty string
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "--filename", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"file.yaml\tYAML format",
|
|
|
|
"myfile.json\tJSON format",
|
|
|
|
"file.xml\tXML format",
|
|
|
|
":6",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with a prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompRequestCmd, "--filename", "f")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"file.yaml\tYAML format",
|
|
|
|
"file.xml\tXML format",
|
|
|
|
":6",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
2020-06-16 20:49:26 +00:00
|
|
|
|
2020-06-29 19:52:14 +00:00
|
|
|
func TestValidArgsNotValidArgsFunc(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
ValidArgs: []string{"one", "two"},
|
|
|
|
ValidArgsFunction: func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"three", "four"}, ShellCompDirectiveNoFileComp
|
|
|
|
},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that if both ValidArgs and ValidArgsFunction are present
|
|
|
|
// only ValidArgs is considered
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check completing with a prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"two",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestArgAliasesCompletionInGo(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Args: OnlyValidArgs,
|
|
|
|
ValidArgs: []string{"one", "two", "three"},
|
|
|
|
ArgAliases: []string{"un", "deux", "trois"},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that argaliases are not completed when there are validargs that match
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"one",
|
|
|
|
"two",
|
|
|
|
"three",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that argaliases are not completed when there are validargs that match using a prefix
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "t")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"two",
|
|
|
|
"three",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that argaliases are completed when there are no validargs that match
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "tr")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"trois",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-16 20:49:26 +00:00
|
|
|
func TestCompleteHelp(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
child1Cmd := &Command{
|
|
|
|
Use: "child1",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
child2Cmd := &Command{
|
|
|
|
Use: "child2",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(child1Cmd, child2Cmd)
|
|
|
|
|
|
|
|
child3Cmd := &Command{
|
|
|
|
Use: "child3",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
child1Cmd.AddCommand(child3Cmd)
|
|
|
|
|
|
|
|
// Test that completion includes the help command
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"child1",
|
|
|
|
"child2",
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-16 20:49:26 +00:00
|
|
|
"help",
|
2020-06-29 19:52:14 +00:00
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
2020-06-16 20:49:26 +00:00
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test sub-commands are completed on first level of help command
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "help", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"child1",
|
|
|
|
"child2",
|
2021-02-15 17:47:01 +00:00
|
|
|
"completion",
|
2020-06-16 20:49:26 +00:00
|
|
|
"help", // "<program> help help" is a valid command, so should be completed
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test sub-commands are completed on first level of help command
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "help", "child1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"child3",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
2021-02-15 17:47:01 +00:00
|
|
|
|
|
|
|
func removeCompCmd(rootCmd *Command) {
|
|
|
|
// Remove completion command for the next test
|
|
|
|
for _, cmd := range rootCmd.commands {
|
|
|
|
if cmd.Name() == compCmdName {
|
|
|
|
rootCmd.RemoveCommand(cmd)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDefaultCompletionCmd(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Args: NoArgs,
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that no completion command is created if there are not other sub-commands
|
|
|
|
assertNoErr(t, rootCmd.Execute())
|
|
|
|
for _, cmd := range rootCmd.commands {
|
|
|
|
if cmd.Name() == compCmdName {
|
|
|
|
t.Errorf("Should not have a 'completion' command when there are no other sub-commands of root")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subCmd := &Command{
|
|
|
|
Use: "sub",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(subCmd)
|
|
|
|
|
|
|
|
// Test that a completion command is created if there are other sub-commands
|
|
|
|
found := false
|
|
|
|
assertNoErr(t, rootCmd.Execute())
|
|
|
|
for _, cmd := range rootCmd.commands {
|
|
|
|
if cmd.Name() == compCmdName {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Errorf("Should have a 'completion' command when there are other sub-commands of root")
|
|
|
|
}
|
|
|
|
// Remove completion command for the next test
|
|
|
|
removeCompCmd(rootCmd)
|
|
|
|
|
|
|
|
// Test that the default completion command can be disabled
|
|
|
|
rootCmd.CompletionOptions.DisableDefaultCmd = true
|
|
|
|
assertNoErr(t, rootCmd.Execute())
|
|
|
|
for _, cmd := range rootCmd.commands {
|
|
|
|
if cmd.Name() == compCmdName {
|
|
|
|
t.Errorf("Should not have a 'completion' command when the feature is disabled")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Re-enable for next test
|
|
|
|
rootCmd.CompletionOptions.DisableDefaultCmd = false
|
|
|
|
|
|
|
|
// Test that completion descriptions are enabled by default
|
|
|
|
output, err := executeCommand(rootCmd, compCmdName, "zsh")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
check(t, output, ShellCompRequestCmd)
|
|
|
|
checkOmit(t, output, ShellCompNoDescRequestCmd)
|
|
|
|
// Remove completion command for the next test
|
|
|
|
removeCompCmd(rootCmd)
|
|
|
|
|
|
|
|
// Test that completion descriptions can be disabled completely
|
|
|
|
rootCmd.CompletionOptions.DisableDescriptions = true
|
|
|
|
output, err = executeCommand(rootCmd, compCmdName, "zsh")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
check(t, output, ShellCompNoDescRequestCmd)
|
|
|
|
// Re-enable for next test
|
|
|
|
rootCmd.CompletionOptions.DisableDescriptions = false
|
|
|
|
// Remove completion command for the next test
|
|
|
|
removeCompCmd(rootCmd)
|
|
|
|
|
|
|
|
var compCmd *Command
|
2021-06-30 21:24:58 +00:00
|
|
|
// Test that the --no-descriptions flag is present on all shells
|
2021-02-15 17:47:01 +00:00
|
|
|
assertNoErr(t, rootCmd.Execute())
|
2021-06-30 21:24:58 +00:00
|
|
|
for _, shell := range []string{"bash", "fish", "powershell", "zsh"} {
|
2021-02-15 17:47:01 +00:00
|
|
|
if compCmd, _, err = rootCmd.Find([]string{compCmdName, shell}); err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
if flag := compCmd.Flags().Lookup(compCmdNoDescFlagName); flag == nil {
|
|
|
|
t.Errorf("Missing --%s flag for %s shell", compCmdNoDescFlagName, shell)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Remove completion command for the next test
|
|
|
|
removeCompCmd(rootCmd)
|
|
|
|
|
|
|
|
// Test that the '--no-descriptions' flag can be disabled
|
|
|
|
rootCmd.CompletionOptions.DisableNoDescFlag = true
|
|
|
|
assertNoErr(t, rootCmd.Execute())
|
|
|
|
for _, shell := range []string{"fish", "zsh", "bash", "powershell"} {
|
|
|
|
if compCmd, _, err = rootCmd.Find([]string{compCmdName, shell}); err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
if flag := compCmd.Flags().Lookup(compCmdNoDescFlagName); flag != nil {
|
|
|
|
t.Errorf("Unexpected --%s flag for %s shell", compCmdNoDescFlagName, shell)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Re-enable for next test
|
|
|
|
rootCmd.CompletionOptions.DisableNoDescFlag = false
|
|
|
|
// Remove completion command for the next test
|
|
|
|
removeCompCmd(rootCmd)
|
|
|
|
|
|
|
|
// Test that the '--no-descriptions' flag is disabled when descriptions are disabled
|
|
|
|
rootCmd.CompletionOptions.DisableDescriptions = true
|
|
|
|
assertNoErr(t, rootCmd.Execute())
|
|
|
|
for _, shell := range []string{"fish", "zsh", "bash", "powershell"} {
|
|
|
|
if compCmd, _, err = rootCmd.Find([]string{compCmdName, shell}); err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
if flag := compCmd.Flags().Lookup(compCmdNoDescFlagName); flag != nil {
|
|
|
|
t.Errorf("Unexpected --%s flag for %s shell", compCmdNoDescFlagName, shell)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Re-enable for next test
|
|
|
|
rootCmd.CompletionOptions.DisableDescriptions = false
|
|
|
|
// Remove completion command for the next test
|
|
|
|
removeCompCmd(rootCmd)
|
2021-12-07 23:02:02 +00:00
|
|
|
|
|
|
|
// Test that the 'completion' command can be hidden
|
|
|
|
rootCmd.CompletionOptions.HiddenDefaultCmd = true
|
|
|
|
assertNoErr(t, rootCmd.Execute())
|
|
|
|
compCmd, _, err = rootCmd.Find([]string{compCmdName})
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
if compCmd.Hidden == false {
|
|
|
|
t.Error("Default 'completion' command should be hidden but it is not")
|
|
|
|
}
|
|
|
|
// Re-enable for next test
|
|
|
|
rootCmd.CompletionOptions.HiddenDefaultCmd = false
|
|
|
|
// Remove completion command for the next test
|
|
|
|
removeCompCmd(rootCmd)
|
2021-02-15 17:47:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCompleteCompletion(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
subCmd := &Command{
|
|
|
|
Use: "sub",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(subCmd)
|
|
|
|
|
|
|
|
// Test sub-commands of the completion command
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "completion", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"bash",
|
|
|
|
"fish",
|
|
|
|
"powershell",
|
|
|
|
"zsh",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test there are no completions for the sub-commands of the completion command
|
|
|
|
var compCmd *Command
|
|
|
|
for _, cmd := range rootCmd.Commands() {
|
|
|
|
if cmd.Name() == compCmdName {
|
|
|
|
compCmd = cmd
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, shell := range compCmd.Commands() {
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, compCmdName, shell.Name(), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-03 16:42:00 +00:00
|
|
|
|
|
|
|
func TestMultipleShorthandFlagCompletion(t *testing.T) {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
ValidArgs: []string{"foo", "bar"},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
f := rootCmd.Flags()
|
|
|
|
f.BoolP("short", "s", false, "short flag 1")
|
|
|
|
f.BoolP("short2", "d", false, "short flag 2")
|
|
|
|
f.StringP("short3", "f", "", "short flag 3")
|
|
|
|
_ = rootCmd.RegisterFlagCompletionFunc("short3", func(*Command, []string, string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"works"}, ShellCompDirectiveNoFileComp
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test that a single shorthand flag works
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-s", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"foo",
|
|
|
|
"bar",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that multiple boolean shorthand flags work
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-sd", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"foo",
|
|
|
|
"bar",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that multiple boolean + string shorthand flags work
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-sdf", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"works",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that multiple boolean + string with equal sign shorthand flags work
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-sdf=")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"works",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that multiple boolean + string with equal sign with value shorthand flags work
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "-sdf=abc", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"foo",
|
|
|
|
"bar",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
2021-11-01 19:01:33 +00:00
|
|
|
|
|
|
|
func TestCompleteWithDisableFlagParsing(t *testing.T) {
|
|
|
|
|
|
|
|
flagValidArgs := func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"--flag", "-f"}, ShellCompDirectiveNoFileComp
|
|
|
|
}
|
|
|
|
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "child",
|
|
|
|
Run: emptyRun,
|
|
|
|
DisableFlagParsing: true,
|
|
|
|
ValidArgsFunction: flagValidArgs,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
rootCmd.PersistentFlags().StringP("persistent", "p", "", "persistent flag")
|
|
|
|
childCmd.Flags().StringP("nonPersistent", "n", "", "non-persistent flag")
|
|
|
|
|
|
|
|
// Test that when DisableFlagParsing==true, ValidArgsFunction is called to complete flag names,
|
|
|
|
// after Cobra tried to complete the flags it knows about.
|
|
|
|
childCmd.DisableFlagParsing = true
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"--persistent",
|
|
|
|
"-p",
|
|
|
|
"--nonPersistent",
|
|
|
|
"-n",
|
|
|
|
"--flag",
|
|
|
|
"-f",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that when DisableFlagParsing==false, Cobra completes the flags itself and ValidArgsFunction is not called
|
|
|
|
childCmd.DisableFlagParsing = false
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child", "-")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cobra was not told of any flags, so it returns nothing
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"--persistent",
|
|
|
|
"-p",
|
|
|
|
"--nonPersistent",
|
|
|
|
"-n",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
2021-12-14 18:22:22 +00:00
|
|
|
|
|
|
|
func TestCompleteWithRootAndLegacyArgs(t *testing.T) {
|
|
|
|
// Test a lonely root command which uses legacyArgs(). In such a case, the root
|
|
|
|
// command should accept any number of arguments and completion should behave accordingly.
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Args: nil, // Args must be nil to trigger the legacyArgs() function
|
|
|
|
Run: emptyRun,
|
|
|
|
ValidArgsFunction: func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"arg1", "arg2"}, ShellCompDirectiveNoFileComp
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the first arg is completed
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"arg1",
|
|
|
|
"arg2",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the completion of arguments continues
|
|
|
|
output, err = executeCommand(rootCmd, ShellCompNoDescRequestCmd, "arg1", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = strings.Join([]string{
|
|
|
|
"arg1",
|
|
|
|
"arg2",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 01:37:54 +00:00
|
|
|
|
|
|
|
func TestFixedCompletions(t *testing.T) {
|
|
|
|
rootCmd := &Command{Use: "root", Args: NoArgs, Run: emptyRun}
|
|
|
|
choices := []string{"apple", "banana", "orange"}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "child",
|
|
|
|
ValidArgsFunction: FixedCompletions(choices, ShellCompDirectiveNoFileComp),
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
output, err := executeCommand(rootCmd, ShellCompNoDescRequestCmd, "child", "a")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unexpected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := strings.Join([]string{
|
|
|
|
"apple",
|
|
|
|
"banana",
|
|
|
|
"orange",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n")
|
|
|
|
|
|
|
|
if output != expected {
|
|
|
|
t.Errorf("expected: %q, got: %q", expected, output)
|
|
|
|
}
|
|
|
|
}
|
2022-06-21 02:04:28 +00:00
|
|
|
|
|
|
|
func TestCompletionForGroupedFlags(t *testing.T) {
|
|
|
|
getCmd := func() *Command {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "child",
|
|
|
|
ValidArgsFunction: func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"subArg"}, ShellCompDirectiveNoFileComp
|
|
|
|
},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
rootCmd.PersistentFlags().Int("ingroup1", -1, "ingroup1")
|
|
|
|
rootCmd.PersistentFlags().String("ingroup2", "", "ingroup2")
|
|
|
|
|
|
|
|
childCmd.Flags().Bool("ingroup3", false, "ingroup3")
|
|
|
|
childCmd.Flags().Bool("nogroup", false, "nogroup")
|
|
|
|
|
|
|
|
// Add flags to a group
|
|
|
|
childCmd.MarkFlagsRequiredTogether("ingroup1", "ingroup2", "ingroup3")
|
|
|
|
|
|
|
|
return rootCmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// Each test case uses a unique command from the function above.
|
|
|
|
testcases := []struct {
|
|
|
|
desc string
|
|
|
|
args []string
|
|
|
|
expectedOutput string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "flags in group not suggested without - prefix",
|
|
|
|
args: []string{"child", ""},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"subArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "flags in group suggested with - prefix",
|
|
|
|
args: []string{"child", "-"},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"--ingroup1",
|
|
|
|
"--ingroup2",
|
|
|
|
"--ingroup3",
|
|
|
|
"--nogroup",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "when flag in group present, other flags in group suggested even without - prefix",
|
|
|
|
args: []string{"child", "--ingroup2", "value", ""},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"--ingroup1",
|
|
|
|
"--ingroup3",
|
|
|
|
"subArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "when all flags in group present, flags not suggested without - prefix",
|
|
|
|
args: []string{"child", "--ingroup1", "8", "--ingroup2", "value2", "--ingroup3", ""},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"subArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "group ignored if some flags not applicable",
|
|
|
|
args: []string{"--ingroup2", "value", ""},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"child",
|
|
|
|
"completion",
|
|
|
|
"help",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
|
|
c := getCmd()
|
|
|
|
args := []string{ShellCompNoDescRequestCmd}
|
|
|
|
args = append(args, tc.args...)
|
|
|
|
output, err := executeCommand(c, args...)
|
|
|
|
switch {
|
|
|
|
case err == nil && output != tc.expectedOutput:
|
|
|
|
t.Errorf("expected: %q, got: %q", tc.expectedOutput, output)
|
|
|
|
case err != nil:
|
|
|
|
t.Errorf("Unexpected error %q", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCompletionForMutuallyExclusiveFlags(t *testing.T) {
|
|
|
|
getCmd := func() *Command {
|
|
|
|
rootCmd := &Command{
|
|
|
|
Use: "root",
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
childCmd := &Command{
|
|
|
|
Use: "child",
|
|
|
|
ValidArgsFunction: func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) {
|
|
|
|
return []string{"subArg"}, ShellCompDirectiveNoFileComp
|
|
|
|
},
|
|
|
|
Run: emptyRun,
|
|
|
|
}
|
|
|
|
rootCmd.AddCommand(childCmd)
|
|
|
|
|
|
|
|
rootCmd.PersistentFlags().IntSlice("ingroup1", []int{1}, "ingroup1")
|
|
|
|
rootCmd.PersistentFlags().String("ingroup2", "", "ingroup2")
|
|
|
|
|
|
|
|
childCmd.Flags().Bool("ingroup3", false, "ingroup3")
|
|
|
|
childCmd.Flags().Bool("nogroup", false, "nogroup")
|
|
|
|
|
|
|
|
// Add flags to a group
|
|
|
|
childCmd.MarkFlagsMutuallyExclusive("ingroup1", "ingroup2", "ingroup3")
|
|
|
|
|
|
|
|
return rootCmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// Each test case uses a unique command from the function above.
|
|
|
|
testcases := []struct {
|
|
|
|
desc string
|
|
|
|
args []string
|
|
|
|
expectedOutput string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "flags in mutually exclusive group not suggested without the - prefix",
|
|
|
|
args: []string{"child", ""},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"subArg",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "flags in mutually exclusive group suggested with the - prefix",
|
|
|
|
args: []string{"child", "-"},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"--ingroup1",
|
|
|
|
"--ingroup2",
|
|
|
|
"--ingroup3",
|
|
|
|
"--nogroup",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "when flag in mutually exclusive group present, other flags in group not suggested even with the - prefix",
|
|
|
|
args: []string{"child", "--ingroup1", "8", "-"},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"--ingroup1", // Should be suggested again since it is a slice
|
|
|
|
"--nogroup",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "group ignored if some flags not applicable",
|
|
|
|
args: []string{"--ingroup1", "8", "-"},
|
|
|
|
expectedOutput: strings.Join([]string{
|
|
|
|
"--ingroup1",
|
|
|
|
"--ingroup2",
|
|
|
|
":4",
|
|
|
|
"Completion ended with directive: ShellCompDirectiveNoFileComp", ""}, "\n"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
|
|
c := getCmd()
|
|
|
|
args := []string{ShellCompNoDescRequestCmd}
|
|
|
|
args = append(args, tc.args...)
|
|
|
|
output, err := executeCommand(c, args...)
|
|
|
|
switch {
|
|
|
|
case err == nil && output != tc.expectedOutput:
|
|
|
|
t.Errorf("expected: %q, got: %q", tc.expectedOutput, output)
|
|
|
|
case err != nil:
|
|
|
|
t.Errorf("Unexpected error %q", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|