mirror of
https://github.com/clap-rs/clap
synced 2024-11-12 23:57:10 +00:00
36 lines
966 B
Rust
36 lines
966 B
Rust
#![cfg(feature = "regex")]
|
|
|
|
use clap::{error::ErrorKind, App, Arg};
|
|
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)
|
|
}
|