mirror of
https://github.com/clap-rs/clap
synced 2024-11-14 00:27:13 +00:00
135 lines
3.7 KiB
Rust
135 lines
3.7 KiB
Rust
extern crate clap;
|
|
|
|
use clap::{App, Arg, ErrorKind};
|
|
|
|
#[test]
|
|
fn possible_values_of_positional() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("positional")
|
|
.index(1)
|
|
.possible_value("test123"))
|
|
.get_matches_from_safe(vec!["myprog", "test123"]);
|
|
|
|
assert!(m.is_ok());
|
|
let m = m.unwrap();
|
|
|
|
assert!(m.is_present("positional"));
|
|
assert_eq!(m.value_of("positional"), Some("test123"));
|
|
}
|
|
|
|
#[test]
|
|
fn possible_values_of_positional_fail() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("positional")
|
|
.index(1)
|
|
.possible_value("test123"))
|
|
.get_matches_from_safe(vec!["myprog", "notest"]);
|
|
|
|
assert!(m.is_err());
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::InvalidValue);
|
|
}
|
|
|
|
#[test]
|
|
fn possible_values_of_positional_multiple() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("positional")
|
|
.index(1)
|
|
.possible_value("test123")
|
|
.possible_value("test321")
|
|
.multiple(true))
|
|
.get_matches_from_safe(vec!["myprog", "test123", "test321"]);
|
|
|
|
assert!(m.is_ok());
|
|
let m = m.unwrap();
|
|
|
|
assert!(m.is_present("positional"));
|
|
assert_eq!(m.values_of("positional").unwrap().collect::<Vec<_>>(), vec!["test123", "test321"]);
|
|
}
|
|
|
|
#[test]
|
|
fn possible_values_of_positional_multiple_fail() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("positional")
|
|
.index(1)
|
|
.possible_value("test123")
|
|
.possible_value("test321")
|
|
.multiple(true))
|
|
.get_matches_from_safe(vec!["myprog", "test123", "notest"]);
|
|
|
|
assert!(m.is_err());
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::InvalidValue);
|
|
}
|
|
|
|
#[test]
|
|
fn possible_values_of_option() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("option")
|
|
.short("-o")
|
|
.long("--option")
|
|
.takes_value(true)
|
|
.possible_value("test123"))
|
|
.get_matches_from_safe(vec!["myprog", "--option", "test123"]);
|
|
|
|
assert!(m.is_ok());
|
|
let m = m.unwrap();
|
|
|
|
assert!(m.is_present("option"));
|
|
assert_eq!(m.value_of("option"), Some("test123"));
|
|
}
|
|
|
|
#[test]
|
|
fn possible_values_of_option_fail() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("option")
|
|
.short("-o")
|
|
.long("--option")
|
|
.takes_value(true)
|
|
.possible_value("test123"))
|
|
.get_matches_from_safe(vec!["myprog", "--option", "notest"]);
|
|
|
|
assert!(m.is_err());
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::InvalidValue);
|
|
}
|
|
|
|
#[test]
|
|
fn possible_values_of_option_multiple() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("option")
|
|
.short("-o")
|
|
.long("--option")
|
|
.takes_value(true)
|
|
.possible_value("test123")
|
|
.possible_value("test321")
|
|
.multiple(true))
|
|
.get_matches_from_safe(vec![
|
|
"",
|
|
"--option", "test123",
|
|
"--option", "test321",
|
|
]);
|
|
|
|
assert!(m.is_ok());
|
|
let m = m.unwrap();
|
|
|
|
assert!(m.is_present("option"));
|
|
assert_eq!(m.values_of("option").unwrap().collect::<Vec<_>>(), vec!["test123", "test321"]);
|
|
}
|
|
|
|
#[test]
|
|
fn possible_values_of_option_multiple_fail() {
|
|
let m = App::new("possible_values")
|
|
.arg(Arg::with_name("option")
|
|
.short("-o")
|
|
.long("--option")
|
|
.takes_value(true)
|
|
.possible_value("test123")
|
|
.possible_value("test321")
|
|
.multiple(true))
|
|
.get_matches_from_safe(vec![
|
|
"",
|
|
"--option", "test123",
|
|
"--option", "notest",
|
|
]);
|
|
|
|
assert!(m.is_err());
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::InvalidValue);
|
|
}
|