1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
//! # Assertables: Rust crate of assert macros for testing
//!
//! The `assertables` Rust crate provides many assert macros to improve your
//! compile-time tests and run-time reliability.
//!
//! Crate:
//! [https://crates.io/crates/assertables](https://crates.io/crates/assertables)
//!
//! Docs: [https://docs.rs/assertables/](https://docs.rs/assertables/)
//!
//! Repo:
//! [https://github.com/sixarm/assertables-rust-crate/](https://github.com/sixarm/assertables-rust-crate/)
//!
//!
//! ## Why use this?
//! 
//! When you write Rust tests, then you can use Rust assert macros, such as:
//! 
//! ```ignore
//! assert_eq!(value1, value2)
//! ```
//! 
//! The assertables Rust crate provides many more assert macros for values,
//! strings, vectors, readers, commands, and more, such as:
//! 
//! ```ignore
//! 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.
//! 
//! 
//! ### Benefits
//! 
//! * 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.
//!
//! ### Features
//! 
//! * 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.
//! 
//! 
//! ## Complete list of assert macros
//! 
//! 
//! ### assert_* for values
//!
//! 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) 
//! 
//! 
//! ### assert_* for strings and matchers
//!
//! 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)
//!
//! 
//! ### assert_set_* for set collection comparisons
//!
//! 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 = ∅
//!
//!
//! ### assert_bag_* for bag collection comparisons
//!
//! 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
//!
//!
//! ### assert_fn_* for function return-value comparisons
//!
//! 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
//!
//!
//! ### assert_fn_ok_* for Result Ok() comparisons
//!
//! 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
//!
//!
//! ### assert_fn_err_* for function Err() comparisons
//!
//! Compare a function Err() with another function Err():
//!
//! * `assert_fn_err_eq!(function1, function2)` ≈ function1().unwrap_err() = function2().unwrap_err()
//!
//! * `assert_fn_err_ne!(function1, function2)` ≈ function1().unwrap_err() ≠ function2().unwrap_err()
//!
//! * `assert_fn_err_ge!(function1, function2)` ≈ function1().unwrap_err() ≥ function2().unwrap_err()
//! 
//! * `assert_fn_err_gt!(function1, function2)` ≈ function1().unwrap_err() > function2().unwrap_err()
//!
//! * `assert_fn_err_le!(function1, function2)` ≈ function1().unwrap_err() ≤ function2().unwrap_err()
//! 
//! * `assert_fn_err_lt!(function1, function2)` ≈ function1().unwrap_err() < function2().unwrap_err()
//!
//! 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
//!
//!
//! ### assert_read_to_string_* for std::io::Read comparisons
//!
//! 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.read_to_string() = reader2.read_to_string()
//!
//! * `assert_read_to_string_ne!(reader1, reader2)` ≈ reader1.read_to_string() ≠ reader2.read_to_string()
//!
//! * `assert_read_to_string_ge!(reader1, reader2)` ≈ reader1.read_to_string() ≥ reader2.read_to_string()
//!
//! * `assert_read_to_string_gt!(reader1, reader2)` ≈ reader1.read_to_string() > reader2.read_to_string()
//!
//! * `assert_read_to_string_le!(reader1, reader2)` ≈ reader1.read_to_string() ≤ reader2.read_to_string()
//! 
//! * `assert_read_to_string_lt!(reader1, reader2)` ≈ reader1.read_to_string() < reader2.read_to_string()
//!
//! Compare a reader with an expression:
//! 
//! * `assert_read_to_string_eq_expr(reader, expr)` ≈ reader.read_to_string() = expr
//!
//! * `assert_read_to_string_ne_expr(reader, expr)` ≈ reader.read_to_string() ≠ expr
//! 
//! * `assert_read_to_string_ge_expr(reader, expr)` ≈ reader.read_to_string() ≥ expr
//!
//! * `assert_read_to_string_gt_expr(reader, expr)` ≈ reader.read_to_string() > expr
//!
//! * `assert_read_to_string_le_expr(reader, expr)` ≈ reader.read_to_string() ≤ expr
//!
//! * `assert_read_to_string_lt_expr(reader, expr)` ≈ reader.read_to_string() < expr
//!
//!
//! ### assert_command_* for process command comparisons
//!
//! 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
//!
//!
//! ### assert_program_args_* for process command comparisons created via program name and args interator
//!
//! 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
//!
//!
//! ## Naming conventions
//!
//! 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.
//!
//!
//! ## Forms
//! 
//! 
//! ### Forms for panic! versus Err()
//! 
//! The assert macros have three forms that you can use depending on your goals:
//! 
//! 
//! ```ignore
//! assert_gt!(a, b); // return () or panic!(…), for typical compile-time testing
//! 
//! debug_assert_gt!(a, b); // return () or panic!(…), for a non-optimized runtime
//! 
//! assert_gt_as_result!(a, b); // return Result Ok(()) or Err(…), for any runtime
//! ```
//! 
//! 
//! ### Forms for messages
//! 
//! The assert macros have forms for default messages versus custom messages.
//! 
//! ```ignore
//! assert_gt!(1, 2); // panic!("assertion failed: assert_gt(1, 2)…")
//! 
//! assert_gt!(1, 2, "message"); // panic!("message")
//! ```
//! 
//! 
//! ### Forms for comparing an other versus an expression
//! 
//! Some assert macros have forms for comparing an other versus an expression:
//! 
//! ```ignore
//! assert_read_to_string_eq!(reader1, reader2); // reader1.read_to_string() = reader2.read_to_string()
//! 
//! assert_read_to_string_eq_expr!(reader, expr); // reader1.read_to_string() = expr
//! ```
//!
//! 
//! ## Changes summary
//! 
//!  
//! ### Version 7.x top changes
//!
//! * Add `assert_in_delta`, `assert_in_epsilon`.
//!
//! * Add `asssert_fn_*` macros with multiple arities.
//!
//! * Add `cargo release` for optimized tagged releases.
//!
//! 
//! ### Version 6.x top changes
//!
//! * Add `assert_starts_with`, `assert_ends_with`, `assert_contains`, `assert_is_match`.
//!
//! * Add `debug_assert_*` macros everywhere.
//!
//! * Add `GPL-3.0` license.
//!
//!
//! ## Tracking
//!
//! * Package: assertables-rust-crate
//! * Version: 7.0.1
//! * Created: 2021-03-30T15:47:49Z
//! * Updated: 2023-03-08T20:22:32Z
//! * License: MIT or Apache-2.0 or GPL-2.0 or GPL-3.0 or contact us for more
//! * Contact: Joel Parker Henderson (joel@sixarm.com)

// Assert truth
pub mod assert; // (provided by Rust `std`)

// Assert value comparison
pub mod assert_eq; // (provided by Rust `std`)
pub mod assert_ne;
pub mod assert_lt;
pub mod assert_le;
pub mod assert_gt;
pub mod assert_ge;

// Assert value nearness
pub mod assert_in_delta;
pub mod assert_in_epsilon;

// Assert value matching
pub mod assert_starts_with; pub mod assert_not_starts_with;
pub mod assert_ends_with; pub mod assert_not_ends_with;
pub mod assert_contains; pub mod assert_not_contains;
pub mod assert_is_match; pub mod assert_not_match;

// Assertable iterator-related set-based comparison
pub mod assert_set_eq;
pub mod assert_set_ne;
pub mod assert_set_subset;
pub mod assert_set_superset;
pub mod assert_set_joint;
pub mod assert_set_disjoint;

// Assertable iterator-related bag-based comparison
pub mod assert_bag_eq;
pub mod assert_bag_ne;
pub mod assert_bag_subbag;
pub mod assert_bag_superbag;

// Assert function return
pub mod assert_fn_eq; pub mod assert_fn_eq_expr;
pub mod assert_fn_ne; pub mod assert_fn_ne_expr;
pub mod assert_fn_lt; pub mod assert_fn_lt_expr;
pub mod assert_fn_le; pub mod assert_fn_le_expr;
pub mod assert_fn_gt; pub mod assert_fn_gt_expr;
pub mod assert_fn_ge; pub mod assert_fn_ge_expr;

// Assert function Ok()
pub mod assert_fn_ok_eq; pub mod assert_fn_ok_eq_expr;
pub mod assert_fn_ok_ne; pub mod assert_fn_ok_ne_expr;
pub mod assert_fn_ok_lt; pub mod assert_fn_ok_lt_expr;
pub mod assert_fn_ok_le; pub mod assert_fn_ok_le_expr;
pub mod assert_fn_ok_gt; pub mod assert_fn_ok_ge_expr;
pub mod assert_fn_ok_ge; pub mod assert_fn_ok_gt_expr;

// Assert function Err() 
pub mod assert_fn_err_eq; pub mod assert_fn_err_eq_expr;
pub mod assert_fn_err_ne; pub mod assert_fn_err_ne_expr;
pub mod assert_fn_err_lt; pub mod assert_fn_err_lt_expr;
pub mod assert_fn_err_le; pub mod assert_fn_err_le_expr;
pub mod assert_fn_err_gt; pub mod assert_fn_err_gt_expr;
pub mod assert_fn_err_ge; pub mod assert_fn_err_ge_expr;

// Assert std::io::read comparisons
pub mod assert_read_to_string_eq; pub mod assert_read_to_string_eq_expr;
pub mod assert_read_to_string_ne; pub mod assert_read_to_string_ne_expr;
pub mod assert_read_to_string_lt; pub mod assert_read_to_string_lt_expr;
pub mod assert_read_to_string_le; pub mod assert_read_to_string_le_expr;
pub mod assert_read_to_string_gt; pub mod assert_read_to_string_gt_expr;
pub mod assert_read_to_string_ge; pub mod assert_read_to_string_ge_expr;


// Assert std::io::read specializations
pub mod assert_read_to_string_contains;
pub mod assert_read_to_string_matches;

// Assert command stdout
pub mod assert_command_stdout_eq; pub mod assert_command_stdout_eq_expr;

// Assert command stdout specializations
pub mod assert_command_stdout_contains;
pub mod assert_command_stdout_is_match;

// Assert command stderr
pub mod assert_command_stderr_eq; pub mod assert_command_stderr_eq_expr;

// Assert command stderr specializations
pub mod assert_command_stderr_contains; 
pub mod assert_command_stderr_is_match; 

// Assert program args stdout
pub mod assert_program_args_stdout_eq; pub mod assert_program_args_stdout_eq_expr;
pub mod assert_program_args_stdout_ne; pub mod assert_program_args_stdout_ne_expr;
pub mod assert_program_args_stdout_lt; pub mod assert_program_args_stdout_lt_expr;
pub mod assert_program_args_stdout_le; pub mod assert_program_args_stdout_le_expr;
pub mod assert_program_args_stdout_gt; pub mod assert_program_args_stdout_gt_expr;
pub mod assert_program_args_stdout_ge; pub mod assert_program_args_stdout_ge_expr;

// Assert program args stdout specializations
pub mod assert_program_args_stdout_contains;
pub mod assert_program_args_stdout_is_match;

// Assert program args stderr
pub mod assert_program_args_stderr_eq; pub mod assert_program_args_stderr_eq_expr;
pub mod assert_program_args_stderr_ne; pub mod assert_program_args_stderr_ne_expr;
pub mod assert_program_args_stderr_lt; pub mod assert_program_args_stderr_lt_expr;
pub mod assert_program_args_stderr_le; pub mod assert_program_args_stderr_le_expr;
pub mod assert_program_args_stderr_gt; pub mod assert_program_args_stderr_gt_expr;
pub mod assert_program_args_stderr_ge; pub mod assert_program_args_stderr_ge_expr;

// Assert program args stderr specializations
pub mod assert_program_args_stderr_contains;
pub mod assert_program_args_stderr_is_match;