Assure: macros for Rust runtime checking

This Rust crate provides the macro assure! and related macros.

These are intentionally similar to the macro assert! and related macros.

Available via https://crates.io/crates/assure

Introduction

The assure macros work like this:

For comparison assert macros work like this:

Error messages

The assure macros will generate a diagnostic error message such as:

If you prefer, you can provide your own error message as the final argument:

This behavior is intentionally similar to assert macros.

Return Ok or Err

The assure…! macros will return Result with either:

Example of Ok:

rust let a = 1; let b = 1; assure_eq!(a, b) -> Ok(a)

Example of Err:

rust let a = 1; let b = 2; assure_eq!(a, b) -> Err("assure_eq left:1 right:2")

Macros for simple values

Macro for truth checking:

Macros for value comparison:

Macros for bag checking

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.

Example of Ok:

rust let a = [1, 1]; let b = [1, 1]; assure_set_eq!(&a, &b) -> Ok(&a)

Example of Err:

rust let a = [1, 1]; let b = [1, 1, 1]; assure_set_eq!(&a, &b) -> Err("assure_bag_eq left:{1: 2} right:{1: 3}")

Macros for set checking

These macros help with comparison of set parameters, such as comparison of two arrays or two vectors. where the item order does not matter, and the item count does not matter.

Example of Ok:

rust let a = [1, 2]; let b = [2, 1]; assure_set_eq!(&a, &b) -> Ok(&a)

Example of Err:

rust let a = [1, 2]; let b = [3, 4]; assure_set_eq!(&a, &b) -> Err("assure_set_eq left:{1, 2} right:{3, 4}")

Macros for IO-related checking

These macros help with IO-related checking, such as comparison of files, streams, etc. These macros return a Result with Ok(true) or Err(std::io::Error::new(std::io::ErrorKind::InvalidInput, message)).

Macro for truth checking:

Macros for value comparison:

Example of Ok:

rust let a = 1; let b = 1; assure_io_eq!(a, b) -> Ok(a)

Example of Err:

rust let a = 1; let b = 2; assure_io_eq!(a, b) -> Err(std::io::Error::new(std::io::ErrorKind::InvalidInput, "assure_io_eq left:1 right:2"))