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
use self::fluid::core::prelude::*;
use crate as fluid;
use std::ops::Not;

/// Used to check if a result is an error.
#[derive(Debug, Drop)]
pub struct BeAnError<O: Debug, E: Debug> {
    pub(in crate::assertions) should: ShouldImpl<Result<O, E>>,
    pub(in crate::assertions) containing_truthness: bool,
}

impl<O: Debug, E: Debug> AssertionImpl for BeAnError<O, E> {
    type Left = Result<O, E>;

    fn failure_message(&mut self) -> Option<String> {
        let left_dbg = self.should.left_dbg();
        let truthness = self.should.truthness();

        if self.should.left.as_ref()?.is_err() != self.should.truthness {
            let message = if let Some(stringified) = self.should.stringified() {
                format!(
                    "\t{} is {}\n\
                     \tbut it should{} be an error.",
                    stringified,
                    left_dbg,
                    truthness.str()
                )
            } else {
                format!("\t{} is{} an error.", left_dbg, truthness.not().str())
            };
            Some(message)
        } else {
            None
        }
    }

    fn consume_as_should(mut self) -> ShouldImpl<Self::Left> {
        self.should.take()
    }

    fn should_mut(&mut self) -> &mut ShouldImpl<Self::Left> {
        &mut self.should
    }
}

impl<O: Debug, E: Debug> Should<Result<O, E>> {
    /// Checks if a result is an error.
    ///
    /// # Example
    ///
    /// ```rust
    /// # use fluid::prelude::*;
    /// let result = "two".parse::<i32>();
    /// result.should().be_an_error().because("“two“ is not a valid number");
    /// ```
    pub fn be_an_error(self) -> ChainableAssert<BeAnError<O, E>> {
        let implem = BeAnError {
            should: self.into(),
            containing_truthness: true,
        };

        ChainableAssert(implem)
    }
}