-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: E2E tests for dynamic completions
- Loading branch information
Showing
13 changed files
with
371 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
use clap::{FromArgMatches, Subcommand}; | ||
|
||
fn main() { | ||
let matches = cli().get_matches(); | ||
if let Ok(completions) = | ||
clap_complete::dynamic::shells::CompleteCommand::from_arg_matches(&matches) | ||
{ | ||
completions.complete(&mut cli()); | ||
} else { | ||
println!("{matches:#?}"); | ||
} | ||
} | ||
|
||
fn cli() -> clap::Command { | ||
let cmd = clap::Command::new("test-dynamic") | ||
.version("3.0") | ||
.propagate_version(true) | ||
.args([clap::Arg::new("global") | ||
.long("global") | ||
.global(true) | ||
.action(clap::ArgAction::SetTrue) | ||
.help("everywhere")]) | ||
.subcommands([ | ||
clap::Command::new("action").args([ | ||
clap::Arg::new("set-true") | ||
.long("set-true") | ||
.action(clap::ArgAction::SetTrue) | ||
.help("bool"), | ||
clap::Arg::new("set") | ||
.long("set") | ||
.action(clap::ArgAction::Set) | ||
.help("value"), | ||
clap::Arg::new("count") | ||
.long("count") | ||
.action(clap::ArgAction::Count) | ||
.help("number"), | ||
clap::Arg::new("choice") | ||
.long("choice") | ||
.value_parser(["first", "second"]) | ||
.help("enum"), | ||
]), | ||
clap::Command::new("quote") | ||
.args([ | ||
clap::Arg::new("single-quotes") | ||
.long("single-quotes") | ||
.action(clap::ArgAction::SetTrue) | ||
.help("Can be 'always', 'auto', or 'never'"), | ||
clap::Arg::new("double-quotes") | ||
.long("double-quotes") | ||
.action(clap::ArgAction::SetTrue) | ||
.help("Can be \"always\", \"auto\", or \"never\""), | ||
clap::Arg::new("backticks") | ||
.long("backticks") | ||
.action(clap::ArgAction::SetTrue) | ||
.help("For more information see `echo test`"), | ||
clap::Arg::new("backslash") | ||
.long("backslash") | ||
.action(clap::ArgAction::SetTrue) | ||
.help("Avoid '\\n'"), | ||
clap::Arg::new("brackets") | ||
.long("brackets") | ||
.action(clap::ArgAction::SetTrue) | ||
.help("List packages [filter]"), | ||
clap::Arg::new("expansions") | ||
.long("expansions") | ||
.action(clap::ArgAction::SetTrue) | ||
.help("Execute the shell command with $SHELL"), | ||
]) | ||
.subcommands([ | ||
clap::Command::new("cmd-single-quotes") | ||
.about("Can be 'always', 'auto', or 'never'"), | ||
clap::Command::new("cmd-double-quotes") | ||
.about("Can be \"always\", \"auto\", or \"never\""), | ||
clap::Command::new("cmd-backticks") | ||
.about("For more information see `echo test`"), | ||
clap::Command::new("cmd-backslash").about("Avoid '\\n'"), | ||
clap::Command::new("cmd-brackets").about("List packages [filter]"), | ||
clap::Command::new("cmd-expansions") | ||
.about("Execute the shell command with $SHELL"), | ||
]), | ||
clap::Command::new("value").args([ | ||
clap::Arg::new("delim").long("delim").value_delimiter(','), | ||
clap::Arg::new("tuple").long("tuple").num_args(2), | ||
clap::Arg::new("require-eq") | ||
.long("require-eq") | ||
.require_equals(true), | ||
clap::Arg::new("term").num_args(1..).value_terminator(";"), | ||
]), | ||
clap::Command::new("pacman").subcommands([ | ||
clap::Command::new("one").long_flag("one").short_flag('o'), | ||
clap::Command::new("two").long_flag("two").short_flag('t'), | ||
]), | ||
clap::Command::new("last") | ||
.args([clap::Arg::new("first"), clap::Arg::new("free").last(true)]), | ||
clap::Command::new("alias").args([ | ||
clap::Arg::new("flag") | ||
.short('f') | ||
.visible_short_alias('F') | ||
.long("flag") | ||
.action(clap::ArgAction::SetTrue) | ||
.visible_alias("flg") | ||
.help("cmd flag"), | ||
clap::Arg::new("option") | ||
.short('o') | ||
.visible_short_alias('O') | ||
.long("option") | ||
.visible_alias("opt") | ||
.help("cmd option") | ||
.action(clap::ArgAction::Set), | ||
clap::Arg::new("positional"), | ||
]), | ||
clap::Command::new("hint").args([ | ||
clap::Arg::new("choice") | ||
.long("choice") | ||
.action(clap::ArgAction::Set) | ||
.value_parser(["bash", "fish", "zsh"]), | ||
clap::Arg::new("unknown") | ||
.long("unknown") | ||
.value_hint(clap::ValueHint::Unknown), | ||
clap::Arg::new("other") | ||
.long("other") | ||
.value_hint(clap::ValueHint::Other), | ||
clap::Arg::new("path") | ||
.long("path") | ||
.short('p') | ||
.value_hint(clap::ValueHint::AnyPath), | ||
clap::Arg::new("file") | ||
.long("file") | ||
.short('f') | ||
.value_hint(clap::ValueHint::FilePath), | ||
clap::Arg::new("dir") | ||
.long("dir") | ||
.short('d') | ||
.value_hint(clap::ValueHint::DirPath), | ||
clap::Arg::new("exe") | ||
.long("exe") | ||
.short('e') | ||
.value_hint(clap::ValueHint::ExecutablePath), | ||
clap::Arg::new("cmd_name") | ||
.long("cmd-name") | ||
.value_hint(clap::ValueHint::CommandName), | ||
clap::Arg::new("cmd") | ||
.long("cmd") | ||
.short('c') | ||
.value_hint(clap::ValueHint::CommandString), | ||
clap::Arg::new("command_with_args") | ||
.action(clap::ArgAction::Set) | ||
.num_args(1..) | ||
.trailing_var_arg(true) | ||
.value_hint(clap::ValueHint::CommandWithArguments), | ||
clap::Arg::new("user") | ||
.short('u') | ||
.long("user") | ||
.value_hint(clap::ValueHint::Username), | ||
clap::Arg::new("host") | ||
.short('H') | ||
.long("host") | ||
.value_hint(clap::ValueHint::Hostname), | ||
clap::Arg::new("url") | ||
.long("url") | ||
.value_hint(clap::ValueHint::Url), | ||
clap::Arg::new("email") | ||
.long("email") | ||
.value_hint(clap::ValueHint::EmailAddress), | ||
]), | ||
]); | ||
clap_complete::dynamic::shells::CompleteCommand::augment_subcommands(cmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
clap_complete/tests/snapshots/home/test-dynamic/bash/.bashrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
PS1='% ' | ||
. /etc/bash_completion | ||
|
||
_clap_complete_test_dynamic() { | ||
export _CLAP_COMPLETE_INDEX=${COMP_CWORD} | ||
export _CLAP_COMPLETE_COMP_TYPE=${COMP_TYPE} | ||
if compopt +o nospace 2> /dev/null; then | ||
export _CLAP_COMPLETE_SPACE=false | ||
else | ||
export _CLAP_COMPLETE_SPACE=true | ||
fi | ||
export _CLAP_COMPLETE_IFS=$'\013' | ||
COMPREPLY=( $("test-dynamic" complete --shell bash -- "${COMP_WORDS[@]}") ) | ||
if [[ $? != 0 ]]; then | ||
unset COMPREPLY | ||
elif [[ $SUPPRESS_SPACE == 1 ]] && [[ "${COMPREPLY-}" =~ [=/:]$ ]]; then | ||
compopt -o nospace | ||
fi | ||
} | ||
complete -o nospace -o bashdefault -F _clap_complete_test_dynamic test-dynamic | ||
|
||
|
1 change: 1 addition & 0 deletions
1
clap_complete/tests/snapshots/home/test-dynamic/fish/fish/completions/test-dynamic.fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
complete -x -c test-dynamic -a "("'test-dynamic'" complete --shell fish -- (commandline --current-process --tokenize --cut-at-cursor) (commandline --current-token))" |
7 changes: 7 additions & 0 deletions
7
clap_complete/tests/snapshots/home/test-dynamic/fish/fish/config.fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
set -U fish_greeting "" | ||
set -U fish_autosuggestion_enabled 0 | ||
function fish_title | ||
end | ||
function fish_prompt | ||
printf '%% ' | ||
end; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.