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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
//! A library to write test assertions with a fluent interface. Writing clean tests is as important as writing clean production code.
//! This library contains test asserters for many kind of Rust types to produce clean assertions in our automated tests.
//! It also helps to enhance the Test-Driven Development (TDD) experience, resulting in clean, ergonomic and maintainable tests.
//!
//! ## Usage
//!
//! Add the dependency to your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! fluent-asserter = "0.1.9"
//! ```
//!
//! Then import the asserters via the prelude
//! ```rust
//! use fluent_asserter::prelude::*;
//! ```
//!
//! Now you should be able to write test assertions with a fluent syntax in your tests.
//!
//! ## String and string slice assertions
//! You can write string assertions for both String and str slices
//! ```rust
//!#[test]
//!fn string_assertions() {
//!    assert_that!("Life tastes great!").is_equal_to("Life tastes great!");
//!    assert_that!("Life tastes great!").contains("great");
//!    assert_that!("Life tastes great!").starts_with("Life");
//!    assert_that!("Life tastes great!").ends_with("!");
//!    assert_that!("Life tastes great!").is_not_empty();
//!    assert_that!("Life tastes great!").has_length(18);
//!    assert_that!("Life tastes great!").contains_any(&["Life", "awesome"]);
//!    assert_that!("Life tastes great!").contains_all(&["Life", "tastes", "great!"]);
//!}
//! ```
//!
//! ## Number assertions
//!
//! ```rust
//!#[test]
//!fn number_assertions() {
//!    assert_that!(21).is_equal_to(21);
//!    assert_that!(21).is_smaller_than(22);
//!    assert_that!(21).is_smaller_than_or_equal_to(21);
//!    assert_that!(21).is_greater_than(20);
//!    assert_that!(21).is_in_range(21,31);
//!    assert_that!(21).is_not_in_range(10,20);
//!    assert_that!(3.14159).is_approx_equal(3.142, 0.001);
//!}
//! ```
//!
//! ## Boolean assertions
//!
//! ```rust
//!#[test]
//!fn boolean_assertions() {
//!    assert_that!(true).is_true();
//!    assert_that!(false).is_false();
//!}
//! ```
//!
//! ## Panic assertions
//!
//! ```rust
//! #[test]
//! fn panic_assertions() {
//!     assert_that_code!(|| panic!("An error occurred!"))
//!         .panics()
//!         .with_message("An error occurred!");
//!
//!     assert_that_code!(|| println!("Life tastes great!")).does_not_panic();
//! }
//! ```
//!
//! ## Iterator assertions
//!
//! ```rust
//! #[test]
//! fn iterator_assertions() {
//!     assert_that!(vec!["tasty", "delicious", "lovely"]).is_equal_to(vec!["tasty", "delicious", "lovely"]);
//!     assert_that!(vec!["tasty", "delicious", "lovely"]).contains("delicious");
//!     assert_that!(vec!["tasty", "delicious", "lovely"]).contains_all(&["tasty", "delicious", "lovely"]);
//!     assert_that!(vec!["tasty", "delicious", "lovely"]).has_count(3);
//!     assert_that!(vec!["tasty", "delicious", "lovely"]).does_not_contain_any(&["awesome", "amazing"]);
//!     assert_that!(vec!["tasty", "delicious", "lovely"]).is_not_empty();
//! }
//! ```
//!
//! ## Iterator assertion for structs
//!
//! ```rust
//! #[derive(Clone)]
//! struct Person {
//!     name: String,
//!     age: i32,
//! }
//!
//! #[test]
//! fn iterator_assertion_for_struct() {
//!     let people: Vec<Person> = vec![
//!         Person {
//!             name: String::from("Daniel"),
//!             age: 32,
//!         },
//!         Person {
//!             name: String::from("Jimmy"),
//!             age: 45,
//!         },
//!     ];
//!
//!     assert_that!(people).satisfies_respectively(with_asserters!(
//!             |person1: &Person| {
//!                 assert_that!(&person1.name).is_equal_to(&String::from("Daniel"));
//!                 assert_that!(&person1.age).is_equal_to(&32);
//!             },
//!             |person2: &Person| {
//!                 assert_that!(&person2.name).is_equal_to(&String::from("Jimmy"));
//!                 assert_that!(&person2.age).is_equal_to(&45);
//!             }
//!         ));
//! }
//! ```
//!
//! ## Hashmap assertions
//!
//!```rust
//!#[test]
//!fn hashmap_assertions() {
//!    let mut hash_map = HashMap::<String, String>::new();
//!    assert_that!(&hash_map).is_empty();
//!
//!    hash_map.insert(String::from("key"), String::from("value"));
//!    assert_that!(&hash_map).has_length(1);
//!    assert_that!(&hash_map).is_not_empty();
//!    assert_that!(&hash_map).contains_key(&String::from("key"));
//!    assert_that!(&hash_map).does_not_contain_key(String::from("key2"));
//!}
//!```
//!
//!
//!## Option assertions
//!
//!```rust
//!#[test]
//!fn option_assertions() {
//!    let option = Option::Some("Winner!");
//!    assert_that!(option).is_some();
//!    assert_that!(option).is_some_with_value("Winner!");
//!
//!    let none = Option::<i32>::None;
//!    assert_that!(none).is_none();
//!}
//!```
//!
//!## Result assertions
//!
//!```rust
//!#[test]
//!pub fn result_assertions() {
//!    let result : Result<i32,i32> = Ok(3);
//!    assert_that!(&result).is_ok();
//!    assert_that!(&result).is_ok_with_value(3);
//!
//!    let error : Result<i32,String> = Err(String::from("error message"));
//!    assert_that!(&error).is_error();
//!    assert_that!(&error).is_error_with_value(String::from("error message"));
//!}
//!```

//! ## Clear and concise error messages
//!
//! In case of a failing assertion, the error message is clear and on the point, containing all the information relating to the domain subject.
//!
//! ```rust
//! #[test]
//! fn test() {
//!    let string_variable = String::from("Hello Rust!");
//!
//!    assert_that!(string_variable).is_equal_to(String::from("Hello C#!"));
//! }
//! ```
//!
//! This test produces the following assertion error message:
//!
//! ```doc
//! Expected string_variable to be "Hello C#!", but was "Hello Rust!".
//! ```
//!

mod boolean_asserter;
mod hashmap_asserter;
mod iterator_asserter;
mod number_approx_asserter;
mod number_asserter;
mod option_asserter;
mod panic_asserter;
pub mod prelude;
mod result_asserter;
mod string_asserter;

use lazy_static::lazy_static;
use std::borrow::Borrow;
use std::fmt::Debug;
use std::panic;

/// Creating fluent assertion for the specified type.
/// Depending on the specified type, there are different assertion methods available.
///
/// # Examples
/// ```rust
/// # #[macro_use] extern crate fluent_asserter;use fluent_asserter::*; fn main() {
/// assert_that!("awesome").is_equal_to("awesome");
/// assert_that!(3.14).is_smaller_than(3.15);
/// assert_that!(true).is_true();
/// # }
/// ```
///
#[macro_export]
macro_rules! assert_that {
    ($value:expr) => {
        create_asserter($value, stringify!($value).to_string())
    };
}

/// Creating fluent assertion to check if a closure panics
///
///  NOTE: Do not use this and the native #\[should_panic\] attribute at the same time while executing the tests parallel, as it can have non-deterministic behaviour
/// # Examples
/// ```rust
/// # #[macro_use] extern crate fluent_asserter;use fluent_asserter::*; fn main() {
///     assert_that_code!(|| panic!("An error occurred!"))
///         .panics()
///         .with_message("An error occurred!");
///
///     assert_that_code!(|| println!("Life tastes great!"))
///         .does_not_panic();
/// # }
/// ```
#[macro_export]
macro_rules! assert_that_code {
    ($value:expr) => {
        PanicAsserter::new($value) //TODO: only restrict it to pass function, and nothing else
    };
}

pub struct Asserter<T> {
    value: T,
    name: String,
}

pub struct PanicAsserter<F, R>
where
    F: FnOnce() -> R + panic::UnwindSafe,
{
    value: F,
}

impl<T> Asserter<T>
where
    T: Debug + PartialEq,
{
    pub fn new(value: T, name: String) -> Asserter<T> {
        Asserter { value, name }
    }

    pub fn is_equal_to(&self, expected_value: T) {
        let expected = expected_value.borrow();
        if &self.value != expected {
            let error_msg = format!(
                "Expected {} to be {:?}, but was {:?}.",
                self.name, expected, self.value
            );
            panic!("{}", error_msg)
        }
    }

    pub fn is_not_equal_to(&self, expected_value: T) {
        let expected = expected_value.borrow();
        assert_ne!(&self.value, expected);
    }
}

pub fn create_asserter<T>(value: T, name: String) -> Asserter<T> {
    Asserter { value, name }
}