mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 23:04:23 +00:00
147 lines
5.6 KiB
Rust
147 lines
5.6 KiB
Rust
extern crate clap;
|
|
|
|
use clap::{App, Arg, ArgSettings};
|
|
|
|
#[test]
|
|
fn flag_using_short() {
|
|
let m = App::new("flag")
|
|
.args(&[
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
|
Arg::from_usage("-c, --color 'some other flag'")
|
|
])
|
|
.get_matches_from(vec!["", "-f", "-c"]);
|
|
assert!(m.is_present("flag"));
|
|
assert!(m.is_present("color"));
|
|
}
|
|
|
|
#[test]
|
|
fn lots_o_flags_sep() {
|
|
let r = App::new("opts")
|
|
.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",
|
|
]);
|
|
assert!(r.is_ok());
|
|
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")
|
|
.arg(
|
|
Arg::from_usage("-o... 'some flag'"),
|
|
)
|
|
.get_matches_from_safe(vec!["",
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
"-oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
|
"-ooooooooooooooooooooooooooooooooooooooooo",
|
|
]);
|
|
assert!(r.is_ok());
|
|
let m = r.unwrap();
|
|
assert!(m.is_present("o"));
|
|
assert_eq!(m.occurrences_of("o"), 297); // i.e. more than u8
|
|
}
|
|
|
|
#[test]
|
|
fn flag_using_long() {
|
|
let m = App::new("flag")
|
|
.args(&[
|
|
Arg::from_usage("--flag 'some flag'"),
|
|
Arg::from_usage("--color 'some other flag'")
|
|
])
|
|
.get_matches_from(vec!["", "--flag", "--color"]);
|
|
assert!(m.is_present("flag"));
|
|
assert!(m.is_present("color"));
|
|
}
|
|
|
|
#[test]
|
|
fn flag_using_mixed() {
|
|
let m = App::new("flag")
|
|
.args(&[
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
|
Arg::from_usage("-c, --color 'some other flag'")
|
|
])
|
|
.get_matches_from(vec!["", "-f", "--color"]);
|
|
assert!(m.is_present("flag"));
|
|
assert!(m.is_present("color"));
|
|
|
|
let m = App::new("flag")
|
|
.args(&[
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
|
Arg::from_usage("-c, --color 'some other flag'")
|
|
])
|
|
.get_matches_from(vec!["", "--flag", "-c"]);
|
|
assert!(m.is_present("flag"));
|
|
assert!(m.is_present("color"));
|
|
}
|
|
|
|
#[test]
|
|
fn multiple_flags_in_single() {
|
|
let m = App::new("multe_flags")
|
|
.args(&[
|
|
Arg::from_usage("-f, --flag 'some flag'"),
|
|
Arg::from_usage("-c, --color 'some other flag'"),
|
|
Arg::from_usage("-d, --debug 'another other flag'")
|
|
])
|
|
.get_matches_from(vec!["", "-fcd"]);
|
|
assert!(m.is_present("flag"));
|
|
assert!(m.is_present("color"));
|
|
assert!(m.is_present("debug"));
|
|
}
|
|
|
|
#[test]
|
|
fn short_flag_misspel() {
|
|
let a = Arg::from_usage("-f1, --flag 'some flag'");
|
|
assert_eq!(a.b.name, "flag");
|
|
assert_eq!(a.s.short.unwrap(), 'f');
|
|
assert_eq!(a.s.long.unwrap(), "flag");
|
|
assert_eq!(a.b.help.unwrap(), "some flag");
|
|
assert!(!a.is_set(ArgSettings::Multiple));
|
|
assert!(a.v.val_names.is_none());
|
|
assert!(a.v.num_vals.is_none());
|
|
}
|
|
|
|
#[test]
|
|
fn short_flag_name_missing() {
|
|
let a = Arg::from_usage("-f 'some flag'");
|
|
assert_eq!(a.b.name, "f");
|
|
assert_eq!(a.s.short.unwrap(), 'f');
|
|
assert!(a.s.long.is_none());
|
|
assert_eq!(a.b.help.unwrap(), "some flag");
|
|
assert!(!a.is_set(ArgSettings::Multiple));
|
|
assert!(a.v.val_names.is_none());
|
|
assert!(a.v.num_vals.is_none());
|
|
|
|
}
|