2015-08-27 21:03:45 +00:00
|
|
|
extern crate clap;
|
|
|
|
|
2016-01-25 20:56:37 +00:00
|
|
|
use clap::{App, Arg, ArgSettings};
|
2015-08-27 21:03:45 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn flag_using_short() {
|
|
|
|
let m = App::new("flag")
|
2016-01-21 06:48:30 +00:00
|
|
|
.args(&[
|
2015-08-27 21:03:45 +00:00
|
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
2018-01-25 04:05:05 +00:00
|
|
|
Arg::from_usage("-c, --color 'some other flag'"),
|
|
|
|
])
|
2016-01-25 20:56:37 +00:00
|
|
|
.get_matches_from(vec!["", "-f", "-c"]);
|
2015-08-27 21:03:45 +00:00
|
|
|
assert!(m.is_present("flag"));
|
|
|
|
assert!(m.is_present("color"));
|
|
|
|
}
|
|
|
|
|
2016-02-02 12:43:53 +00:00
|
|
|
#[test]
|
|
|
|
fn lots_o_flags_sep() {
|
|
|
|
let r = App::new("opts")
|
2018-01-25 04:05:05 +00:00
|
|
|
.arg(Arg::from_usage("-o... 'some flag'"))
|
|
|
|
.get_matches_from_safe(vec![
|
|
|
|
"", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o", "-o",
|
|
|
|
"-o", "-o", "-o",
|
|
|
|
]);
|
2018-01-31 20:15:01 +00:00
|
|
|
assert!(r.is_ok(), "{:?}", r.unwrap_err().kind);
|
2016-02-02 12:43:53 +00:00
|
|
|
let m = r.unwrap();
|
|
|
|
assert!(m.is_present("o"));
|
|
|
|
assert_eq!(m.occurrences_of("o"), 297); // i.e. more than u8
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn lots_o_flags_combined() {
|
|
|
|
let r = App::new("opts")
|
2018-01-25 04:05:05 +00:00
|
|
|
.arg(Arg::from_usage("-o... 'some flag'"))
|
|
|
|
.get_matches_from_safe(vec![
|
|
|
|
"",
|
2016-02-02 12:43:53 +00:00
|
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
|
|
"-ooooooooooooooooooooooooooooooooooooooooo",
|
2018-01-25 04:05:05 +00:00
|
|
|
]);
|
2018-01-31 20:15:01 +00:00
|
|
|
assert!(r.is_ok(), "{:?}", r.unwrap_err().kind);
|
2016-02-02 12:43:53 +00:00
|
|
|
let m = r.unwrap();
|
|
|
|
assert!(m.is_present("o"));
|
|
|
|
assert_eq!(m.occurrences_of("o"), 297); // i.e. more than u8
|
|
|
|
}
|
|
|
|
|
2015-08-27 21:03:45 +00:00
|
|
|
#[test]
|
|
|
|
fn flag_using_long() {
|
|
|
|
let m = App::new("flag")
|
2016-01-21 06:48:30 +00:00
|
|
|
.args(&[
|
2015-08-27 21:03:45 +00:00
|
|
|
Arg::from_usage("--flag 'some flag'"),
|
2018-01-25 04:05:05 +00:00
|
|
|
Arg::from_usage("--color 'some other flag'"),
|
|
|
|
])
|
2016-01-25 20:56:37 +00:00
|
|
|
.get_matches_from(vec!["", "--flag", "--color"]);
|
2015-08-27 21:03:45 +00:00
|
|
|
assert!(m.is_present("flag"));
|
|
|
|
assert!(m.is_present("color"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn flag_using_mixed() {
|
|
|
|
let m = App::new("flag")
|
2016-01-21 06:48:30 +00:00
|
|
|
.args(&[
|
2015-08-27 21:03:45 +00:00
|
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
2018-01-25 04:05:05 +00:00
|
|
|
Arg::from_usage("-c, --color 'some other flag'"),
|
|
|
|
])
|
2016-01-25 20:56:37 +00:00
|
|
|
.get_matches_from(vec!["", "-f", "--color"]);
|
2015-08-27 21:03:45 +00:00
|
|
|
assert!(m.is_present("flag"));
|
|
|
|
assert!(m.is_present("color"));
|
|
|
|
|
|
|
|
let m = App::new("flag")
|
2016-01-21 06:48:30 +00:00
|
|
|
.args(&[
|
2015-08-27 21:03:45 +00:00
|
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
2018-01-25 04:05:05 +00:00
|
|
|
Arg::from_usage("-c, --color 'some other flag'"),
|
|
|
|
])
|
2016-01-25 20:56:37 +00:00
|
|
|
.get_matches_from(vec!["", "--flag", "-c"]);
|
2015-08-27 21:03:45 +00:00
|
|
|
assert!(m.is_present("flag"));
|
|
|
|
assert!(m.is_present("color"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn multiple_flags_in_single() {
|
|
|
|
let m = App::new("multe_flags")
|
2016-01-21 06:48:30 +00:00
|
|
|
.args(&[
|
2015-08-27 21:03:45 +00:00
|
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
|
|
|
Arg::from_usage("-c, --color 'some other flag'"),
|
2018-01-25 04:05:05 +00:00
|
|
|
Arg::from_usage("-d, --debug 'another other flag'"),
|
|
|
|
])
|
2016-01-25 20:56:37 +00:00
|
|
|
.get_matches_from(vec!["", "-fcd"]);
|
2015-08-27 21:03:45 +00:00
|
|
|
assert!(m.is_present("flag"));
|
|
|
|
assert!(m.is_present("color"));
|
|
|
|
assert!(m.is_present("debug"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn short_flag_misspel() {
|
2016-01-25 20:56:37 +00:00
|
|
|
let a = Arg::from_usage("-f1, --flag 'some flag'");
|
2018-01-25 02:08:14 +00:00
|
|
|
assert_eq!(a.name, "flag");
|
|
|
|
assert_eq!(a.short.unwrap(), 'f');
|
|
|
|
assert_eq!(a.long.unwrap(), "flag");
|
|
|
|
assert_eq!(a.help.unwrap(), "some flag");
|
2018-01-31 20:15:01 +00:00
|
|
|
assert!(!a.is_set(ArgSettings::MultipleOccurrences));
|
2018-01-25 02:08:14 +00:00
|
|
|
assert!(a.val_names.is_none());
|
|
|
|
assert!(a.num_vals.is_none());
|
2015-08-27 21:03:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn short_flag_name_missing() {
|
2016-01-25 20:56:37 +00:00
|
|
|
let a = Arg::from_usage("-f 'some flag'");
|
2018-01-25 02:08:14 +00:00
|
|
|
assert_eq!(a.name, "f");
|
|
|
|
assert_eq!(a.short.unwrap(), 'f');
|
|
|
|
assert!(a.long.is_none());
|
|
|
|
assert_eq!(a.help.unwrap(), "some flag");
|
2018-01-31 20:15:01 +00:00
|
|
|
assert!(!a.is_set(ArgSettings::MultipleOccurrences));
|
2018-01-25 02:08:14 +00:00
|
|
|
assert!(a.val_names.is_none());
|
|
|
|
assert!(a.num_vals.is_none());
|
2016-01-25 20:56:37 +00:00
|
|
|
}
|