package ppx_assert
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=94c47289a6393642b1cca7d2cdb8decdbf387c3cee4faf50d9b00efc871cce8b
Description
Part of the Jane Street's PPX rewriters collection.
Published: 23 May 2024
README
ppx_assert
Extension nodes to compare value and raise useful errors if they differ.
This ppx rewriter defines 3 extension nodes.
[%test_eq: typ]
in expressions
[%test_eq: typ]
in expressions expands to a function of type:
?equal:(type -> type -> bool) -> ?here:Lexing.position list -> type -> type -> unit
i.e., it asserts the equality of its two anonymous arguments, using the provided equality or [%compare: typ]
(sadly the type need to be comparable even if you provide an equality), and if they are not equal, an exception containing the value displayed by using [%sexp_of: typ]
is thrown.
The exception also contains the source code position of the extension node and the additional positions from the here parameter. The ?here parameter is meant for cases where you want additional locations, usually because the backtrace is lacking information.
[%test_result: typ]
in expressions
[%test_result: typ]
is very similar to [%test_eq:typ]
. It has a slightly improved error message for the common case where rather than comparing two arbitrary values, you have one expected value, and one computed value.
[%test_result: typ]
expands to a function of type:
?here:Lexing.position list -> ?message:string -> ?equal:(type -> type -> bool) -> expect:typ -> typ -> unit
[%test_pred: typ]
in expressions
This one is the least useful. [%test_pred: typ]
expands to a function of type:
?here:Lexing.position list -> ?message:string -> (type -> bool) -> type -> unit
It simply applies the given predicate to the given value, and if the predicate returns false
, then an exception containing the value shown using [%sexp_of: typ]
is thrown.
Intended usage
These assertions are very useful when testing. Compared to using assert (x = y)
, errors display the values that are not equal. Also, there is no mechanism to remove these tests in production builds like -noassert
does for assert
. Compared to using the various assert_bool
or assert_string
functions you can find in various unit testing libraries, it works with any sexpable and comparable type for zero effort. For instance, tests commonly look like this:
let%test_unit "List.length" =
[%test_result: int] (List.length [1; 2]) ~expect:2
let%test_unit "List.tail" =
[%test_result: int list] (List.tail [1; 2]) ~expect:[2]
However convenient these extensions are for testing, it is also possible to use these extensions even outside of test, in production code, for instance in a function that checks invariants, or when checking some form of precondition.
Dependencies (8)
-
ppxlib
>= "0.28.0"
-
dune
>= "3.11.0"
-
ppx_sexp_conv
>= "v0.17" & < "v0.18"
-
ppx_here
>= "v0.17" & < "v0.18"
-
ppx_compare
>= "v0.17" & < "v0.18"
-
ppx_cold
>= "v0.17" & < "v0.18"
-
base
>= "v0.17" & < "v0.18"
-
ocaml
>= "5.1.0"
Dev Dependencies
None
Used by (15)
-
bio_io
>= "0.3.0"
-
core
>= "v0.17.0"
- h1_parser
- http
-
jst-config
>= "v0.17.0"
- m_tree
-
ppx_bap
< "v0.14.0"
-
ppx_jane
>= "v0.17.0"
- ppx_mica
- ppx_partial
-
pyml_bindgen
>= "0.2.0"
- sel
-
splittable_random
>= "v0.17.0"
- vscoq-language-server
- zanuda
Conflicts
None