Skip to content

Commit 4ddceb5

Browse files
Add assert_matches
1 parent cc3323d commit 4ddceb5

File tree

696 files changed

+2572
-902
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

696 files changed

+2572
-902
lines changed

CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Changes highlights for recent major versions.
55

66
## Version 8.x
77

8+
* Add `assert_matches`, `assert_not_matches`.
9+
810
* Add Iterator macros: `assert_iter_all`, `assert_iter_any`, `assert_iter_eq`, etc.
911

1012
* Add Result macros: `assert_ok`, `assert_err`, etc.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "assertables"
3-
version = "8.16.0"
3+
version = "8.17.0"
44
authors = ["Joel Parker Henderson <[email protected]>"]
55
edition = "2021"
66
description = "Assertables: assert macros for better testing, debugging, quality assurance, and runtime reliability."

README.md

+54-51
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,22 @@ Examples:
2525
```rust
2626
use assertables::*;
2727
let s = "hello world";
28+
assert_matches!(s, "hello world");
2829
assert_starts_with!(s, "hello");
30+
assert_ends_with!(s, "world");
2931
assert_contains!(s, "o");
3032
assert_len_eq!(s, "***********");
3133
assert_all!(s.chars(), |c: char| c < 'x');
3234
assert_any!(s.chars(), |c: char| c.is_whitespace());
3335
```
3436

37+
To use the macros, add this to your `Cargo.toml` file:
38+
39+
```toml
40+
[dev-dependencies]
41+
assertables = "*"
42+
```
43+
3544
Top benefits:
3645

3746
1. You can write better tests to improve reliability and maintainability.
@@ -51,117 +60,111 @@ Top comparison crates:
5160
`[cool_asserts](https://crates.io/crates/cool_asserts)`.
5261
`[claims](https://crates.io/crates/claims)`.
5362

54-
To use the macros, add this to your `Cargo.toml` file:
55-
56-
```toml
57-
[dev-dependencies]
58-
assertables = "*"
59-
```
60-
6163
## Highlights
6264

6365
Values:
6466

65-
* `[assert_eq!(a, b);](https://docs.rs/assertables/8.16.0/assertables/assert_eq) // equal to`
66-
* `[assert_ne!(a, b);](https://docs.rs/assertables/8.16.0/assertables/assert_ne) // not equal to`
67-
* `[assert_lt!(a, b);](https://docs.rs/assertables/8.16.0/assertables/assert_lt) // less than`
68-
* `[assert_le!(a, b);](https://docs.rs/assertables/8.16.0/assertables/assert_le) // less than or equal to`
69-
* `[assert_gt!(a, b);](https://docs.rs/assertables/8.16.0/assertables/assert_gt) // greater than`
70-
* `[assert_ge!(a, b);](https://docs.rs/assertables/8.16.0/assertables/assert_ge) // greater than or equal to`
67+
* `[assert_eq!(a, b);](https://docs.rs/assertables/8.17.0/assertables/assert_eq) // equal to`
68+
* `[assert_ne!(a, b);](https://docs.rs/assertables/8.17.0/assertables/assert_ne) // not equal to`
69+
* `[assert_lt!(a, b);](https://docs.rs/assertables/8.17.0/assertables/assert_lt) // less than`
70+
* `[assert_le!(a, b);](https://docs.rs/assertables/8.17.0/assertables/assert_le) // less than or equal to`
71+
* `[assert_gt!(a, b);](https://docs.rs/assertables/8.17.0/assertables/assert_gt) // greater than`
72+
* `[assert_ge!(a, b);](https://docs.rs/assertables/8.17.0/assertables/assert_ge) // greater than or equal to`
7173

7274
Approximations:
7375

74-
* `[assert_approx_eq!(number, number);](https://docs.rs/assertables/8.16.0/assertables/assert_approx) // |a-b| ≤ 1e-6`
75-
* `[assert_in_delta!(number, number, delta);](https://docs.rs/assertables/8.16.0/assertables/assert_in_delta) // |a-b| ≤ delta`
76-
* `[assert_in_epsilon!(number, number, epsilon);](https://docs.rs/assertables/8.16.0/assertables/assert_in_epsilon) // |a-b| ≤ epsilon * min(a,b)`
76+
* `[assert_approx_eq!(number, number);](https://docs.rs/assertables/8.17.0/assertables/assert_approx) // |a-b| ≤ 1e-6`
77+
* `[assert_in_delta!(number, number, delta);](https://docs.rs/assertables/8.17.0/assertables/assert_in_delta) // |a-b| ≤ delta`
78+
* `[assert_in_epsilon!(number, number, epsilon);](https://docs.rs/assertables/8.17.0/assertables/assert_in_epsilon) // |a-b| ≤ epsilon * min(a,b)`
7779

7880
Groups for iterators, chars, etc.:
7981

80-
* `[assert_all!(group, predicate);](https://docs.rs/assertables/8.16.0/assertables/assert_all) // group.all(predicate)`
81-
* `[assert_any!(group, predicate);](https://docs.rs/assertables/8.16.0/assertables/assert_any) // group.any(predicate)`
82+
* `[assert_all!(group, predicate);](https://docs.rs/assertables/8.17.0/assertables/assert_all) // group.all(predicate)`
83+
* `[assert_any!(group, predicate);](https://docs.rs/assertables/8.17.0/assertables/assert_any) // group.any(predicate)`
8284

8385
Infix for order operators, logic operators, etc.:
8486

85-
* `[assert_infix!(a == b);](https://docs.rs/assertables/8.16.0/assertables/assert_infix) // order: == != < <= > >=`
86-
* `[assert_infix!(a && b);](https://docs.rs/assertables/8.16.0/assertables/assert_infix) // logic: && || ^ & |`
87+
* `[assert_infix!(a == b);](https://docs.rs/assertables/8.17.0/assertables/assert_infix) // order: == != < <= > >=`
88+
* `[assert_infix!(a && b);](https://docs.rs/assertables/8.17.0/assertables/assert_infix) // logic: && || ^ & |`
8789

8890
Parts for strings, vectors, etc.:
8991

90-
* `[assert_starts_with!(whole, part);](https://docs.rs/assertables/8.16.0/assertables/assert_starts_with) // whole.starts_with(part)`
91-
* `[assert_ends_with!(whole, part);](https://docs.rs/assertables/8.16.0/assertables/assert_ends_with) // whole.ends_with(part)`
92+
* `[assert_starts_with!(whole, part);](https://docs.rs/assertables/8.17.0/assertables/assert_starts_with) // whole.starts_with(part)`
93+
* `[assert_ends_with!(whole, part);](https://docs.rs/assertables/8.17.0/assertables/assert_ends_with) // whole.ends_with(part)`
9294

9395
Lengths for strings, vectors, etc.:
9496

95-
* `[assert_len!(item);](https://docs.rs/assertables/8.16.0/assertables/assert_len) // item.len()`
96-
* `[assert_is_empty!(item);](https://docs.rs/assertables/8.16.0/assertables/assert_is_empty) // item.is_empty()`
97+
* `[assert_len!(item);](https://docs.rs/assertables/8.17.0/assertables/assert_len) // item.len()`
98+
* `[assert_is_empty!(item);](https://docs.rs/assertables/8.17.0/assertables/assert_is_empty) // item.is_empty()`
9799

98100
Matching for strings, regex, etc.:
99101

100-
* `[assert_contains!(container, containee);](https://docs.rs/assertables/8.16.0/assertables/assert_contains) // container.contains(containee)`
101-
* `[assert_is_match!(matcher, matchee);](https://docs.rs/assertables/8.16.0/assertables/assert_is_match) // matcher.is_match(matchee)`
102+
* `[assert_matches!(expression, pattern);](module@crate::assert_matches) // matches!(expression, pattern)`
103+
* `[assert_is_match!(matcher, matchee);](https://docs.rs/assertables/8.17.0/assertables/assert_is_match) // matcher.is_match(matchee)`
104+
* `[assert_contains!(container, containee);](https://docs.rs/assertables/8.17.0/assertables/assert_contains) // container.contains(containee)`
102105

103106
Collections for arrays, vectors, iterators, sets, maps:
104107

105-
* `[assert_iter_eq!(arr1, arr2);](https://docs.rs/assertables/8.16.0/assertables/assert_iter) // eq ne lt le gt ge`
106-
* `[assert_set_eq!(vec1, vec2);](https://docs.rs/assertables/8.16.0/assertables/assert_set) // eq ne lt le gt ge etc.`
107-
* `[assert_bag_eq!(map1, map2);](https://docs.rs/assertables/8.16.0/assertables/assert_bag) // eq ne lt le gt ge etc.`
108+
* `[assert_iter_eq!(arr1, arr2);](https://docs.rs/assertables/8.17.0/assertables/assert_iter) // eq ne lt le gt ge`
109+
* `[assert_set_eq!(vec1, vec2);](https://docs.rs/assertables/8.17.0/assertables/assert_set) // eq ne lt le gt ge etc.`
110+
* `[assert_bag_eq!(map1, map2);](https://docs.rs/assertables/8.17.0/assertables/assert_bag) // eq ne lt le gt ge etc.`
108111

109112
Result Ok/Err:
110113

111-
* `[assert_ok!(result);](https://docs.rs/assertables/8.16.0/assertables/assert_ok) // eq ne lt le gt ge`
112-
* `[assert_err!(result);](https://docs.rs/assertables/8.16.0/assertables/assert_err) // eq ne lt le gt ge`
114+
* `[assert_ok!(result);](https://docs.rs/assertables/8.17.0/assertables/assert_ok) // eq ne lt le gt ge`
115+
* `[assert_err!(result);](https://docs.rs/assertables/8.17.0/assertables/assert_err) // eq ne lt le gt ge`
113116

114117
Option Some/None:
115118

116-
* `[assert_some!(option);](https://docs.rs/assertables/8.16.0/assertables/assert_some) // eq ne lt le gt ge`
117-
* `[assert_none!(option);](https://docs.rs/assertables/8.16.0/assertables/assert_none)`
119+
* `[assert_some!(option);](https://docs.rs/assertables/8.17.0/assertables/assert_some) // eq ne lt le gt ge`
120+
* `[assert_none!(option);](https://docs.rs/assertables/8.17.0/assertables/assert_none)`
118121

119122
Poll Ready/Pending:
120123

121-
* `[assert_ready!(poll);](https://docs.rs/assertables/8.16.0/assertables/assert_ready) // eq ne lt le gt ge`
122-
* `[assert_pending!(poll);](https://docs.rs/assertables/8.16.0/assertables/assert_pending)`
124+
* `[assert_ready!(poll);](https://docs.rs/assertables/8.17.0/assertables/assert_ready) // eq ne lt le gt ge`
125+
* `[assert_pending!(poll);](https://docs.rs/assertables/8.17.0/assertables/assert_pending)`
123126

124127
Read file system paths and input/output streams:
125128

126-
* `[assert_fs_read_to_string_eq!(path1, path2);](https://docs.rs/assertables/8.16.0/assertables/assert_fs_read_to_string) // eq ne lt le gt ge`
127-
* `[assert_io_read_to_string_eq!(stream1, stream2);](https://docs.rs/assertables/8.16.0/assertables/assert_io_read_to_string) // eq ne lt le gt ge`
129+
* `[assert_fs_read_to_string_eq!(path1, path2);](https://docs.rs/assertables/8.17.0/assertables/assert_fs_read_to_string) // eq ne lt le gt ge`
130+
* `[assert_io_read_to_string_eq!(stream1, stream2);](https://docs.rs/assertables/8.17.0/assertables/assert_io_read_to_string) // eq ne lt le gt ge`
128131

129132
Run commands and programs then assert on stdout or stderr:
130133

131-
* `[assert_command_stdout_eq!(command1, command2);](https://docs.rs/assertables/8.16.0/assertables/assert_command) // eq ne lt le gt ge etc.`
132-
* `[assert_program_args_stdout_eq!(program1, args1, program2, args2);](https://docs.rs/assertables/8.16.0/assertables/assert_program_args) // eq ne lt le gt ge etc.`
134+
* `[assert_command_stdout_eq!(command1, command2);](https://docs.rs/assertables/8.17.0/assertables/assert_command) // eq ne lt le gt ge etc.`
135+
* `[assert_program_args_stdout_eq!(program1, args1, program2, args2);](https://docs.rs/assertables/8.17.0/assertables/assert_program_args) // eq ne lt le gt ge etc.`
133136

134137
Function comparisons, which are especially good for refactoring:
135138

136-
* `[assert_fn_eq!(fn1, fn2);](https://docs.rs/assertables/8.16.0/assertables/assert_fn) // functions that return values`
137-
* `[assert_fn_ok_eq!(fn1, fn2);](https://docs.rs/assertables/8.16.0/assertables/assert_fn_ok) // functions that return Ok`
138-
* `[assert_fn_err_eq!(fn1, fn2);](https://docs.rs/assertables/8.16.0/assertables/assert_fn_err) // functions that return Err`
139+
* `[assert_fn_eq!(fn1, fn2);](https://docs.rs/assertables/8.17.0/assertables/assert_fn) // functions that return values`
140+
* `[assert_fn_ok_eq!(fn1, fn2);](https://docs.rs/assertables/8.17.0/assertables/assert_fn_ok) // functions that return Ok`
141+
* `[assert_fn_err_eq!(fn1, fn2);](https://docs.rs/assertables/8.17.0/assertables/assert_fn_err) // functions that return Err`
139142

140143

141144
## Forms
142145

143146
All assertables macros have forms for different outcomes:
144147

145-
* `[assert_gt!(a, b);](https://docs.rs/assertables/8.16.0/assertables/macro.assert_gt.html) // panic during typical test`
146-
* `[assert_gt_as_result!(a, b);](https://docs.rs/assertables/8.16.0/assertables/macro.assert_gt_as_result.html) // return Ok or Err`
147-
* `[debug_assert_gt!(a, b);](https://docs.rs/assertables/8.16.0/assertables/macro.debug_assert_gt.html) // panic when in debug mode`
148+
* `[assert_gt!(a, b);](https://docs.rs/assertables/8.17.0/assertables/macro.assert_gt.html) // panic during typical test`
149+
* `[assert_gt_as_result!(a, b);](https://docs.rs/assertables/8.17.0/assertables/macro.assert_gt_as_result.html) // return Ok or Err`
150+
* `[debug_assert_gt!(a, b);](https://docs.rs/assertables/8.17.0/assertables/macro.debug_assert_gt.html) // panic when in debug mode`
148151

149152
All assertables macros have forms for an optional message:
150153

151-
* `[assert_gt!(a, b);](https://docs.rs/assertables/8.16.0/assertables/macro.assert_gt.html) // automatic error message`
152-
* `[assert_gt!(a, b, "your text");](https://docs.rs/assertables/8.16.0/assertables/macro.assert_gt.html) // custom error message`
154+
* `[assert_gt!(a, b);](https://docs.rs/assertables/8.17.0/assertables/macro.assert_gt.html) // automatic error message`
155+
* `[assert_gt!(a, b, "your text");](https://docs.rs/assertables/8.17.0/assertables/macro.assert_gt.html) // custom error message`
153156

154157
Many assertables macros have forms for comparing left hand side (LHS) and right hand side (RHS) as the same type or as an arbitrary expression:
155158

156-
* `[assert_ok_eq!(a, b);](https://docs.rs/assertables/8.16.0/assertables/macro.assert_ok_eq.html) // Ok(…) = Ok(…)`
157-
* `[assert_ok_eq_expr!(a, b);](https://docs.rs/assertables/8.16.0/assertables/macro.assert_ok_eq_expr.html) // Ok(…) = expression`
159+
* `[assert_ok_eq!(a, b);](https://docs.rs/assertables/8.17.0/assertables/macro.assert_ok_eq.html) // Ok(…) = Ok(…)`
160+
* `[assert_ok_eq_expr!(a, b);](https://docs.rs/assertables/8.17.0/assertables/macro.assert_ok_eq_expr.html) // Ok(…) = expression`
158161

159162

160163
## Tracking
161164

162165
* Package: assertables-rust-crate
163-
* Version: 8.16.0
166+
* Version: 8.17.0
164167
* Created: 2021-03-30T15:47:49Z
165-
* Updated: 2024-10-08T15:07:34Z
168+
* Updated: 2024-10-09T18:40:20Z
166169
* License: MIT or Apache-2.0 or GPL-2.0 or GPL-3.0 or contact us for more
167170
* Contact: Joel Parker Henderson ([email protected])

doc/lib/all.html

+1-1
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Assert expression matches a case."><title>lib::assert_matches::assert_matches - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../../static.files/rustdoc-c5d6553a23f1e5a6.css"><meta name="rustdoc-vars" data-root-path="../../../" data-static-root-path="../../../static.files/" data-current-crate="lib" data-themes="" data-resource-suffix="" data-rustdoc-version="1.81.0 (eeb90cda1 2024-09-04)" data-channel="1.81.0" data-search-js="search-d234aafac6c221dd.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../../static.files/storage-118b08c4c78b968e.js"></script><script defer src="../sidebar-items.js"></script><script defer src="../../../static.files/main-d2fab2bf619172d3.js"></script><noscript><link rel="stylesheet" href="../../../static.files/noscript-df360f571f6edeae.css"></noscript><link rel="alternate icon" type="image/png" href="../../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc mod"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../../lib/index.html">lib</a></h2></div><h2 class="location"><a href="#">Module assert_matches</a></h2><div class="sidebar-elems"><h2><a href="../index.html">In lib::assert_matches</a></h2></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><h1>Module <a href="../../index.html">lib</a>::<wbr><a href="../index.html">assert_matches</a>::<wbr><a class="mod" href="#">assert_matches</a><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><span class="out-of-band"><a class="src" href="../../../src/lib/assert_matches/assert_matches.rs.html#1-218">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Assert expression matches a case.</p>
2+
<h2 id="example"><a class="doc-anchor" href="#example">§</a>Example</h2>
3+
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>assertables::<span class="kw-2">*</span>;
4+
5+
<span class="kw">let </span>a = <span class="string">'a'</span>;
6+
<span class="macro">assert_matches!</span>(a, <span class="string">'a'</span>..=<span class="string">'z'</span>);</code></pre></div>
7+
<p>Note: this implementation of <code>assert_matches</code> is relatively basic.</p>
8+
<ul>
9+
<li>
10+
<p>If you want more capabilities, consider the crate <code>assert_matches</code>.</p>
11+
</li>
12+
<li>
13+
<p>If you’re using Rust nightly, use the std lib macro <code>assert_matches</code>.</p>
14+
</li>
15+
</ul>
16+
<h2 id="module-macros"><a class="doc-anchor" href="#module-macros">§</a>Module macros</h2>
17+
<ul>
18+
<li><a href="../../macro.assert_matches.html" title="macro lib::assert_matches"><code>assert_matches</code></a></li>
19+
<li><a href="../../macro.assert_matches_as_result.html" title="macro lib::assert_matches_as_result"><code>assert_matches_as_result</code></a></li>
20+
<li><a href="../../macro.debug_assert_matches.html" title="macro lib::debug_assert_matches"><code>debug_assert_matches</code></a></li>
21+
</ul>
22+
</div></details></section></div></main></body></html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
window.SIDEBAR_ITEMS = {};

0 commit comments

Comments
 (0)