Skip to content

Commit 699d288

Browse files
committed
Add str::contains_all function
1 parent 2203420 commit 699d288

File tree

4 files changed

+67
-1
lines changed

4 files changed

+67
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
### Added
11+
12+
- Add `str::contains_all` function
13+
1014
## [3.0.3] - 2023-04-13
1115

1216
### Internal

src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@
143143
//! - [`predicate::str::ends_with`]: Specified string must end with the given needle.
144144
//! - [`predicate::str::contains`]: Specified string must contain the given needle.
145145
//! - [`predicate::str::contains(...).count`]: Required number of times the needle must show up.
146+
//! - [`predicate::str::contains_all`]: Specified string must contain all given needles.
146147
//! - [`predicate::str::is_match`]: Specified string must match the given regex.
147148
//! - [`predicate::str::is_match(...).count`]: Required number of times the match must show up.
148149
//! - [`str_pred.trim`]: Trim whitespace before passing it to `str_pred`.
@@ -188,6 +189,7 @@
188189
//! [`predicate::path::missing`]: prelude::predicate::path::missing()
189190
//! [`predicate::str::contains(...).count`]: str::ContainsPredicate::count()
190191
//! [`predicate::str::contains`]: prelude::predicate::str::contains()
192+
//! [`predicate::str::contains_all`]: prelude::predicate::str::contains_all()
191193
//! [`predicate::str::diff`]: prelude::predicate::str::diff()
192194
//! [`predicate::str::ends_with`]: prelude::predicate::str::ends_with()
193195
//! [`predicate::str::is_empty`]: prelude::predicate::str::is_empty()

src/prelude.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub mod predicate {
2828
/// This module contains predicates specific to string handling.
2929
pub mod str {
3030
pub use crate::str::is_empty;
31-
pub use crate::str::{contains, ends_with, starts_with};
31+
pub use crate::str::{contains, contains_all, ends_with, starts_with};
3232

3333
#[cfg(feature = "diff")]
3434
pub use crate::str::diff;

src/str/basics.rs

+60
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,63 @@ where
288288
pattern: pattern.into(),
289289
}
290290
}
291+
292+
/// Predicate that checks for all patterns.
293+
///
294+
/// This is created by `predicates::str:contains_all`.
295+
#[derive(Debug, Clone, PartialEq, Eq)]
296+
pub struct ContainsAllPredicate {
297+
patterns: Vec<String>,
298+
}
299+
300+
impl Predicate<str> for ContainsAllPredicate {
301+
fn eval(&self, variable: &str) -> bool {
302+
for pattern in &self.patterns {
303+
if !variable.contains(pattern) {
304+
return false;
305+
}
306+
}
307+
308+
true
309+
}
310+
}
311+
312+
impl reflection::PredicateReflection for ContainsAllPredicate {}
313+
314+
impl fmt::Display for ContainsAllPredicate {
315+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
316+
let palette = crate::Palette::new(f.alternate());
317+
write!(
318+
f,
319+
"{}.{}({})",
320+
palette.var("var"),
321+
palette.description("contains_all"),
322+
palette.expected(format!("{:?}", &self.patterns)),
323+
)
324+
}
325+
}
326+
327+
/// Creates a new `Predicate` that ensures a str contains `pattern`
328+
///
329+
/// # Examples
330+
///
331+
/// ```
332+
/// use predicates::prelude::*;
333+
///
334+
/// let predicate_fn = predicate::str::contains_all(vec!["One", "Two", "Three"]);
335+
/// assert_eq!(true, predicate_fn.eval("One Two Three"));
336+
/// assert_eq!(false, predicate_fn.eval("One Two Four"));
337+
/// assert_eq!(false, predicate_fn.eval("Four Five Six"));
338+
/// ```
339+
pub fn contains_all<P, T>(patterns: P) -> ContainsAllPredicate
340+
where
341+
P: IntoIterator<Item = T>,
342+
T: AsRef<str>,
343+
{
344+
let patterns: Vec<_> = patterns
345+
.into_iter()
346+
.map(|p| p.as_ref().to_string())
347+
.collect();
348+
349+
ContainsAllPredicate { patterns }
350+
}

0 commit comments

Comments
 (0)