1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#[cfg(not(google3))]
use crate as googletest;
use googletest::matcher::{Matcher, MatcherResult};
use regex::Regex;
use std::fmt::Debug;
use std::ops::Deref;
pub fn contains_regex<PatternT: Deref<Target = str>>(pattern: PatternT) -> ContainsRegexMatcher {
ContainsRegexMatcher { regex: Regex::new(pattern.deref()).unwrap() }
}
pub struct ContainsRegexMatcher {
regex: Regex,
}
impl<ActualT: AsRef<str> + Debug + ?Sized> Matcher<ActualT> for ContainsRegexMatcher {
fn matches(&self, actual: &ActualT) -> MatcherResult {
if self.regex.is_match(actual.as_ref()) {
MatcherResult::Matches
} else {
MatcherResult::DoesNotMatch
}
}
fn describe(&self, matcher_result: MatcherResult) -> String {
match matcher_result {
MatcherResult::Matches => {
format!("contains the regular expression {:#?}", self.regex.as_str())
}
MatcherResult::DoesNotMatch => {
format!("doesn't contain the regular expression {:#?}", self.regex.as_str())
}
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[cfg(not(google3))]
use crate as googletest;
#[cfg(not(google3))]
use googletest::matchers;
use googletest::{google_test, matcher::Matcher, verify_that, Result};
use matchers::eq;
#[google_test]
fn contains_regex_matches_string_reference_with_pattern() -> Result<()> {
let matcher = contains_regex("S.*val");
let result = matcher.matches("Some value");
verify_that!(result, eq(MatcherResult::Matches))
}
#[google_test]
fn contains_regex_does_not_match_string_without_pattern() -> Result<()> {
let matcher = contains_regex("Another");
let result = matcher.matches("Some value");
verify_that!(result, eq(MatcherResult::DoesNotMatch))
}
#[google_test]
fn contains_regex_matches_owned_string_with_pattern() -> Result<()> {
let matcher = contains_regex("value");
let result = matcher.matches(&"Some value".to_string());
verify_that!(result, eq(MatcherResult::Matches))
}
#[google_test]
fn contains_regex_matches_string_reference_with_owned_string() -> Result<()> {
let matcher = contains_regex("value".to_string());
let result = matcher.matches("Some value");
verify_that!(result, eq(MatcherResult::Matches))
}
#[google_test]
fn verify_that_works_with_owned_string() -> Result<()> {
verify_that!("Some value".to_string(), contains_regex("value"))
}
#[google_test]
fn contains_regex_displays_quoted_debug_of_pattern() -> Result<()> {
let matcher = contains_regex("\n");
verify_that!(
<ContainsRegexMatcher as Matcher<&str>>::describe(&matcher, MatcherResult::Matches),
eq("contains the regular expression \"\\n\"")
)
}
}