The assertables
Rust crate provides many assert macros to improve your
compile-time tests and run-time reliability.
Crate: https://crates.io/crates/assertables
Docs: https://docs.rs/assertables/
Repo: https://github.com/sixarm/assertables-rust-crate/
When you write Rust tests, then you can use Rust assert macros, such as:
rust
assert_eq!(value1, value2)
The assertables Rust crate provides many more assert macros for values, strings, vectors, readers, commands, and more, such as:
rust
assert_gt!(value1, value2); // value1 ≥ value2
assert_starts_with!(string1, string2); // string1 starts with string2
assert_is_match!(regex, string); // regex is match of string
assert_set_subset!(vector1, vector2); // vector1 as set ⊆ vector2 as set
assert_fn_ok_eq!(function1, function2); // function1 ok = function2 ok
assert_read_to_string_eq!(reader1, reader2); // reader1 as string = reader2 as string
assert_command_stdout_eq!(command1, command2); // command1 standard output = command2 standard output
See below for the complete list of all the assert macros.
Your tests are more purposeful and powerful, which helps your code be more reliable.
Your assert failures provide more information, which helps you troubleshoot faster.
You gain runtime asserts, which helps you with validations and verifications.
Easy to use: each macro is well-documented with runnable examples and tests.
Zero overhead: if you don't use a macro, then it's never compilted into your code.
Three forms: assert_*
for development, debug_assert_*
for debugging, and assert_*_as_result
for production.
Compare values:
assert_eq!(a, b)
≈ a = b
assert_ne!(a, b)
≈ a ≠ b
assert_ge!(a, b)
≈ a ≥ b
assert_gt!(a, b)
≈ a > b
assert_le!(a, b)
≈ a ≤ b
assert_lt!(a, b)
≈ a < b
Compare values by using nearness:
assert_in_delta!(a, b, delta)
≈ | a - b | ≤ delta
assert_in_epsilon(a, b, epsilon)
≈ | a - b | ≤ epsilon * min(a, b)
These macros help with strings and also other structures that provide
matchers such as starts_with
, ends_width
, contains
, and is_match
.
assert_starts_with(a, b)
≈ a.starts_with(b)
assert_not_starts_with(a, b)
≈ !a.starts_with(b)
assert_ends_with(a, b)
≈ a.ends_with(b)
assert_not_ends_with(a, b)
≈ !a.ends_with(b)
assert_contains(container, containee)
≈ container.contains(containee)
assert_not_contains(container, containee)
≈ !container.contains(containee)
assert_is_match(matcher, matchee)
≈ matcher.is_match(matchee)
assert_not_match(matcher, matchee)
≈ !matcher.is_match(matchee)
These macros help with comparison of set parameters, such as two arrays or two vectors. where the item order does not matter, and the item count does not matter. These macros convert their inputs into HashSet iterators.
assert_set_eq!(a, b)
≈ set a = set b
assert_set_ne!(a, b)
≈ set a ≠ set b
assert_set_subset!(a, b)
≈ set a ⊆ set b
assert_set_superset!(a, b)
≈ set a ⊇ set b
assert_set_joint!(a, b)
≈ set a ∩ set b ≠ ∅
assert_set_disjoint!(a, b)
≈ set a ∩ set b = ∅
These macros help with comparison of bag parameters, such as comparison of two arrays or two vectors, where the item order does not matter, and the item count does matter. These macros convert their inputs into HashMap iterators.
assert_bag_eq(a, b)
≈ bag a = bag b
assert_bag_ne(a, b)
≈ bag a ≠ bag b
assert_bag_subbag(a, b)
≈ bag a ⊆ bag b
assert_bag_superbag(a, b)
≈ bag a ⊇ bag b
Compare a function with another function:
assert_fn_eq!(function1, function2)
≈ function1() = function2()
assert_fn_ne!(function1, function2)
≈ function1() ≠ function2()
assert_fn_ge!(function1, function2)
≈ function1() ≥ function2()
assert_fn_gt!(function1, function2)
≈ function1() > function2()
assert_fn_le!(function1, function2)
≈ function1() ≤ function2()
assert_fn_lt!(function1, function2)
≈ function1() < function2()
Compare a function with an expression:
assert_fn_eq_expr!(function, expr)
≈ function() = expr
assert_fn_ne_expr!(function, expr)
≈ function() ≠ expr
assert_fn_ge_expr!(function, expr)
≈ function() ≥ expr
assert_fn_gt_expr!(function, expr)
≈ function() > expr
assert_fn_le_expr!(function, expr)
≈ function() ≤ expr
assert_fn_lt_expr!(function, expr)
≈ function() < expr
Compare a function Ok() with another function Ok():
assert_fn_ok_eq!(function1, function2)
≈ function1().ok().unwrap() = function2().ok().unwrap()
assert_fn_ok_ne!(function1, function2)
≈ function1().ok().unwrap() ≠ function2().ok().unwrap()
assert_fn_ok_ge!(function1, function2)
≈ function1().ok().unwrap() ≥ function2().ok().unwrap()
assert_fn_ok_gt!(function1, function2)
≈ function1().ok().unwrap() > function2().ok().unwrap()
assert_fn_ok_le!(function1, function2)
≈ function1().ok().unwrap() ≤ function2().ok().unwrap()
assert_fn_ok_lt!(function1, function2)
≈ function1().ok().unwrap() < function2().ok().unwrap()
Compare a function Ok() with an expression:
assert_fn_ok_eq_expr!(function, expr)
≈ function().ok().unwrap() = expr
assert_fn_ok_ne_expr!(function, expr)
≈ function().ok().unwrap() ≠ expr
assert_fn_ok_ge_expr!(function, expr)
≈ function().ok().unwrap() ≥ expr
assert_fn_ok_gt_expr!(function, expr)
≈ function().ok().unwrap() > expr
assert_fn_ok_le_expr!(function, expr)
≈ function().ok().unwrap() ≤ expr
assert_fn_ok_lt_expr!(function, expr)
≈ function().ok().unwrap() < expr
Compare a function Err() with another function Err():
assert_fn_err_eq!(function1, function2)
≈ function1().unwraperr() = function2().unwraperr()
assert_fn_err_ne!(function1, function2)
≈ function1().unwraperr() ≠ function2().unwraperr()
assert_fn_err_ge!(function1, function2)
≈ function1().unwraperr() ≥ function2().unwraperr()
assert_fn_err_gt!(function1, function2)
≈ function1().unwraperr() > function2().unwraperr()
assert_fn_err_le!(function1, function2)
≈ function1().unwraperr() ≤ function2().unwraperr()
assert_fn_err_lt!(function1, function2)
≈ function1().unwraperr() < function2().unwraperr()
Compare a function Err() with an expression:
assert_fn_err_eq!(function, expr)
≈ function().unwrap_err() = expr
assert_fn_err_ne!(function, expr)
≈ function().unwrap_err() ≠ expr
assert_fn_err_ge!(function, expr)
≈ function().unwrap_err() ≥ expr
assert_fn_err_gt!(function, expr)
≈ function().unwrap_err() > expr
assert_fn_err_le!(function, expr)
≈ function().unwrap_err() ≤ expr
assert_fn_err_lt!(function, expr)
≈ function().unwrap_err() < expr
These macros help with readers, such as file handles, byte arrays, input streams, and the trait std::io::Read.
Compare a reader with another reader:
assert_read_to_string_eq!(reader1, reader2)
≈ reader1.readtostring() = reader2.readtostring()
assert_read_to_string_ne!(reader1, reader2)
≈ reader1.readtostring() ≠ reader2.readtostring()
assert_read_to_string_ge!(reader1, reader2)
≈ reader1.readtostring() ≥ reader2.readtostring()
assert_read_to_string_gt!(reader1, reader2)
≈ reader1.readtostring() > reader2.readtostring()
assert_read_to_string_le!(reader1, reader2)
≈ reader1.readtostring() ≤ reader2.readtostring()
assert_read_to_string_lt!(reader1, reader2)
≈ reader1.readtostring() < reader2.readtostring()
Compare a reader with an expression:
assert_read_to_string_eq_expr(reader, expr)
≈ reader.readtostring() = expr
assert_read_to_string_ne_expr(reader, expr)
≈ reader.readtostring() ≠ expr
assert_read_to_string_ge_expr(reader, expr)
≈ reader.readtostring() ≥ expr
assert_read_to_string_gt_expr(reader, expr)
≈ reader.readtostring() > expr
assert_read_to_string_le_expr(reader, expr)
≈ reader.readtostring() ≤ expr
assert_read_to_string_lt_expr(reader, expr)
≈ reader.readtostring() < expr
Compare command standard output string:
assert_command_stdout_eq!(command1, command2)
≈ command1 stdout = command2 stdout
assert_command_stdout_eq_expr!(command, expr)
≈ command stdout = expr
assert_command_stdout_contains!(command, containee)
≈ command stdout contains containee
assert_command_stdout_is_match!(command, matcher)
≈ command stdout is a matcher match
Compare command standard error string:
assert_command_stderr_eq!(command1, command2)
≈ command1 stderr = command2 stderr
assert_command_stderr_eq_expr!(command, expr)
≈ command stderr = expr
assert_command_stderr_contains!(command, containee)
≈ command stderr contains containee
assert_command_stderr_is_match!(command, matcher)
≈ command stderr is a matcher match
Compare command using program and arguments to standard output:
assert_program_args_stdout_eq!(program1, args1, program2, args2)
≈ command using program1 and args1 to stdout = command2 with program2 and args2 to stdout
assert_program_args_stdout_eq_expr!(program, args, expr)
≈ command using program and args to stdout = expr
assert_program_args_stdout_contains!(program, args, containee)
≈ command using program and args to stdout contains containee
assert_program_args_stdout_is_match!(program, args, matcher)
≈ matcher is match with command using program and args
Compare command using program and arguments to standard output:
assert_program_args_stderr_eq!(program1, args1, program2, args2)
≈ command using program1 and args1 to stderr = command2 with program2 and args2 to stderr
assert_program_args_stderr_eq_expr!(program, args, expr)
≈ command using program and args to stderr = expr
assert_program_args_stderr_contains!(program, args, containee)
≈ command using program and args to stderr contains containee
assert_program_args_stderr_is_match!(program, args, matcher)
≈ matcher is match with command using program and args
Abbreviations:
eq
≈ equal
ne
≈ not equal.
ge
≈ greater than or equal.
gt
≈ greater than
le
≈ less than or equal.
lt
≈ less than
Shorthands:
reader
≈ implements .read_to_string(…)
such as std::io::Read
.
matcher
≈ implements .is_match(…)
such as regex::Regex
.
containee
≈ usable inside .contains(…)
such as a
std::string::String
substring.
set
≈ a collection such as ::std::collections::BTreeSet
.
bag
≈ a collection such as ::std::collections::BTreeMap
which has
key counts.
The assert macros have three forms that you can use depending on your goals:
```rust assert_gt!(a, b); // return () or panic!(…), for typical compile-time testing
debugassertgt!(a, b); // return () or panic!(…), for a non-optimized runtime
assertgtas_result!(a, b); // return Result Ok(()) or Err(…), for any runtime ```
The assert macros have forms for default messages versus custom messages.
```rust assertgt!(1, 2); // panic!("assertion failed: assertgt(1, 2)…")
assert_gt!(1, 2, "message"); // panic!("message") ```
Some assert macros have forms for comparing an other versus an expression:
```rust assertreadtostringeq!(reader1, reader2); // reader1.readtostring() = reader2.readtostring()
assertreadtostringeqexpr!(reader, expr); // reader1.readto_string() = expr ```
Add assert_in_delta
, assert_in_epsilon
.
Add asssert_fn_*
macros with multiple arities.
Add cargo release
for optimized tagged releases.
Add assert_starts_with
, assert_ends_with
, assert_contains
, assert_is_match
.
Add debug_assert_*
macros everywhere.
Add GPL-3.0
license.