2022-08-31 13:24:45 +00:00
|
|
|
#![allow(unused, clippy::needless_borrow)]
|
2020-07-14 12:59:59 +00:00
|
|
|
#![warn(clippy::invalid_regex, clippy::trivial_regex)]
|
2016-02-04 23:36:06 +00:00
|
|
|
|
|
|
|
extern crate regex;
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
use regex::bytes::{Regex as BRegex, RegexBuilder as BRegexBuilder, RegexSet as BRegexSet};
|
|
|
|
use regex::{Regex, RegexBuilder, RegexSet};
|
2016-02-04 23:36:06 +00:00
|
|
|
|
2017-10-20 13:51:35 +00:00
|
|
|
const OPENING_PAREN: &str = "(";
|
|
|
|
const NOT_A_REAL_REGEX: &str = "foobar";
|
2016-02-05 15:48:35 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
fn syntax_error() {
|
2016-02-04 23:36:06 +00:00
|
|
|
let pipe_in_wrong_position = Regex::new("|");
|
2016-05-25 19:36:51 +00:00
|
|
|
let pipe_in_wrong_position_builder = RegexBuilder::new("|");
|
2016-02-05 20:54:29 +00:00
|
|
|
let wrong_char_ranice = Regex::new("[z-a]");
|
2016-05-07 22:56:23 +00:00
|
|
|
let some_unicode = Regex::new("[é-è]");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 15:48:35 +00:00
|
|
|
let some_regex = Regex::new(OPENING_PAREN);
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-05-25 15:15:19 +00:00
|
|
|
let binary_pipe_in_wrong_position = BRegex::new("|");
|
|
|
|
let some_binary_regex = BRegex::new(OPENING_PAREN);
|
2016-05-25 19:36:51 +00:00
|
|
|
let some_binary_regex_builder = BRegexBuilder::new(OPENING_PAREN);
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 15:48:35 +00:00
|
|
|
let closing_paren = ")";
|
|
|
|
let not_linted = Regex::new(closing_paren);
|
2016-05-25 15:15:19 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
let set = RegexSet::new(&[r"[a-z]+@[a-z]+\.(com|org|net)", r"[a-z]+\.(com|org|net)"]);
|
2016-05-25 15:15:19 +00:00
|
|
|
let bset = BRegexSet::new(&[
|
|
|
|
r"[a-z]+@[a-z]+\.(com|org|net)",
|
|
|
|
r"[a-z]+\.(com|org|net)",
|
2018-04-07 20:18:51 +00:00
|
|
|
r".", // regression test
|
2016-05-25 15:15:19 +00:00
|
|
|
]);
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
let set_error = RegexSet::new(&[OPENING_PAREN, r"[a-z]+\.(com|org|net)"]);
|
|
|
|
let bset_error = BRegexSet::new(&[OPENING_PAREN, r"[a-z]+\.(com|org|net)"]);
|
2018-01-23 15:52:14 +00:00
|
|
|
|
|
|
|
let raw_string_error = Regex::new(r"[...\/...]");
|
|
|
|
let raw_string_error = Regex::new(r#"[...\/...]"#);
|
2016-02-04 23:36:06 +00:00
|
|
|
}
|
2016-02-05 22:10:48 +00:00
|
|
|
|
|
|
|
fn trivial_regex() {
|
|
|
|
let trivial_eq = Regex::new("^foobar$");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-05-25 19:36:51 +00:00
|
|
|
let trivial_eq_builder = RegexBuilder::new("^foobar$");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
let trivial_starts_with = Regex::new("^foobar");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
let trivial_ends_with = Regex::new("foobar$");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
let trivial_contains = Regex::new("foobar");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
let trivial_contains = Regex::new(NOT_A_REAL_REGEX);
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-06 17:06:39 +00:00
|
|
|
let trivial_backslash = Regex::new("a\\.b");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
// unlikely corner cases
|
|
|
|
let trivial_empty = Regex::new("");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-06 17:06:39 +00:00
|
|
|
let trivial_empty = Regex::new("^");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
let trivial_empty = Regex::new("^$");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-05-25 15:15:19 +00:00
|
|
|
let binary_trivial_empty = BRegex::new("^$");
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-05 22:10:48 +00:00
|
|
|
// non-trivial regexes
|
2016-02-06 17:06:39 +00:00
|
|
|
let non_trivial_dot = Regex::new("a.b");
|
2016-05-25 19:36:51 +00:00
|
|
|
let non_trivial_dot_builder = RegexBuilder::new("a.b");
|
2016-02-05 22:10:48 +00:00
|
|
|
let non_trivial_eq = Regex::new("^foo|bar$");
|
|
|
|
let non_trivial_starts_with = Regex::new("^foo|bar");
|
|
|
|
let non_trivial_ends_with = Regex::new("^foo|bar");
|
|
|
|
let non_trivial_ends_with = Regex::new("foo|bar");
|
2016-05-25 15:15:19 +00:00
|
|
|
let non_trivial_binary = BRegex::new("foo|bar");
|
2016-05-25 19:36:51 +00:00
|
|
|
let non_trivial_binary_builder = BRegexBuilder::new("foo|bar");
|
2020-10-09 10:45:29 +00:00
|
|
|
|
|
|
|
// #6005: unicode classes in bytes::Regex
|
|
|
|
let a_byte_of_unicode = BRegex::new(r"\p{C}");
|
2016-02-05 22:10:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
syntax_error();
|
|
|
|
trivial_regex();
|
|
|
|
}
|