2021-10-16 21:05:42 +00:00
|
|
|
#![cfg(feature = "regex")]
|
|
|
|
|
2022-02-02 21:41:24 +00:00
|
|
|
use clap::{error::ErrorKind, App, Arg};
|
2021-10-16 21:05:42 +00:00
|
|
|
use regex::{Regex, RegexSet};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn validator_regex() {
|
|
|
|
let priority = Regex::new(r"[A-C]").unwrap();
|
|
|
|
|
|
|
|
let m = App::new("prog")
|
|
|
|
.arg(
|
|
|
|
Arg::new("priority")
|
|
|
|
.index(1)
|
|
|
|
.validator_regex(priority, "A, B or C are allowed"),
|
|
|
|
)
|
|
|
|
.try_get_matches_from(vec!["prog", "12345"]);
|
|
|
|
|
|
|
|
assert!(m.is_err());
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(m.err().unwrap().kind(), ErrorKind::ValueValidation)
|
2021-10-16 21:05:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn validator_regex_with_regex_set() {
|
|
|
|
let priority = RegexSet::new(&[r"[A-C]", r"[X-Z]"]).unwrap();
|
|
|
|
|
|
|
|
let m = App::new("prog")
|
|
|
|
.arg(
|
|
|
|
Arg::new("priority")
|
|
|
|
.index(1)
|
|
|
|
.validator_regex(priority, "A, B, C, X, Y or Z are allowed"),
|
|
|
|
)
|
|
|
|
.try_get_matches_from(vec!["prog", "12345"]);
|
|
|
|
|
|
|
|
assert!(m.is_err());
|
2022-01-25 22:19:28 +00:00
|
|
|
assert_eq!(m.err().unwrap().kind(), ErrorKind::ValueValidation)
|
2021-10-16 21:05:42 +00:00
|
|
|
}
|