2022-08-11 19:50:58 +00:00
|
|
|
use clap::{arg, error::ErrorKind, Arg, ArgAction, ArgGroup, Command, Id};
|
2015-09-28 02:48:15 +00:00
|
|
|
|
2022-09-19 14:59:04 +00:00
|
|
|
use super::utils;
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2015-09-28 02:48:15 +00:00
|
|
|
#[test]
|
|
|
|
fn required_group_missing_arg() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let result = Command::new("group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
|
|
|
.arg(arg!( -c --color "some other flag"))
|
2022-08-12 17:40:58 +00:00
|
|
|
.group(ArgGroup::new("req").args(["flag", "color"]).required(true))
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec![""]);
|
2015-09-28 20:23:17 +00:00
|
|
|
assert!(result.is_err());
|
|
|
|
let err = result.err().unwrap();
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(err.kind(), ErrorKind::MissingRequiredArgument);
|
2015-09-28 02:48:15 +00:00
|
|
|
}
|
|
|
|
|
2020-04-09 14:21:45 +00:00
|
|
|
#[cfg(debug_assertions)]
|
2017-05-15 22:29:30 +00:00
|
|
|
#[test]
|
2022-08-11 20:33:23 +00:00
|
|
|
#[should_panic = "Command group: Argument group 'req' contains non-existent argument"]
|
2017-05-15 22:29:30 +00:00
|
|
|
fn non_existing_arg() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let _ = Command::new("group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
|
|
|
.arg(arg!(-c --color "some other flag"))
|
2022-08-12 17:40:58 +00:00
|
|
|
.group(ArgGroup::new("req").args(["flg", "color"]).required(true))
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec![""]);
|
2017-05-15 22:29:30 +00:00
|
|
|
}
|
|
|
|
|
2020-04-09 14:21:45 +00:00
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
#[test]
|
2022-08-11 20:33:23 +00:00
|
|
|
#[should_panic = "Command group: Argument group name must be unique\n\n\t'req' is already in use"]
|
2020-04-09 14:21:45 +00:00
|
|
|
fn unique_group_name() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let _ = Command::new("group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
|
|
|
.arg(arg!(-c --color "some other flag"))
|
2022-08-12 17:40:58 +00:00
|
|
|
.group(ArgGroup::new("req").args(["flag"]).required(true))
|
|
|
|
.group(ArgGroup::new("req").args(["color"]).required(true))
|
2020-04-09 14:21:45 +00:00
|
|
|
.try_get_matches_from(vec![""]);
|
|
|
|
}
|
|
|
|
|
2020-04-09 16:19:05 +00:00
|
|
|
#[cfg(debug_assertions)]
|
2020-04-09 14:21:45 +00:00
|
|
|
#[test]
|
2022-08-11 20:33:23 +00:00
|
|
|
#[should_panic = "Command group: Argument group name 'a' must not conflict with argument name"]
|
2020-05-14 20:50:56 +00:00
|
|
|
fn groups_new_of_arg_name() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let _ = Command::new("group")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("a").long("a").group("a"))
|
2020-04-09 14:21:45 +00:00
|
|
|
.try_get_matches_from(vec!["", "--a"]);
|
|
|
|
}
|
|
|
|
|
2020-04-09 16:19:05 +00:00
|
|
|
#[cfg(debug_assertions)]
|
2020-04-09 14:21:45 +00:00
|
|
|
#[test]
|
2022-08-12 17:40:58 +00:00
|
|
|
#[should_panic = "Command group: Argument group name 'a' must not conflict with argument name"]
|
2020-05-14 20:50:56 +00:00
|
|
|
fn arg_group_new_of_arg_name() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let _ = Command::new("group")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("a").long("a").group("a"))
|
|
|
|
.group(ArgGroup::new("a"))
|
2020-04-09 14:21:45 +00:00
|
|
|
.try_get_matches_from(vec!["", "--a"]);
|
|
|
|
}
|
|
|
|
|
2015-09-28 02:48:15 +00:00
|
|
|
#[test]
|
|
|
|
fn group_single_value() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let res = Command::new("group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-c --color [color] "some option"))
|
2022-09-12 21:59:57 +00:00
|
|
|
.arg(arg!(-n --hostname <name> "another option"))
|
2022-08-12 17:40:58 +00:00
|
|
|
.group(ArgGroup::new("grp").args(["hostname", "color"]))
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec!["", "-c", "blue"]);
|
2021-12-27 19:57:38 +00:00
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
2018-01-09 15:24:24 +00:00
|
|
|
|
|
|
|
let m = res.unwrap();
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(m.contains_id("grp"));
|
2022-08-11 19:50:58 +00:00
|
|
|
assert_eq!(m.get_one::<Id>("grp").map(|v| v.as_str()).unwrap(), "color");
|
2015-11-09 13:57:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn group_empty() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let res = Command::new("group")
|
2022-10-12 12:39:55 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-c --color [color] "some option"))
|
2022-09-12 21:59:57 +00:00
|
|
|
.arg(arg!(-n --hostname <name> "another option"))
|
2022-10-12 12:39:55 +00:00
|
|
|
.group(ArgGroup::new("grp").args(["hostname", "color", "flag"]))
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec![""]);
|
2021-12-27 19:57:38 +00:00
|
|
|
assert!(res.is_ok(), "{}", res.unwrap_err());
|
2018-01-09 15:24:24 +00:00
|
|
|
|
|
|
|
let m = res.unwrap();
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(!m.contains_id("grp"));
|
2022-05-24 15:16:50 +00:00
|
|
|
assert!(m.get_one::<String>("grp").map(|v| v.as_str()).is_none());
|
2015-09-28 02:48:15 +00:00
|
|
|
}
|
|
|
|
|
2015-11-09 13:57:20 +00:00
|
|
|
#[test]
|
2022-07-21 21:36:54 +00:00
|
|
|
fn group_required_flags_empty() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let result = Command::new("group")
|
2022-10-12 12:39:55 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-c --color "some option"))
|
2022-09-12 21:59:57 +00:00
|
|
|
.arg(arg!(-n --hostname <name> "another option"))
|
2022-07-21 21:36:54 +00:00
|
|
|
.group(
|
|
|
|
ArgGroup::new("grp")
|
|
|
|
.required(true)
|
2022-10-12 12:39:55 +00:00
|
|
|
.args(["hostname", "color", "flag"]),
|
2022-07-21 21:36:54 +00:00
|
|
|
)
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec![""]);
|
2015-11-09 13:57:20 +00:00
|
|
|
assert!(result.is_err());
|
|
|
|
let err = result.err().unwrap();
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(err.kind(), ErrorKind::MissingRequiredArgument);
|
2015-11-09 13:57:20 +00:00
|
|
|
}
|
|
|
|
|
2015-09-28 02:48:15 +00:00
|
|
|
#[test]
|
|
|
|
fn group_multi_value_single_arg() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let res = Command::new("group")
|
2022-10-12 12:39:55 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
2022-08-03 16:20:07 +00:00
|
|
|
.arg(arg!(-c --color <color> "some option").num_args(1..))
|
2022-09-12 21:59:57 +00:00
|
|
|
.arg(arg!(-n --hostname <name> "another option"))
|
2022-10-12 12:39:55 +00:00
|
|
|
.group(ArgGroup::new("grp").args(["hostname", "color", "flag"]))
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec!["", "-c", "blue", "red", "green"]);
|
2022-01-25 22:19:28 +00:00
|
|
|
assert!(res.is_ok(), "{:?}", res.unwrap_err().kind());
|
2018-01-09 15:24:24 +00:00
|
|
|
|
|
|
|
let m = res.unwrap();
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(m.contains_id("grp"));
|
2022-08-11 19:50:58 +00:00
|
|
|
assert_eq!(m.get_one::<Id>("grp").map(|v| v.as_str()).unwrap(), "color");
|
2016-01-25 20:56:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty_group() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let r = Command::new("empty_group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
2020-05-14 20:50:56 +00:00
|
|
|
.group(ArgGroup::new("vers").required(true))
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec!["empty_prog"]);
|
2016-04-10 05:31:52 +00:00
|
|
|
assert!(r.is_err());
|
|
|
|
let err = r.err().unwrap();
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(err.kind(), ErrorKind::MissingRequiredArgument);
|
2015-09-28 02:48:15 +00:00
|
|
|
}
|
2016-05-09 01:33:56 +00:00
|
|
|
|
|
|
|
#[test]
|
2022-09-19 14:59:04 +00:00
|
|
|
#[cfg(feature = "error-context")]
|
2016-05-09 01:33:56 +00:00
|
|
|
fn req_group_usage_string() {
|
2023-01-03 16:22:40 +00:00
|
|
|
static REQ_GROUP_USAGE: &str = "error: the following required arguments were not provided:
|
2022-09-19 14:59:04 +00:00
|
|
|
<base|--delete>
|
|
|
|
|
|
|
|
Usage: clap-test <base|--delete>
|
|
|
|
|
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 cmd = Command::new("req_group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!([base] "Base commit"))
|
|
|
|
.arg(arg!(
|
|
|
|
-d --delete "Remove the base commit information"
|
2021-11-18 20:17:31 +00:00
|
|
|
))
|
2018-01-25 04:05:05 +00:00
|
|
|
.group(
|
2020-05-14 20:50:56 +00:00
|
|
|
ArgGroup::new("base_or_delete")
|
2022-08-12 17:40:58 +00:00
|
|
|
.args(["base", "delete"])
|
2018-01-25 04:05:05 +00:00
|
|
|
.required(true),
|
|
|
|
);
|
|
|
|
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "clap-test", REQ_GROUP_USAGE, true);
|
2016-05-09 01:33:56 +00:00
|
|
|
}
|
2016-05-09 20:00:44 +00:00
|
|
|
|
|
|
|
#[test]
|
2022-09-19 14:59:04 +00:00
|
|
|
#[cfg(feature = "error-context")]
|
2016-05-09 20:00:44 +00:00
|
|
|
fn req_group_with_conflict_usage_string() {
|
2022-09-19 14:59:04 +00:00
|
|
|
static REQ_GROUP_CONFLICT_USAGE: &str = "\
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the argument '--delete' cannot be used with '[base]'
|
2022-09-19 14:59:04 +00:00
|
|
|
|
|
|
|
Usage: clap-test <base|--delete>
|
|
|
|
|
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 cmd = Command::new("req_group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!([base] "Base commit").conflicts_with("delete"))
|
|
|
|
.arg(arg!(
|
|
|
|
-d --delete "Remove the base commit information"
|
2018-01-25 04:05:05 +00:00
|
|
|
))
|
|
|
|
.group(
|
2020-05-14 20:50:56 +00:00
|
|
|
ArgGroup::new("base_or_delete")
|
2022-08-12 17:40:58 +00:00
|
|
|
.args(["base", "delete"])
|
2018-01-25 04:05:05 +00:00
|
|
|
.required(true),
|
|
|
|
);
|
|
|
|
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2018-01-25 04:05:05 +00:00
|
|
|
"clap-test --delete base",
|
2020-04-23 17:56:42 +00:00
|
|
|
REQ_GROUP_CONFLICT_USAGE,
|
2022-04-29 20:32:25 +00:00
|
|
|
true,
|
|
|
|
);
|
2020-04-23 17:56:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2022-09-19 14:59:04 +00:00
|
|
|
#[cfg(feature = "error-context")]
|
2020-04-23 17:56:42 +00:00
|
|
|
fn req_group_with_conflict_usage_string_only_options() {
|
2022-09-19 14:59:04 +00:00
|
|
|
static REQ_GROUP_CONFLICT_ONLY_OPTIONS: &str = "\
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the argument '--delete' cannot be used with '--all'
|
2022-09-19 14:59:04 +00:00
|
|
|
|
|
|
|
Usage: clap-test <--all|--delete>
|
|
|
|
|
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 cmd = Command::new("req_group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-a --all "All").conflicts_with("delete"))
|
|
|
|
.arg(arg!(
|
|
|
|
-d --delete "Remove the base commit information"
|
2020-04-23 17:56:42 +00:00
|
|
|
))
|
|
|
|
.group(
|
2020-05-14 20:50:56 +00:00
|
|
|
ArgGroup::new("all_or_delete")
|
2022-08-12 17:40:58 +00:00
|
|
|
.args(["all", "delete"])
|
2020-04-23 17:56:42 +00:00
|
|
|
.required(true),
|
|
|
|
);
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2020-04-23 17:56:42 +00:00
|
|
|
"clap-test --delete --all",
|
|
|
|
REQ_GROUP_CONFLICT_ONLY_OPTIONS,
|
2022-04-29 20:32:25 +00:00
|
|
|
true,
|
|
|
|
);
|
2016-05-09 20:00:44 +00:00
|
|
|
}
|
2016-06-23 14:06:19 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn required_group_multiple_args() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let result = Command::new("group")
|
2022-06-10 01:03:28 +00:00
|
|
|
.arg(arg!(-f --flag "some flag").action(ArgAction::SetTrue))
|
|
|
|
.arg(arg!(-c --color "some other flag").action(ArgAction::SetTrue))
|
2018-01-25 04:05:05 +00:00
|
|
|
.group(
|
2020-05-14 20:50:56 +00:00
|
|
|
ArgGroup::new("req")
|
2022-08-12 17:40:58 +00:00
|
|
|
.args(["flag", "color"])
|
2018-01-25 04:05:05 +00:00
|
|
|
.required(true)
|
|
|
|
.multiple(true),
|
|
|
|
)
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec!["group", "-f", "-c"]);
|
2021-12-27 19:57:38 +00:00
|
|
|
assert!(result.is_ok(), "{}", result.unwrap_err());
|
2016-06-23 14:06:19 +00:00
|
|
|
let m = result.unwrap();
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(*m.get_one::<bool>("flag").expect("defaulted by clap"));
|
|
|
|
assert!(*m.get_one::<bool>("color").expect("defaulted by clap"));
|
2022-08-11 19:50:58 +00:00
|
|
|
assert_eq!(
|
|
|
|
&*m.get_many::<Id>("req")
|
|
|
|
.unwrap()
|
|
|
|
.map(|v| v.as_str())
|
|
|
|
.collect::<Vec<_>>(),
|
2022-11-24 13:54:25 +00:00
|
|
|
["flag", "color"]
|
2022-08-11 19:50:58 +00:00
|
|
|
);
|
2016-06-23 14:06:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn group_multiple_args_error() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let result = Command::new("group")
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(-f --flag "some flag"))
|
|
|
|
.arg(arg!(-c --color "some other flag"))
|
2022-08-12 17:40:58 +00:00
|
|
|
.group(ArgGroup::new("req").args(["flag", "color"]))
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec!["group", "-f", "-c"]);
|
2016-06-23 14:06:19 +00:00
|
|
|
assert!(result.is_err());
|
|
|
|
let err = result.unwrap_err();
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(err.kind(), ErrorKind::ArgumentConflict);
|
2016-06-24 04:17:04 +00:00
|
|
|
}
|
2019-04-05 02:06:23 +00:00
|
|
|
|
2022-04-22 12:01:53 +00:00
|
|
|
#[test]
|
|
|
|
fn group_overrides_required() {
|
|
|
|
let command = Command::new("group")
|
2022-09-12 21:59:57 +00:00
|
|
|
.arg(arg!(--foo <FOO>).required(true))
|
|
|
|
.arg(arg!(--bar <BAR>).required(true))
|
2022-08-12 17:40:58 +00:00
|
|
|
.group(ArgGroup::new("group").args(["foo", "bar"]).required(true));
|
2022-04-22 12:01:53 +00:00
|
|
|
let result = command.try_get_matches_from(vec!["group", "--foo", "value"]);
|
|
|
|
assert!(result.is_ok(), "{}", result.unwrap_err());
|
|
|
|
let m = result.unwrap();
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(m.contains_id("foo"));
|
|
|
|
assert!(!m.contains_id("bar"));
|
2022-04-22 12:01:53 +00:00
|
|
|
}
|
|
|
|
|
2021-01-24 19:02:43 +00:00
|
|
|
#[test]
|
|
|
|
fn group_usage_use_val_name() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static GROUP_USAGE_USE_VAL_NAME: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: prog <A>
|
2021-01-24 19:02:43 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Arguments:
|
2022-09-07 20:29:15 +00:00
|
|
|
[A]
|
2021-01-24 19:02:43 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2023-01-03 16:49:43 +00:00
|
|
|
-h, --help Print help
|
2021-09-24 15:58:39 +00:00
|
|
|
";
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("prog")
|
2021-01-24 19:02:43 +00:00
|
|
|
.arg(Arg::new("a").value_name("A"))
|
|
|
|
.group(ArgGroup::new("group").arg("a").required(true));
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "prog --help", GROUP_USAGE_USE_VAL_NAME, false);
|
2021-01-24 19:02:43 +00:00
|
|
|
}
|
|
|
|
|
2019-04-05 02:06:23 +00:00
|
|
|
#[test]
|
|
|
|
fn group_acts_like_arg() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let result = Command::new("prog")
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("debug")
|
|
|
|
.long("debug")
|
|
|
|
.group("mode")
|
|
|
|
.action(ArgAction::SetTrue),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::new("verbose")
|
|
|
|
.long("verbose")
|
|
|
|
.group("mode")
|
|
|
|
.action(ArgAction::SetTrue),
|
|
|
|
)
|
2021-10-25 17:36:01 +00:00
|
|
|
.try_get_matches_from(vec!["prog", "--debug"]);
|
|
|
|
|
2021-12-27 19:57:38 +00:00
|
|
|
assert!(result.is_ok(), "{}", result.unwrap_err());
|
2021-10-25 17:36:01 +00:00
|
|
|
let m = result.unwrap();
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(m.contains_id("mode"));
|
2022-09-29 21:53:52 +00:00
|
|
|
assert_eq!(m.get_one::<clap::Id>("mode").unwrap(), "debug");
|
2019-04-05 19:51:22 +00:00
|
|
|
}
|
2020-04-23 17:19:11 +00:00
|
|
|
|
2022-09-30 00:34:11 +00:00
|
|
|
#[test]
|
2022-09-30 15:38:24 +00:00
|
|
|
fn conflict_with_overlapping_group_in_error() {
|
2022-09-30 00:34:11 +00:00
|
|
|
static ERR: &str = "\
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the argument '--major' cannot be used with '--minor'
|
2022-09-30 00:34:11 +00:00
|
|
|
|
2022-09-30 15:38:24 +00:00
|
|
|
Usage: prog --major
|
2022-09-30 00:34:11 +00:00
|
|
|
|
2023-01-03 19:22:35 +00:00
|
|
|
For more information, try '--help'.
|
2022-09-30 00:34:11 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
let cmd = Command::new("prog")
|
|
|
|
.group(ArgGroup::new("all").multiple(true))
|
|
|
|
.arg(arg!(--major).group("vers").group("all"))
|
|
|
|
.arg(arg!(--minor).group("vers").group("all"))
|
|
|
|
.arg(arg!(--other).group("all"));
|
|
|
|
|
|
|
|
utils::assert_output(cmd, "prog --major --minor", ERR, true);
|
|
|
|
}
|
|
|
|
|
2022-09-30 16:02:44 +00:00
|
|
|
#[test]
|
|
|
|
fn requires_group_with_overlapping_group_in_error() {
|
|
|
|
static ERR: &str = "\
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the following required arguments were not provided:
|
2022-09-30 16:02:44 +00:00
|
|
|
<--in|--spec>
|
|
|
|
|
2022-09-30 16:18:47 +00:00
|
|
|
Usage: prog --config <--in|--spec>
|
2022-09-30 16:02:44 +00:00
|
|
|
|
2023-01-03 19:22:35 +00:00
|
|
|
For more information, try '--help'.
|
2022-09-30 16:02:44 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
let cmd = Command::new("prog")
|
|
|
|
.group(ArgGroup::new("all").multiple(true))
|
|
|
|
.group(ArgGroup::new("input").required(true))
|
|
|
|
.arg(arg!(--in).group("input").group("all"))
|
|
|
|
.arg(arg!(--spec).group("input").group("all"))
|
|
|
|
.arg(arg!(--config).requires("input").group("all"));
|
|
|
|
|
|
|
|
utils::assert_output(cmd, "prog --config", ERR, true);
|
|
|
|
}
|
|
|
|
|
2020-12-08 16:56:35 +00:00
|
|
|
/* This is used to be fixed in a hack, we need to find a better way to fix it.
|
2020-04-23 17:19:11 +00:00
|
|
|
#[test]
|
|
|
|
fn issue_1794() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = clap::Command::new("hello")
|
2020-04-23 17:19:11 +00:00
|
|
|
.bin_name("deno")
|
2022-07-29 21:36:03 +00:00
|
|
|
.arg(Arg::new("option1").long("option1").action(ArgAction::SetTrue))
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(Arg::new("pos1").action(ArgAction::Set))
|
|
|
|
.arg(Arg::new("pos2").action(ArgAction::Set))
|
2020-04-23 17:19:11 +00:00
|
|
|
.group(
|
2020-05-14 20:50:56 +00:00
|
|
|
ArgGroup::new("arg1")
|
2022-08-12 17:40:58 +00:00
|
|
|
.args(["pos1", "option1"])
|
2020-04-23 17:19:11 +00:00
|
|
|
.required(true),
|
|
|
|
);
|
|
|
|
|
2022-11-24 13:54:25 +00:00
|
|
|
let m = cmd.clone().try_get_matches_from(["cmd", "pos1", "pos2"]).unwrap();
|
2022-05-24 15:16:50 +00:00
|
|
|
assert_eq!(m.get_one::<String>("pos1").map(|v| v.as_str()), Some("pos1"));
|
|
|
|
assert_eq!(m.get_one::<String>("pos2").map(|v| v.as_str()), Some("pos2"));
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(!*m.get_one::<bool>("option1").expect("defaulted by clap"));
|
2020-04-23 17:19:11 +00:00
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
let m = cmd
|
2020-04-23 17:19:11 +00:00
|
|
|
.clone()
|
2022-11-24 13:54:25 +00:00
|
|
|
.try_get_matches_from(["cmd", "--option1", "positional"]).unwrap();
|
2022-05-24 15:16:50 +00:00
|
|
|
assert_eq!(m.get_one::<String>("pos1").map(|v| v.as_str()), None);
|
|
|
|
assert_eq!(m.get_one::<String>("pos2").map(|v| v.as_str()), Some("positional"));
|
2022-06-10 01:03:28 +00:00
|
|
|
assert!(*m.get_one::<bool>("option1").expect("defaulted by clap"));
|
2020-04-23 17:19:11 +00:00
|
|
|
}
|
2020-12-08 16:56:35 +00:00
|
|
|
*/
|