fluent-asserter

Introduction

A library to write test assertions in a fluent syntax. Writing clean tests is as important as writing clean code. This library contains test asserters to be used to make clean assertions in your automated tests. It also helps to enhance the Test-Driven Development (TDD) experience, resulting in clean, readable and maintainable tests.

Usage

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.

String and string slice assertions

You can write string assertions for both String and str slices

```rust

[test]

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!"]); } ```

Number assertions

```rust

[test]

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

[test]

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 = 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 hashmapassertions() { let mut hashmap = HashMap::::new(); assertthat!(&hashmap).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 optionassertions() { let option = Option::Some("Winner!"); assertthat!(option).issome(); assertthat!(option).issomewith_value("Winner!");

let none = Option::<i32>::None;
assert_that!(none).is_none();

} ```

Result assertions

```rust

[test]

pub fn resultassertions() { let result : Result = Ok(3); assertthat!(&result).isok(); assertthat!(&result).isokwith_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!");

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!".