2022-04-15 21:08:11 +00:00
|
|
|
use clap::FromArgMatches;
|
|
|
|
use clap::Subcommand;
|
|
|
|
|
2022-08-15 19:29:46 +00:00
|
|
|
fn command() -> clap::Command {
|
2022-04-15 21:08:11 +00:00
|
|
|
let cmd = clap::Command::new("dynamic")
|
|
|
|
.arg(
|
|
|
|
clap::Arg::new("input")
|
|
|
|
.long("--input")
|
|
|
|
.short('i')
|
|
|
|
.value_hint(clap::ValueHint::FilePath),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
clap::Arg::new("format")
|
|
|
|
.long("--format")
|
|
|
|
.short('F')
|
2022-05-24 01:16:02 +00:00
|
|
|
.value_parser(["json", "yaml", "toml"]),
|
2022-04-15 21:08:11 +00:00
|
|
|
)
|
|
|
|
.args_conflicts_with_subcommands(true);
|
|
|
|
let cmd = clap_complete::dynamic::bash::CompleteCommand::augment_subcommands(cmd);
|
|
|
|
cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let cmd = command();
|
|
|
|
let matches = cmd.get_matches();
|
|
|
|
if let Ok(completions) =
|
|
|
|
clap_complete::dynamic::bash::CompleteCommand::from_arg_matches(&matches)
|
|
|
|
{
|
|
|
|
completions.complete(&mut command());
|
|
|
|
} else {
|
|
|
|
println!("{:#?}", matches);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn verify_cli() {
|
|
|
|
use clap::CommandFactory;
|
|
|
|
command().command().debug_assert();
|
|
|
|
}
|