#![doc(hidden)]
pub mod __internal {
use crate::{
description::Description,
matcher::{Describable, Matcher, MatcherResult},
};
use core::fmt::Debug;
#[doc(hidden)]
pub struct ConjunctionMatcher<M1, M2> {
pub(super) m1: M1,
pub(super) m2: M2,
}
impl<M1, M2> ConjunctionMatcher<M1, M2> {
pub(crate) fn new(m1: M1, m2: M2) -> Self {
Self { m1, m2 }
}
}
impl<T: Debug + ?Sized, M1: Matcher<T>, M2: Matcher<T>> Matcher<T> for ConjunctionMatcher<M1, M2> {
fn matches(&self, actual: &T) -> MatcherResult {
match (self.m1.matches(actual), self.m2.matches(actual)) {
(MatcherResult::Match, MatcherResult::Match) => MatcherResult::Match,
_ => MatcherResult::NoMatch,
}
}
fn explain_match(&self, actual: &T) -> Description {
match (self.m1.matches(actual), self.m2.matches(actual)) {
(MatcherResult::Match, MatcherResult::Match) => Description::new()
.nested(self.m1.explain_match(actual))
.text("and")
.nested(self.m2.explain_match(actual)),
(MatcherResult::NoMatch, MatcherResult::Match) => self.m1.explain_match(actual),
(MatcherResult::Match, MatcherResult::NoMatch) => self.m2.explain_match(actual),
(MatcherResult::NoMatch, MatcherResult::NoMatch) => Description::new()
.nested(self.m1.explain_match(actual))
.text("and")
.nested(self.m2.explain_match(actual)),
}
}
}
impl<M1: Describable, M2: Describable> Describable for ConjunctionMatcher<M1, M2> {
fn describe(&self, matcher_result: MatcherResult) -> Description {
format!(
"{}, and {}",
self.m1.describe(matcher_result),
self.m2.describe(matcher_result)
)
.into()
}
}
}
#[cfg(test)]
mod tests {
use crate::prelude::*;
use alloc::string::ToString;
use indoc::indoc;
#[test]
fn and_true_true_matches() -> TestResult<()> {
verify_that!(1, anything().and(anything()))
}
#[test]
fn and_true_false_does_not_match() -> TestResult<()> {
let result = verify_that!(1, anything().and(not(anything())));
verify_that!(
result,
err(displays_as(contains_substring(indoc!(
"
Value of: 1
Expected: is anything, and never matches
Actual: 1,
which is anything
"
))))
)
}
#[test]
fn and_false_true_does_not_match() -> TestResult<()> {
let result = verify_that!(1, not(anything()).and(anything()));
verify_that!(
result,
err(displays_as(contains_substring(indoc!(
"
Value of: 1
Expected: never matches, and is anything
Actual: 1,
which is anything
"
))))
)
}
#[test]
fn and_false_false_does_not_match() -> TestResult<()> {
let result = verify_that!(1, not(anything()).and(not(anything())));
verify_that!(
result,
err(displays_as(contains_substring(indoc!(
"
Value of: 1
Expected: never matches, and never matches
Actual: 1,
which is anything
and
which is anything
"
))))
)
}
#[test]
fn chained_and_matches() -> TestResult<()> {
#[derive(Debug)]
struct Struct {
a: i32,
b: i32,
c: i32,
}
verify_that!(
Struct { a: 1, b: 2, c: 3 },
field!(Struct.a, eq(1)).and(field!(Struct.b, eq(2))).and(field!(Struct.c, eq(3)))
)
}
#[test]
fn works_with_str_slices() -> TestResult<()> {
verify_that!("A string", starts_with("A").and(ends_with("string")))
}
#[test]
fn works_with_owned_strings() -> TestResult<()> {
verify_that!("A string".to_string(), starts_with("A").and(ends_with("string")))
}
}