clap/tests/conflicts.rs

130 lines
3.9 KiB
Rust
Raw Normal View History

2020-02-04 08:10:53 +00:00
mod utils;
2018-01-25 04:05:05 +00:00
use clap::{App, Arg, ArgGroup, ErrorKind};
static CONFLICT_ERR: &str = "error: The argument '-F' cannot be used with '--flag'
USAGE:
clap-test <positional> <positional2> --flag --long-option-2 <option2>
For more information try --help";
static CONFLICT_ERR_REV: &str = "error: The argument '--flag' cannot be used with '-F'
USAGE:
clap-test <positional> <positional2> -F --long-option-2 <option2>
For more information try --help";
#[test]
fn flag_conflict() {
let result = App::new("flag_conflict")
2018-04-21 18:59:19 +00:00
.arg(Arg::from("-f, --flag 'some flag'").conflicts_with("other"))
.arg(Arg::from("-o, --other 'some flag'"))
.try_get_matches_from(vec!["myprog", "-f", "-o"]);
assert!(result.is_err());
2015-10-01 01:45:35 +00:00
let err = result.err().unwrap();
assert_eq!(err.kind, ErrorKind::ArgumentConflict);
}
#[test]
fn flag_conflict_2() {
let result = App::new("flag_conflict")
2018-04-21 18:59:19 +00:00
.arg(Arg::from("-f, --flag 'some flag'").conflicts_with("other"))
.arg(Arg::from("-o, --other 'some flag'"))
.try_get_matches_from(vec!["myprog", "-o", "-f"]);
assert!(result.is_err());
2015-10-01 01:45:35 +00:00
let err = result.err().unwrap();
assert_eq!(err.kind, ErrorKind::ArgumentConflict);
}
#[test]
fn flag_conflict_with_all() {
let result = App::new("flag_conflict")
.arg(Arg::from("-f, --flag 'some flag'").conflicts_with_all(&["other"]))
.arg(Arg::from("-o, --other 'some flag'"))
.try_get_matches_from(vec!["myprog", "-o", "-f"]);
assert!(result.is_err());
let err = result.err().unwrap();
assert_eq!(err.kind, ErrorKind::ArgumentConflict);
}
#[test]
fn flag_conflict_with_everything() {
let result = App::new("flag_conflict")
.arg(Arg::from("-f, --flag 'some flag'").exclusive(true))
.arg(Arg::from("-o, --other 'some flag'"))
.try_get_matches_from(vec!["myprog", "-o", "-f"]);
assert!(result.is_err());
let err = result.err().unwrap();
assert_eq!(err.kind, ErrorKind::ArgumentConflict);
}
#[test]
fn group_conflict() {
let result = App::new("group_conflict")
2018-04-21 18:59:19 +00:00
.arg(Arg::from("-f, --flag 'some flag'").conflicts_with("gr"))
2018-01-25 04:05:05 +00:00
.group(
ArgGroup::with_name("gr")
.required(true)
.arg("some")
.arg("other"),
)
2018-04-21 18:59:19 +00:00
.arg(Arg::from("--some 'some arg'"))
.arg(Arg::from("--other 'other arg'"))
.try_get_matches_from(vec!["myprog", "--other", "-f"]);
assert!(result.is_err());
let err = result.err().unwrap();
assert_eq!(err.kind, ErrorKind::ArgumentConflict);
}
#[test]
fn group_conflict_2() {
let result = App::new("group_conflict")
2018-04-21 18:59:19 +00:00
.arg(Arg::from("-f, --flag 'some flag'").conflicts_with("gr"))
2018-01-25 04:05:05 +00:00
.group(
ArgGroup::with_name("gr")
.required(true)
.arg("some")
.arg("other"),
)
2018-04-21 18:59:19 +00:00
.arg(Arg::from("--some 'some arg'"))
.arg(Arg::from("--other 'other arg'"))
.try_get_matches_from(vec!["myprog", "-f", "--some"]);
assert!(result.is_err());
let err = result.err().unwrap();
assert_eq!(err.kind, ErrorKind::ArgumentConflict);
}
#[test]
fn conflict_output() {
2020-02-04 08:10:53 +00:00
utils::compare_output(
utils::complex_app(),
2018-01-25 04:05:05 +00:00
"clap-test val1 --flag --long-option-2 val2 -F",
CONFLICT_ERR,
true,
);
}
#[test]
fn conflict_output_rev() {
2020-02-04 08:10:53 +00:00
utils::compare_output(
utils::complex_app(),
2018-01-25 04:05:05 +00:00
"clap-test val1 -F --long-option-2 val2 --flag",
CONFLICT_ERR_REV,
true,
);
}
#[test]
fn conflict_with_unused_default_value() {
let result = App::new("conflict")
2018-04-21 18:59:19 +00:00
.arg(Arg::from("-o, --opt=[opt] 'some opt'").default_value("default"))
.arg(Arg::from("-f, --flag 'some flag'").conflicts_with("opt"))
.try_get_matches_from(vec!["myprog", "-f"]);
assert!(result.is_ok());
let m = result.unwrap();
assert_eq!(m.value_of("opt"), Some("default"));
assert!(m.is_present("flag"));
}