2023-07-20 18:34:09 +00:00
|
|
|
use crate::common;
|
2022-03-07 20:03:46 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn basic() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::basic_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/basic.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn feature_sample() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::feature_sample_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/feature_sample.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn special_commands() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::special_commands_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/special_commands.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn quoting() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::quoting_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/quoting.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn aliases() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::aliases_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/aliases.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sub_subcommands() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::sub_subcommands_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/sub_subcommands.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn value_hint() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::value_hint_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/value_hint.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
2023-01-09 10:50:58 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn value_terminator() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::value_terminator_command(name);
|
|
|
|
common::assert_matches_path(
|
|
|
|
"tests/snapshots/value_terminator.fish",
|
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
2023-01-10 08:14:52 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn two_multi_valued_arguments() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::two_multi_valued_arguments_command(name);
|
|
|
|
common::assert_matches_path(
|
|
|
|
"tests/snapshots/two_multi_valued_arguments.fish",
|
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
2023-05-10 18:21:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_last() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::subcommand_last(name);
|
|
|
|
common::assert_matches_path(
|
|
|
|
"tests/snapshots/subcommand_last.fish",
|
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
2023-07-20 19:44:54 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(unix)]
|
|
|
|
fn register_completion() {
|
2023-07-28 18:54:02 +00:00
|
|
|
common::register_example("static", "exhaustive", completest::Shell::Fish);
|
2023-07-20 19:44:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(unix)]
|
|
|
|
fn complete() {
|
|
|
|
if !common::has_command("fish") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let term = completest::Term::new();
|
2023-07-28 18:54:02 +00:00
|
|
|
let mut runtime = common::load_runtime("static", "exhaustive", completest::Shell::Fish);
|
2023-07-20 19:44:54 +00:00
|
|
|
|
2023-07-28 18:54:02 +00:00
|
|
|
let input = "exhaustive \t";
|
|
|
|
let expected = r#"% exhaustive
|
2023-07-28 11:10:04 +00:00
|
|
|
action complete (Register shell completions for this program) hint pacman value
|
|
|
|
alias help (Print this message or the help of the given subcommand(s)) last quote"#;
|
2023-07-20 19:44:54 +00:00
|
|
|
let actual = runtime.complete(input, &term).unwrap();
|
|
|
|
snapbox::assert_eq(expected, actual);
|
2023-09-07 11:49:43 +00:00
|
|
|
|
|
|
|
let input = "exhaustive quote --choice \t";
|
|
|
|
let actual = runtime.complete(input, &term).unwrap();
|
|
|
|
let expected_substring = r#"% exhaustive quote --choice
|
|
|
|
Command 'shell' not found, did you mean:"#;
|
|
|
|
assert!(actual.as_str().contains(expected_substring));
|
2023-07-20 19:44:54 +00:00
|
|
|
}
|
2023-07-28 10:14:38 +00:00
|
|
|
|
|
|
|
#[cfg(all(unix, feature = "unstable-dynamic"))]
|
|
|
|
#[test]
|
|
|
|
fn register_dynamic() {
|
|
|
|
common::register_example("dynamic", "exhaustive", completest::Shell::Fish);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(all(unix, feature = "unstable-dynamic"))]
|
|
|
|
fn complete_dynamic() {
|
|
|
|
if !common::has_command("fish") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let term = completest::Term::new();
|
|
|
|
let mut runtime = common::load_runtime("dynamic", "exhaustive", completest::Shell::Fish);
|
|
|
|
|
|
|
|
let input = "exhaustive \t";
|
|
|
|
let expected = r#"% exhaustive
|
2023-08-03 09:28:28 +00:00
|
|
|
action last -V (Print version)
|
|
|
|
alias pacman --generate (generate)
|
|
|
|
complete (Register shell completions for this program) quote --global (everywhere)
|
|
|
|
help (Print this message or the help of the given subcommand(s)) value --help (Print help)
|
|
|
|
hint -h (Print help) --version (Print version)"#;
|
2023-07-28 10:14:38 +00:00
|
|
|
let actual = runtime.complete(input, &term).unwrap();
|
|
|
|
snapbox::assert_eq(expected, actual);
|
2023-08-03 09:41:05 +00:00
|
|
|
|
|
|
|
let input = "exhaustive quote \t";
|
|
|
|
let expected = r#"% exhaustive quote
|
|
|
|
cmd-backslash (Avoid '\n')
|
|
|
|
cmd-backticks (For more information see `echo test`)
|
|
|
|
cmd-brackets (List packages [filter])
|
|
|
|
cmd-double-quotes (Can be "always", "auto", or "never")
|
|
|
|
cmd-expansions (Execute the shell command with $SHELL)
|
|
|
|
cmd-single-quotes (Can be 'always', 'auto', or 'never')
|
|
|
|
escape-help (\tab "')
|
|
|
|
help (Print this message or the help of the given subcommand(s))
|
|
|
|
-h (Print help)
|
|
|
|
-V (Print version)
|
|
|
|
--backslash (Avoid '\n')
|
|
|
|
--backticks (For more information see `echo test`)
|
|
|
|
--brackets (List packages [filter])
|
|
|
|
--double-quotes (Can be "always", "auto", or "never")
|
|
|
|
--expansions (Execute the shell command with $SHELL)
|
|
|
|
--global (everywhere)
|
|
|
|
--help (Print help)
|
|
|
|
--single-quotes (Can be 'always', 'auto', or 'never')
|
|
|
|
--version (Print version)"#;
|
|
|
|
let actual = runtime.complete(input, &term).unwrap();
|
|
|
|
snapbox::assert_eq(expected, actual);
|
2023-07-28 10:14:38 +00:00
|
|
|
}
|