2022-07-26 00:17:01 +00:00
|
|
|
use clap::{error::ErrorKind, Arg, ArgAction, Command};
|
2021-09-16 18:21:43 +00:00
|
|
|
|
2022-08-31 14:29:00 +00:00
|
|
|
static HELP: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: prog [OPTIONS]
|
2021-09-16 18:21:43 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-09-07 20:29:15 +00:00
|
|
|
-a
|
|
|
|
-b
|
|
|
|
-c
|
2023-01-03 16:49:43 +00:00
|
|
|
-h, --help Print help
|
2021-09-16 18:21:43 +00:00
|
|
|
";
|
|
|
|
|
2022-08-15 19:29:46 +00:00
|
|
|
fn cmd() -> Command {
|
2022-02-12 03:48:29 +00:00
|
|
|
Command::new("prog")
|
2021-09-16 18:21:43 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("a")
|
|
|
|
.short('a')
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::SetTrue)
|
2022-08-12 17:40:58 +00:00
|
|
|
.required_unless_present_any(["b", "c"])
|
|
|
|
.conflicts_with_all(["b", "c"]),
|
2021-09-16 18:21:43 +00:00
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::new("b")
|
|
|
|
.short('b')
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-09-16 18:21:43 +00:00
|
|
|
.required_unless_present("a")
|
|
|
|
.requires("c"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::new("c")
|
|
|
|
.short('c')
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-09-16 18:21:43 +00:00
|
|
|
.required_unless_present("a")
|
|
|
|
.requires("b"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn valid_cases() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let res = cmd().try_get_matches_from(vec!["", "-a"]);
|
2021-12-27 19:57:38 +00:00
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
2022-02-14 21:47:20 +00:00
|
|
|
let res = cmd().clone().try_get_matches_from(vec!["", "-b", "-c"]);
|
2021-12-27 19:57:38 +00:00
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
2022-02-14 21:47:20 +00:00
|
|
|
let res = cmd().try_get_matches_from(vec!["", "-c", "-b"]);
|
2021-12-27 19:57:38 +00:00
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
2021-09-16 18:21:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn help_text() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let res = cmd().try_get_matches_from(vec!["prog", "--help"]);
|
2021-09-16 18:21:43 +00:00
|
|
|
assert!(res.is_err());
|
|
|
|
let err = res.unwrap_err();
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(err.kind(), ErrorKind::DisplayHelp);
|
2023-05-04 01:40:21 +00:00
|
|
|
println!("{err}");
|
2021-09-16 18:21:43 +00:00
|
|
|
assert_eq!(err.to_string(), HELP);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2022-09-19 14:59:04 +00:00
|
|
|
#[cfg(feature = "error-context")]
|
2021-09-16 18:21:43 +00:00
|
|
|
fn no_duplicate_error() {
|
2022-09-19 14:59:04 +00:00
|
|
|
static ONLY_B_ERROR: &str = "\
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the following required arguments were not provided:
|
2022-09-19 14:59:04 +00:00
|
|
|
-c
|
|
|
|
|
|
|
|
Usage: prog -b -c
|
|
|
|
|
2023-01-03 19:22:35 +00:00
|
|
|
For more information, try '--help'.
|
2022-09-19 14:59:04 +00:00
|
|
|
";
|
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
let res = cmd().try_get_matches_from(vec!["", "-b"]);
|
2021-09-16 18:21:43 +00:00
|
|
|
assert!(res.is_err());
|
|
|
|
let err = res.unwrap_err();
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(err.kind(), ErrorKind::MissingRequiredArgument);
|
2021-09-16 18:21:43 +00:00
|
|
|
assert_eq!(err.to_string(), ONLY_B_ERROR);
|
|
|
|
|
2022-09-19 14:59:04 +00:00
|
|
|
static ONLY_C_ERROR: &str = "\
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the following required arguments were not provided:
|
2022-09-19 14:59:04 +00:00
|
|
|
-b
|
|
|
|
|
|
|
|
Usage: prog -c -b
|
|
|
|
|
2023-01-03 19:22:35 +00:00
|
|
|
For more information, try '--help'.
|
2022-09-19 14:59:04 +00:00
|
|
|
";
|
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
let res = cmd().try_get_matches_from(vec!["", "-c"]);
|
2021-09-16 18:21:43 +00:00
|
|
|
assert!(res.is_err());
|
|
|
|
let err = res.unwrap_err();
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(err.kind(), ErrorKind::MissingRequiredArgument);
|
2021-09-16 18:21:43 +00:00
|
|
|
assert_eq!(err.to_string(), ONLY_C_ERROR);
|
|
|
|
}
|