clap/clap_complete_nushell/tests/common.rs

348 lines
11 KiB
Rust
Raw Normal View History

#![allow(dead_code)] // shared with other test modules
2022-10-22 15:27:04 +00:00
use clap::{builder::PossibleValue, Arg, ArgAction, Command, ValueHint};
pub fn basic_command(name: &'static str) -> Command {
Command::new(name)
.arg(
Arg::new("config")
.short('c')
.global(true)
.action(ArgAction::SetTrue),
)
.arg(
Arg::new("v")
.short('v')
.conflicts_with("config")
.action(ArgAction::SetTrue),
)
.subcommand(
Command::new("test")
.about("Subcommand")
.arg(Arg::new("debug").short('d').action(ArgAction::Count)),
)
}
pub fn feature_sample_command(name: &'static str) -> Command {
Command::new(name)
.version("3.0")
.propagate_version(true)
.about("Tests completions")
.arg(
Arg::new("file")
.value_hint(ValueHint::FilePath)
.help("some input file"),
)
.arg(
Arg::new("config")
.action(ArgAction::Count)
.help("some config file")
.short('c')
.visible_short_alias('C')
.long("config")
.visible_alias("conf"),
)
.arg(Arg::new("choice").value_parser(["first", "second"]))
.subcommand(
Command::new("test").about("tests things").arg(
Arg::new("case")
.long("case")
.action(ArgAction::Set)
.help("the case to test"),
),
)
}
2022-11-02 04:00:19 +00:00
pub fn special_commands_command(name: &'static str) -> Command {
2022-10-31 12:11:01 +00:00
feature_sample_command(name)
.subcommand(
2022-11-02 04:00:19 +00:00
Command::new("some_cmd")
2022-10-31 12:11:01 +00:00
.about("tests other things")
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("config")
2022-10-31 12:11:01 +00:00
.long("config")
.hide(true)
2022-11-02 04:00:19 +00:00
.action(ArgAction::Set)
2022-10-31 12:11:01 +00:00
.require_equals(true)
.help("the other case to test"),
)
2022-11-02 04:00:19 +00:00
.arg(Arg::new("path").num_args(1..)),
)
.subcommand(Command::new("some-cmd-with-hyphens").alias("hyphen"))
.subcommand(Command::new("some-hidden-cmd").hide(true))
}
pub fn quoting_command(name: &'static str) -> Command {
Command::new(name)
.version("3.0")
.arg(
Arg::new("single-quotes")
.long("single-quotes")
.action(ArgAction::SetTrue)
.help("Can be 'always', 'auto', or 'never'"),
)
.arg(
Arg::new("double-quotes")
.long("double-quotes")
.action(ArgAction::SetTrue)
.help("Can be \"always\", \"auto\", or \"never\""),
)
.arg(
Arg::new("backticks")
.long("backticks")
.action(ArgAction::SetTrue)
.help("For more information see `echo test`"),
2022-10-31 12:11:01 +00:00
)
2022-11-02 04:00:19 +00:00
.arg(
Arg::new("backslash")
.long("backslash")
.action(ArgAction::SetTrue)
.help("Avoid '\\n'"),
)
.arg(
Arg::new("brackets")
.long("brackets")
.action(ArgAction::SetTrue)
.help("List packages [filter]"),
)
.arg(
Arg::new("expansions")
.long("expansions")
.action(ArgAction::SetTrue)
.help("Execute the shell command with $SHELL"),
)
.subcommands([
Command::new("cmd-single-quotes").about("Can be 'always', 'auto', or 'never'"),
Command::new("cmd-double-quotes").about("Can be \"always\", \"auto\", or \"never\""),
Command::new("cmd-backticks").about("For more information see `echo test`"),
Command::new("cmd-backslash").about("Avoid '\\n'"),
Command::new("cmd-brackets").about("List packages [filter]"),
Command::new("cmd-expansions").about("Execute the shell command with $SHELL"),
])
2022-10-31 12:11:01 +00:00
}
2022-10-31 10:32:40 +00:00
pub fn aliases_command(name: &'static str) -> Command {
Command::new(name)
.version("3.0")
.about("testing nushell completions")
.arg(
Arg::new("flag")
.short('f')
.visible_short_alias('F')
.long("flag")
.action(ArgAction::SetTrue)
.visible_alias("flg")
.help("cmd flag"),
)
.arg(
Arg::new("option")
.short('o')
.visible_short_alias('O')
.long("option")
.visible_alias("opt")
.help("cmd option")
.action(ArgAction::Set),
)
.arg(Arg::new("positional"))
}
2022-10-22 15:27:04 +00:00
pub fn sub_subcommands_command(name: &'static str) -> Command {
feature_sample_command(name).subcommand(
Command::new("some_cmd")
.about("top level subcommand")
2022-10-31 12:11:01 +00:00
.visible_alias("some_cmd_alias")
2022-10-22 15:27:04 +00:00
.subcommand(
Command::new("sub_cmd").about("sub-subcommand").arg(
Arg::new("config")
.long("config")
.action(ArgAction::Set)
2022-10-31 12:11:01 +00:00
.value_parser([
PossibleValue::new("Lest quotes, aren't escaped.")
.help("help,with,comma"),
PossibleValue::new("Second to trigger display of options"),
])
2022-10-22 15:27:04 +00:00
.help("the other case to test"),
),
),
)
}
2022-11-02 04:00:19 +00:00
pub fn value_hint_command(name: &'static str) -> Command {
Command::new(name)
2022-10-31 12:11:01 +00:00
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("choice")
2022-10-31 12:11:01 +00:00
.long("choice")
2022-11-02 04:00:19 +00:00
.action(ArgAction::Set)
2022-10-31 12:11:01 +00:00
.value_parser(["bash", "fish", "zsh"]),
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("unknown")
2022-10-31 12:11:01 +00:00
.long("unknown")
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::Unknown),
2022-10-31 12:11:01 +00:00
)
2022-11-02 04:00:19 +00:00
.arg(Arg::new("other").long("other").value_hint(ValueHint::Other))
2022-10-31 12:11:01 +00:00
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("path")
2022-10-31 12:11:01 +00:00
.long("path")
.short('p')
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::AnyPath),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("file")
2022-10-31 12:11:01 +00:00
.long("file")
.short('f')
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::FilePath),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("dir")
2022-10-31 12:11:01 +00:00
.long("dir")
.short('d')
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::DirPath),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("exe")
2022-10-31 12:11:01 +00:00
.long("exe")
.short('e')
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::ExecutablePath),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("cmd_name")
2022-10-31 12:11:01 +00:00
.long("cmd-name")
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::CommandName),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("cmd")
2022-10-31 12:11:01 +00:00
.long("cmd")
.short('c')
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::CommandString),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("command_with_args")
.action(ArgAction::Set)
2022-10-31 12:11:01 +00:00
.num_args(1..)
.trailing_var_arg(true)
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::CommandWithArguments),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("user")
2022-10-31 12:11:01 +00:00
.short('u')
.long("user")
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::Username),
2022-10-31 12:11:01 +00:00
)
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("host")
2022-10-31 12:11:01 +00:00
.short('H')
.long("host")
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::Hostname),
2022-10-31 12:11:01 +00:00
)
2022-11-02 04:00:19 +00:00
.arg(Arg::new("url").long("url").value_hint(ValueHint::Url))
2022-10-31 12:11:01 +00:00
.arg(
2022-11-02 04:00:19 +00:00
Arg::new("email")
2022-10-31 12:11:01 +00:00
.long("email")
2022-11-02 04:00:19 +00:00
.value_hint(ValueHint::EmailAddress),
2022-10-31 12:11:01 +00:00
)
}
2022-10-22 15:27:04 +00:00
pub fn assert_matches_path(
expected_path: impl AsRef<std::path::Path>,
gen: impl clap_complete::Generator,
mut cmd: clap::Command,
2022-10-22 15:27:04 +00:00
name: &'static str,
) {
let mut buf = vec![];
clap_complete::generate(gen, &mut cmd, name, &mut buf);
snapbox::Assert::new()
.action_env("SNAPSHOTS")
2022-10-31 12:11:01 +00:00
.normalize_paths(false)
2022-10-22 15:27:04 +00:00
.matches_path(expected_path, buf);
}
pub fn register_example(name: &str, shell: completest::Shell) {
let scratch = snapbox::path::PathFixture::mutable_temp().unwrap();
let scratch_path = scratch.path().unwrap();
let shell_name = shell.name();
let home = std::path::Path::new(env!("CARGO_MANIFEST_DIR"))
.join("tests/snapshots/home")
.join(name)
.join(shell_name);
println!("Compiling");
let manifest_path = std::path::Path::new(env!("CARGO_MANIFEST_DIR")).join("Cargo.toml");
let bin_path =
snapbox::cmd::compile_example(name, ["--manifest-path", manifest_path.to_str().unwrap()])
.unwrap();
println!("Compiled");
let bin_root = bin_path.parent().unwrap().to_owned();
let registration = std::process::Command::new(&bin_path)
.arg(format!("--generate={shell_name}"))
.output()
.unwrap();
assert!(
registration.status.success(),
"{}",
String::from_utf8_lossy(&registration.stderr)
);
let registration = std::str::from_utf8(&registration.stdout).unwrap();
assert!(!registration.is_empty());
let mut runtime = shell.init(bin_root, scratch_path.to_owned()).unwrap();
runtime.register(name, registration).unwrap();
snapbox::assert_subset_eq(home, scratch_path);
scratch.close().unwrap();
}
pub fn load_runtime(name: &str, shell: completest::Shell) -> Box<dyn completest::Runtime> {
let shell_name = shell.name();
let home = std::path::Path::new(env!("CARGO_MANIFEST_DIR"))
.join("tests/snapshots/home")
.join(name)
.join(shell_name);
std::fs::create_dir_all(&home).unwrap();
let scratch = snapbox::path::PathFixture::immutable(&home);
let home = scratch.path().unwrap().to_owned();
println!("Compiling");
let manifest_path = std::path::Path::new(env!("CARGO_MANIFEST_DIR")).join("Cargo.toml");
let bin_path =
snapbox::cmd::compile_example(name, ["--manifest-path", manifest_path.to_str().unwrap()])
.unwrap();
println!("Compiled");
let bin_root = bin_path.parent().unwrap().to_owned();
let runtime = shell.with_home(bin_root, home).unwrap();
Box::new(ScratchRuntime {
_scratch: scratch,
runtime,
})
}
#[derive(Debug)]
struct ScratchRuntime {
_scratch: snapbox::path::PathFixture,
runtime: Box<dyn completest::Runtime>,
}
impl completest::Runtime for ScratchRuntime {
fn home(&self) -> &std::path::Path {
self.runtime.home()
}
fn register(&mut self, name: &str, content: &str) -> std::io::Result<()> {
self.runtime.register(name, content)
}
fn complete(&mut self, input: &str, term: &completest::Term) -> std::io::Result<String> {
let output = self.runtime.complete(input, term)?;
// HACK: elvish prints and clears this message when a completer takes too long which is
// dependent on a lot of factors, making this show up or no sometimes (especially if we
// aren't clearing the screen properly for fish)
let output = output.replace("\nCOMPLETING argument\n", "\n");
Ok(output)
}
}