mirror of
https://github.com/clap-rs/clap
synced 2024-11-11 15:17:10 +00:00
36 lines
955 B
Rust
36 lines
955 B
Rust
#![cfg(feature = "regex")]
|
|
|
|
use clap::{App, Arg, ErrorKind};
|
|
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());
|
|
assert_eq!(m.err().unwrap().kind, ErrorKind::ValueValidation)
|
|
}
|
|
|
|
#[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());
|
|
assert_eq!(m.err().unwrap().kind, ErrorKind::ValueValidation)
|
|
}
|