#![allow(unused_imports, dead_code)] use std::io::{BufRead, Cursor, Write}; use std::str; use clap::{arg, Arg, ArgAction, ArgGroup, Command}; pub const FULL_TEMPLATE: &str = "\ {before-help}{name} {version} {author-with-newline}{about-with-newline} {usage-heading} {usage} {all-args}{after-help}"; #[track_caller] pub fn assert_eq(expected: S, actual: S2) where S: AsRef, S2: AsRef, { let expected = expected.as_ref(); let actual = actual.as_ref(); snapbox::assert_eq(expected, actual); } #[track_caller] pub fn assert_output(l: Command, args: &str, expected: &str, stderr: bool) { let mut buf = Cursor::new(Vec::with_capacity(50)); let res = l.try_get_matches_from(args.split(' ').collect::>()); let err = res.unwrap_err(); write!(&mut buf, "{err}").unwrap(); let actual = buf.into_inner(); let actual = String::from_utf8(actual).unwrap(); assert_eq!( stderr, err.use_stderr(), "Should Use STDERR failed. Should be {} but is {}", stderr, err.use_stderr() ); assert_eq(expected, actual) } // Legacy tests from the python script days pub fn complex_app() -> Command { let opt3_vals = ["fast", "slow"]; let pos3_vals = ["vi", "emacs"]; Command::new("clap-test") .version("v1.4.8") .about("tests clap library") .author("Kevin K. ") .help_template(FULL_TEMPLATE) .arg( arg!( -o --option "tests options" ) .required(false) .num_args(1..) .action(ArgAction::Append), ) .arg(arg!([positional] "tests positionals")) .arg( arg!(-f --flag "tests flags") .action(ArgAction::Count) .global(true), ) .args([ arg!(flag2: -F "tests flags with exclusions") .conflicts_with("flag") .requires("long-option-2") .action(ArgAction::SetTrue), arg!(--"long-option-2" "tests long options with exclusions") .conflicts_with("option") .requires("positional2"), arg!([positional2] "tests positionals with exclusions"), arg!(-O --option3 "specific vals").value_parser(opt3_vals), arg!([positional3] ... "tests specific values").value_parser(pos3_vals), arg!(--multvals "Tests multiple values, not mult occs") .value_names(["one", "two"]), arg!(--multvalsmo ... "Tests multiple values, and mult occs") .value_names(["one", "two"]), arg!(--minvals2 "Tests 2 min vals").num_args(2..), arg!(--maxvals3 "Tests 3 max vals").num_args(1..=3), arg!(--optvaleq "Tests optional value, require = sign") .num_args(0..=1) .require_equals(true), arg!(--optvalnoeq "Tests optional value").num_args(0..=1), ]) .subcommand( Command::new("subcmd") .about("tests subcommands") .version("0.1") .author("Kevin K. ") .help_template(FULL_TEMPLATE) .arg(arg!(-o --option "tests options").num_args(1..)) .arg(arg!(-s --subcmdarg "tests other args")) .arg(arg!([scpositional] "tests positionals")), ) }