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
pub trait GWT<TRESULT, SUT> {
    fn given(self, function: fn() -> SUT) -> Self;
    fn and_given(self, function: fn() -> SUT) -> Self;
    fn when(self, function: fn(&SUT) -> TRESULT) -> Self;
    fn then(self, function: fn(&TRESULT) -> &TRESULT) -> Self;
    fn and(self, function: fn(&TRESULT) -> &TRESULT) -> Self;
}
pub struct Test<TRESULT, SUT> {
    pub system_under_test: Option<SUT>,
    pub result: Option<TRESULT>,
}

impl<TRESULT, SUT> Test<TRESULT, SUT> {
    pub fn scenario() -> Self {
        Test::<TRESULT, SUT> {
            result: None,
            system_under_test: None,
        }
    }
}

impl<TRESULT, SUT> GWT<TRESULT, SUT> for Test<TRESULT, SUT> {
    fn given(mut self, function: fn() -> SUT) -> Self {
        self.system_under_test = Some(function());
        return self;
    }
    fn and_given(mut self, function: fn() -> SUT) -> Self {
        self.system_under_test = Some(function());
        return self;
    }
    fn when(mut self, function: fn(&SUT) -> TRESULT) -> Self {
        self.result = Some(function(
            self.system_under_test
                .as_ref()
                .expect("SUT should not be None, you must have a given"),
        ));
        return self;
    }
    fn then(self, function: fn(&TRESULT) -> &TRESULT) -> Self {
        function(self.result.as_ref().expect("Result should not be None"));
        return self;
    }
    fn and(self, function: fn(&TRESULT) -> &TRESULT) -> Self {
        function(self.result.as_ref().expect("Result should not be None"));
        return self;
    }
}

#[cfg(test)]
mod tests {
    mod calculator;
    use super::*;
    use calculator::*;

    #[test]
    fn it_works_with_closures() {
        Test::scenario()
            .given(|| ())
            .when(|_sut| "something is returned by system under test")
            .then(|x| {
                assert_eq!(x.clone(), "something is returned by system under test");
                x
            })
            .and(|x| {
                assert_eq!(1, 1);
                x
            });
    }

    #[test]
    fn it_works_with_named_functions_and_looks_clean() {
        Test::scenario()
            .given(a_calculator)
            .when(adding_1_and_2_via_a_function)
            .then(the_answer_is_3_checked_via_a_function);
    }

    #[test]
    fn it_works_with_named_functions_closures_and_closures_that_call_functions() {
        Test::scenario()
            .given(|| Calculator {})
            .and_given(a_calculator) // last return in given chain passed to when
            .when(adding_1_and_2_via_a_function)
            .when(|c| adding(c, 1, 2))
            .then(|answer| {
                assert_eq!(answer.clone(), 3);
                answer
            })
            .and(the_answer_is_3_checked_via_a_function);
    }

    fn adding_1_and_2_via_a_function(c: &Calculator) -> i32 {
        c.add(1, 2)
    }

    fn the_answer_is_3_checked_via_a_function(the_answer: &i32) -> &i32 {
        assert_eq!(the_answer.clone(), 3);
        the_answer
    }

    fn adding(calculator: &Calculator, left: i32, right: i32) -> i32 {
        calculator.add(left, right)
    }

    fn a_calculator() -> Calculator {
        Calculator {}
    }
}