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.
Add the dependency to your Cargo.toml
:
toml
[dependencies]
fluent-asserter = "0.1.0"
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. In the next sections, I show you how.
You can write string assertions for both String and str slices
```rust
fn stringassertions() { assertthat!("Life tastes great!").isequalto("Life tastes great!"); assertthat!("Life tastes great!").contains("great"); assertthat!("Life tastes great!").startswith("Life"); assertthat!("Life tastes great!").endswith("!"); assertthat!("Life tastes great!").isnotempty(); assertthat!("Life tastes great!").haslength(18); assertthat!("Life tastes great!").containsany(&["Life", "awesome"]); assertthat!("Life tastes great!").containsall(&["Life", "tastes", "great!"]); } ```
```rust
fn numberassertions() { assertthat!(21).isequalto(21); assertthat!(21).issmallerthan(22); assertthat!(21).issmallerthanorequalto(21); assertthat!(21).isgreaterthan(20); assertthat!(21).isinrange(21,31); assertthat!(21).isnotinrange(10,20); assertthat!(3.14159).isapproxequal(3.142, 0.001); } ```
## Boolean assertions
```rust
fn booleanassertions() { assertthat!(true).istrue(); assertthat!(false).is_false(); } ```
## Panic assertions
```rust #[test] fn panicassertions() { assertthatcode!(|| panic!("An error occurred!")) .panics() .withmessage("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 iteratorassertionfor_struct() {
let people: Vec
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);
}
));
} ```
```rust
fn hashmapassertions() {
let mut hashmap = HashMap::
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"));
} ```
```rust
fn optionassertions() { let option = Option::Some("Winner!"); assertthat!(option).issome(); assertthat!(option).issomewith_value("Winner!");
let none = Option::<i32>::None;
assert_that!(none).is_none();
} ```
```rust
pub fn resultassertions() {
let result : Result
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"));
} ```
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
fn test() { let string_variable = String::from("Hello Rust!");
assertthat!(stringvariable).isequalto(String::from("Hello C#!")); } ```
This test produces the following assertion error message:
doc
Expected string_variable to be "Hello C#!", but was "Hello Rust!".