nautilus-core 0.56.0

Core functionality for the Nautilus trading engine
Documentation
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
// -------------------------------------------------------------------------------------------------
//  Copyright (C) 2015-2026 Nautech Systems Pty Ltd. All rights reserved.
//  https://nautechsystems.io
//
//  Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
//  You may not use this file except in compliance with the License.
//  You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
//
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS,
//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//  See the License for the specific language governing permissions and
//  limitations under the License.
// -------------------------------------------------------------------------------------------------

//! Functions for correctness checks similar to the *design by contract* philosophy.
//!
//! This module provides validation checking of function or method conditions.
//!
//! A condition is a predicate which must be true just prior to the execution of
//! some section of code - for correct behavior as per the design specification.
//!
//! A typed [`Result`] is returned with a descriptive message when the condition
//! check fails.

use std::fmt::{Debug, Display};

use rust_decimal::Decimal;
use thiserror::Error;

use crate::collections::{MapLike, SetLike};

/// A message prefix that can be used with calls to `expect` or other assertion-related functions.
///
/// This constant provides a standard message that can be used to indicate a failure condition
/// when a predicate or condition does not hold true. It is typically used in conjunction with
/// functions like `expect` to provide a consistent error message.
pub const FAILED: &str = "Condition failed";

/// Error type for correctness checks.
#[derive(Clone, Debug, Error, Eq, PartialEq)]
pub enum CorrectnessError {
    /// A predicate or invariant check failed.
    #[error("{message}")]
    PredicateViolation {
        /// The failure message.
        message: String,
    },
    /// A string was empty.
    #[error("invalid string for '{param}', was empty")]
    EmptyString {
        /// The parameter name.
        param: String,
    },
    /// A string was all whitespace.
    #[error("invalid string for '{param}', was all whitespace")]
    WhitespaceString {
        /// The parameter name.
        param: String,
    },
    /// A string contained a non-ASCII character.
    #[error("invalid string for '{param}' contained a non-ASCII char, was '{value}'")]
    NonAsciiString {
        /// The parameter name.
        param: String,
        /// The provided value.
        value: String,
    },
    /// A string did not contain an expected pattern.
    #[error("invalid string for '{param}' did not contain '{pattern}', was '{value}'")]
    MissingSubstring {
        /// The parameter name.
        param: String,
        /// The expected substring.
        pattern: String,
        /// The provided value.
        value: String,
    },
    /// Two values were not equal.
    #[error(
        "'{lhs_param}' {type_name} of {lhs} was not equal to '{rhs_param}' {type_name} of {rhs}"
    )]
    EqualityMismatch {
        /// The left parameter name.
        lhs_param: String,
        /// The right parameter name.
        rhs_param: String,
        /// The left value.
        lhs: String,
        /// The right value.
        rhs: String,
        /// The displayed type name.
        type_name: &'static str,
    },
    /// A value that must be positive was not positive.
    #[error("invalid {type_name} for '{param}' not positive, was {value}")]
    NotPositive {
        /// The parameter name.
        param: String,
        /// The provided value.
        value: String,
        /// The displayed type name.
        type_name: &'static str,
    },
    /// A value that must not be negative was negative.
    #[error("invalid {type_name} for '{param}' negative, was {value}")]
    NegativeValue {
        /// The parameter name.
        param: String,
        /// The provided value.
        value: String,
        /// The displayed type name.
        type_name: &'static str,
    },
    /// A value was invalid for its type.
    #[error("invalid {type_name} for '{param}', was {value}")]
    InvalidValue {
        /// The parameter name.
        param: String,
        /// The provided value.
        value: String,
        /// The displayed type name.
        type_name: &'static str,
    },
    /// A value was outside an inclusive range.
    #[error("invalid {type_name} for '{param}' not in range [{min}, {max}], was {value}")]
    OutOfRange {
        /// The parameter name.
        param: String,
        /// The lower bound.
        min: String,
        /// The upper bound.
        max: String,
        /// The provided value.
        value: String,
        /// The displayed type name.
        type_name: &'static str,
    },
    /// A collection that must be empty was not empty.
    #[error("the '{param}' {collection_kind} `{type_repr}` was not empty")]
    CollectionNotEmpty {
        /// The parameter name.
        param: String,
        /// The collection kind.
        collection_kind: &'static str,
        /// The collection type representation.
        type_repr: String,
    },
    /// A collection that must not be empty was empty.
    #[error("the '{param}' {collection_kind} `{type_repr}` was empty")]
    CollectionEmpty {
        /// The parameter name.
        param: String,
        /// The collection kind.
        collection_kind: &'static str,
        /// The collection type representation.
        type_repr: String,
    },
    /// A map key was already present.
    #[error("the '{key_name}' key {key} was already in the '{map_name}' map `{map_type_repr}`")]
    KeyPresent {
        /// The key parameter name.
        key_name: String,
        /// The map parameter name.
        map_name: String,
        /// The key value.
        key: String,
        /// The map type representation.
        map_type_repr: String,
    },
    /// A map key was missing.
    #[error("the '{key_name}' key {key} was not in the '{map_name}' map `{map_type_repr}`")]
    KeyMissing {
        /// The key parameter name.
        key_name: String,
        /// The map parameter name.
        map_name: String,
        /// The key value.
        key: String,
        /// The map type representation.
        map_type_repr: String,
    },
    /// A set member was already present.
    #[error("the '{member_name}' member was already in the '{set_name}' set `{set_type_repr}`")]
    MemberPresent {
        /// The member parameter name.
        member_name: String,
        /// The set parameter name.
        set_name: String,
        /// The set type representation.
        set_type_repr: String,
    },
    /// A set member was missing.
    #[error("the '{member_name}' member was not in the '{set_name}' set `{set_type_repr}`")]
    MemberMissing {
        /// The member parameter name.
        member_name: String,
        /// The set parameter name.
        set_name: String,
        /// The set type representation.
        set_type_repr: String,
    },
}

/// Result type for correctness checks.
pub type Result<T> = std::result::Result<T, CorrectnessError>;

/// Result type alias for APIs that want to name the correctness error domain explicitly.
pub type CorrectnessResult<T> = Result<T>;

/// Extension trait for [`CorrectnessResult`] that panics with the error's
/// [`Display`] form rather than its `Debug` form.
///
/// Use this instead of [`std::result::Result::expect`] when unwrapping a
/// correctness result: `expect` formats the error with `{:?}`, which exposes
/// the internal [`CorrectnessError`] struct layout in panic output, while
/// [`CorrectnessResultExt::expect_display`] preserves the human-readable
/// message defined on each variant.
pub trait CorrectnessResultExt<T> {
    /// Returns the contained [`Ok`] value, panicking with `msg: <error display>`
    /// on [`Err`].
    fn expect_display(self, msg: &str) -> T;
}

impl<T> CorrectnessResultExt<T> for CorrectnessResult<T> {
    #[inline]
    #[track_caller]
    fn expect_display(self, msg: &str) -> T {
        match self {
            Ok(value) => value,
            Err(e) => panic!("{msg}: {e}"),
        }
    }
}

/// Checks the `predicate` is true.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_predicate_true(predicate: bool, fail_msg: &str) -> Result<()> {
    if !predicate {
        return Err(CorrectnessError::PredicateViolation {
            message: fail_msg.to_string(),
        });
    }
    Ok(())
}

/// Checks the `predicate` is false.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_predicate_false(predicate: bool, fail_msg: &str) -> Result<()> {
    if predicate {
        return Err(CorrectnessError::PredicateViolation {
            message: fail_msg.to_string(),
        });
    }
    Ok(())
}

/// Checks if the string `s` is not empty.
///
/// This function performs a basic check to ensure the string has at least one character.
/// Unlike `check_valid_string`, it does not validate ASCII characters or check for whitespace.
///
/// # Errors
///
/// Returns an error if `s` is empty.
#[inline(always)]
pub fn check_nonempty_string<T: AsRef<str>>(s: T, param: &str) -> Result<()> {
    if s.as_ref().is_empty() {
        return Err(CorrectnessError::EmptyString {
            param: param.to_string(),
        });
    }
    Ok(())
}

/// Checks the string `s` has semantic meaning and contains only ASCII characters.
///
/// # Errors
///
/// Returns an error if:
/// - `s` is an empty string.
/// - `s` consists solely of whitespace characters.
/// - `s` contains one or more non-ASCII characters.
#[inline(always)]
pub fn check_valid_string_ascii<T: AsRef<str>>(s: T, param: &str) -> Result<()> {
    let s = s.as_ref();

    if s.is_empty() {
        return Err(CorrectnessError::EmptyString {
            param: param.to_string(),
        });
    }

    // Ensure string is only traversed once
    let mut has_non_whitespace = false;

    for c in s.chars() {
        if !c.is_whitespace() {
            has_non_whitespace = true;
        }

        if !c.is_ascii() {
            return Err(CorrectnessError::NonAsciiString {
                param: param.to_string(),
                value: s.to_string(),
            });
        }
    }

    if !has_non_whitespace {
        return Err(CorrectnessError::WhitespaceString {
            param: param.to_string(),
        });
    }

    Ok(())
}

/// Checks the string `s` has semantic meaning and allows UTF-8 characters.
///
/// This is a relaxed version of [`check_valid_string_ascii`] that permits non-ASCII UTF-8 characters.
/// Use this for external identifiers (e.g., exchange symbols) that may contain Unicode characters.
///
/// # Errors
///
/// Returns an error if:
/// - `s` is an empty string.
/// - `s` consists solely of whitespace characters.
#[inline(always)]
pub fn check_valid_string_utf8<T: AsRef<str>>(s: T, param: &str) -> Result<()> {
    let s = s.as_ref();

    if s.is_empty() {
        return Err(CorrectnessError::EmptyString {
            param: param.to_string(),
        });
    }

    let has_non_whitespace = s.chars().any(|c| !c.is_whitespace());

    if !has_non_whitespace {
        return Err(CorrectnessError::WhitespaceString {
            param: param.to_string(),
        });
    }

    Ok(())
}

/// Checks the string `s` if Some, contains only ASCII characters and has semantic meaning.
///
/// # Errors
///
/// Returns an error if:
/// - `s` is an empty string.
/// - `s` consists solely of whitespace characters.
/// - `s` contains one or more non-ASCII characters.
#[inline(always)]
pub fn check_valid_string_ascii_optional<T: AsRef<str>>(s: Option<T>, param: &str) -> Result<()> {
    if let Some(s) = s {
        check_valid_string_ascii(s, param)?;
    }
    Ok(())
}

/// Checks the string `s` contains the pattern `pat`.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_string_contains<T: AsRef<str>>(s: T, pat: &str, param: &str) -> Result<()> {
    let s = s.as_ref();
    if !s.contains(pat) {
        return Err(CorrectnessError::MissingSubstring {
            param: param.to_string(),
            pattern: pat.to_string(),
            value: s.to_string(),
        });
    }
    Ok(())
}

/// Checks the values are equal.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_equal<T: PartialEq + Debug + Display>(
    lhs: &T,
    rhs: &T,
    lhs_param: &str,
    rhs_param: &str,
) -> Result<()> {
    if lhs != rhs {
        return Err(CorrectnessError::EqualityMismatch {
            lhs_param: lhs_param.to_string(),
            rhs_param: rhs_param.to_string(),
            lhs: lhs.to_string(),
            rhs: rhs.to_string(),
            type_name: "value",
        });
    }
    Ok(())
}

/// Checks the `u8` values are equal.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_equal_u8(lhs: u8, rhs: u8, lhs_param: &str, rhs_param: &str) -> Result<()> {
    if lhs != rhs {
        return Err(CorrectnessError::EqualityMismatch {
            lhs_param: lhs_param.to_string(),
            rhs_param: rhs_param.to_string(),
            lhs: lhs.to_string(),
            rhs: rhs.to_string(),
            type_name: "u8",
        });
    }
    Ok(())
}

/// Checks the `usize` values are equal.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_equal_usize(lhs: usize, rhs: usize, lhs_param: &str, rhs_param: &str) -> Result<()> {
    if lhs != rhs {
        return Err(CorrectnessError::EqualityMismatch {
            lhs_param: lhs_param.to_string(),
            rhs_param: rhs_param.to_string(),
            lhs: lhs.to_string(),
            rhs: rhs.to_string(),
            type_name: "usize",
        });
    }
    Ok(())
}

/// Checks the `u64` value is positive (> 0).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_positive_u64(value: u64, param: &str) -> Result<()> {
    if value == 0 {
        return Err(CorrectnessError::NotPositive {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "u64",
        });
    }
    Ok(())
}

/// Checks the `u128` value is positive (> 0).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_positive_u128(value: u128, param: &str) -> Result<()> {
    if value == 0 {
        return Err(CorrectnessError::NotPositive {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "u128",
        });
    }
    Ok(())
}

/// Checks the `i64` value is positive (> 0).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_positive_i64(value: i64, param: &str) -> Result<()> {
    if value <= 0 {
        return Err(CorrectnessError::NotPositive {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "i64",
        });
    }
    Ok(())
}

/// Checks the `i64` value is positive (> 0).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_positive_i128(value: i128, param: &str) -> Result<()> {
    if value <= 0 {
        return Err(CorrectnessError::NotPositive {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "i128",
        });
    }
    Ok(())
}

/// Checks the `f64` value is non-negative (>= 0).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_non_negative_f64(value: f64, param: &str) -> Result<()> {
    if value.is_nan() || value.is_infinite() {
        return Err(CorrectnessError::InvalidValue {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "f64",
        });
    }

    if value < 0.0 {
        return Err(CorrectnessError::NegativeValue {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "f64",
        });
    }
    Ok(())
}

/// Checks the `u8` value is in range [`l`, `r`] (inclusive).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_in_range_inclusive_u8(value: u8, l: u8, r: u8, param: &str) -> Result<()> {
    if value < l || value > r {
        return Err(CorrectnessError::OutOfRange {
            param: param.to_string(),
            min: l.to_string(),
            max: r.to_string(),
            value: value.to_string(),
            type_name: "u8",
        });
    }
    Ok(())
}

/// Checks the `u64` value is range [`l`, `r`] (inclusive).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_in_range_inclusive_u64(value: u64, l: u64, r: u64, param: &str) -> Result<()> {
    if value < l || value > r {
        return Err(CorrectnessError::OutOfRange {
            param: param.to_string(),
            min: l.to_string(),
            max: r.to_string(),
            value: value.to_string(),
            type_name: "u64",
        });
    }
    Ok(())
}

/// Checks the `i64` value is in range [`l`, `r`] (inclusive).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_in_range_inclusive_i64(value: i64, l: i64, r: i64, param: &str) -> Result<()> {
    if value < l || value > r {
        return Err(CorrectnessError::OutOfRange {
            param: param.to_string(),
            min: l.to_string(),
            max: r.to_string(),
            value: value.to_string(),
            type_name: "i64",
        });
    }
    Ok(())
}

/// Checks the `f64` value is in range [`l`, `r`] (inclusive).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_in_range_inclusive_f64(value: f64, l: f64, r: f64, param: &str) -> Result<()> {
    // Hardcoded epsilon is intentional and appropriate here because:
    // - 1e-15 is conservative for IEEE 754 double precision (machine epsilon ~2.22e-16)
    // - This function is used for validation, not high-precision calculations
    // - The epsilon prevents spurious failures due to floating-point representation
    // - Making it configurable would complicate the API for minimal benefit
    const EPSILON: f64 = 1e-15;

    if value.is_nan() || value.is_infinite() {
        return Err(CorrectnessError::InvalidValue {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "f64",
        });
    }

    if value < l - EPSILON || value > r + EPSILON {
        return Err(CorrectnessError::OutOfRange {
            param: param.to_string(),
            min: l.to_string(),
            max: r.to_string(),
            value: value.to_string(),
            type_name: "f64",
        });
    }
    Ok(())
}

/// Checks the `usize` value is in range [`l`, `r`] (inclusive).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_in_range_inclusive_usize(value: usize, l: usize, r: usize, param: &str) -> Result<()> {
    if value < l || value > r {
        return Err(CorrectnessError::OutOfRange {
            param: param.to_string(),
            min: l.to_string(),
            max: r.to_string(),
            value: value.to_string(),
            type_name: "usize",
        });
    }
    Ok(())
}

/// Checks the slice is empty.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_slice_empty<T>(slice: &[T], param: &str) -> Result<()> {
    if !slice.is_empty() {
        return Err(CorrectnessError::CollectionNotEmpty {
            param: param.to_string(),
            collection_kind: "slice",
            type_repr: slice_type_repr::<T>(),
        });
    }
    Ok(())
}

/// Checks the slice is **not** empty.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_slice_not_empty<T>(slice: &[T], param: &str) -> Result<()> {
    if slice.is_empty() {
        return Err(CorrectnessError::CollectionEmpty {
            param: param.to_string(),
            collection_kind: "slice",
            type_repr: slice_type_repr::<T>(),
        });
    }
    Ok(())
}

/// Checks the hashmap is empty.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_map_empty<M>(map: &M, param: &str) -> Result<()>
where
    M: MapLike,
{
    if !map.is_empty() {
        return Err(CorrectnessError::CollectionNotEmpty {
            param: param.to_string(),
            collection_kind: "map",
            type_repr: map_type_repr::<M>(),
        });
    }
    Ok(())
}

/// Checks the map is **not** empty.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_map_not_empty<M>(map: &M, param: &str) -> Result<()>
where
    M: MapLike,
{
    if map.is_empty() {
        return Err(CorrectnessError::CollectionEmpty {
            param: param.to_string(),
            collection_kind: "map",
            type_repr: map_type_repr::<M>(),
        });
    }
    Ok(())
}

/// Checks the `key` is **not** in the `map`.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_key_not_in_map<M>(key: &M::Key, map: &M, key_name: &str, map_name: &str) -> Result<()>
where
    M: MapLike,
{
    if map.contains_key(key) {
        return Err(CorrectnessError::KeyPresent {
            key_name: key_name.to_string(),
            map_name: map_name.to_string(),
            key: key.to_string(),
            map_type_repr: map_type_repr::<M>(),
        });
    }
    Ok(())
}

/// Checks the `key` is in the `map`.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_key_in_map<M>(key: &M::Key, map: &M, key_name: &str, map_name: &str) -> Result<()>
where
    M: MapLike,
{
    if !map.contains_key(key) {
        return Err(CorrectnessError::KeyMissing {
            key_name: key_name.to_string(),
            map_name: map_name.to_string(),
            key: key.to_string(),
            map_type_repr: map_type_repr::<M>(),
        });
    }
    Ok(())
}

/// Checks the `member` is **not** in the `set`.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_member_not_in_set<S>(
    member: &S::Item,
    set: &S,
    member_name: &str,
    set_name: &str,
) -> Result<()>
where
    S: SetLike,
{
    if set.contains(member) {
        return Err(CorrectnessError::MemberPresent {
            member_name: member_name.to_string(),
            set_name: set_name.to_string(),
            set_type_repr: set_type_repr::<S>(),
        });
    }
    Ok(())
}

/// Checks the `member` is in the `set`.
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_member_in_set<S>(
    member: &S::Item,
    set: &S,
    member_name: &str,
    set_name: &str,
) -> Result<()>
where
    S: SetLike,
{
    if !set.contains(member) {
        return Err(CorrectnessError::MemberMissing {
            member_name: member_name.to_string(),
            set_name: set_name.to_string(),
            set_type_repr: set_type_repr::<S>(),
        });
    }
    Ok(())
}

/// Checks the `Decimal` value is positive (> 0).
///
/// # Errors
///
/// Returns an error if the validation check fails.
#[inline(always)]
pub fn check_positive_decimal(value: Decimal, param: &str) -> Result<()> {
    if value <= Decimal::ZERO {
        return Err(CorrectnessError::NotPositive {
            param: param.to_string(),
            value: value.to_string(),
            type_name: "Decimal",
        });
    }
    Ok(())
}

fn slice_type_repr<T>() -> String {
    format!("&[{}]", std::any::type_name::<T>())
}

fn map_type_repr<M>() -> String
where
    M: MapLike,
{
    format!(
        "&<{}, {}>",
        std::any::type_name::<M::Key>(),
        std::any::type_name::<M::Value>(),
    )
}

fn set_type_repr<S>() -> String
where
    S: SetLike,
{
    format!("&<{}>", std::any::type_name::<S::Item>())
}

#[cfg(test)]
mod tests {
    use std::{
        collections::{HashMap, HashSet},
        fmt::Display,
        str::FromStr,
    };

    use rstest::rstest;
    use rust_decimal::Decimal;

    use super::*;

    #[rstest]
    fn test_check_predicate_true_returns_typed_error_with_stable_display() {
        let error = check_predicate_true(false, "the predicate was false").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::PredicateViolation {
                message: "the predicate was false".to_string(),
            }
        );
        assert_eq!(error.to_string(), "the predicate was false");
    }

    #[rstest]
    fn test_expect_display_returns_ok_value() {
        let result: CorrectnessResult<i32> = Ok(42);
        assert_eq!(result.expect_display(FAILED), 42);
    }

    #[rstest]
    #[should_panic(expected = "Condition failed: invalid string for 'value', was empty")]
    fn test_expect_display_panics_with_display_form_on_err() {
        let result: CorrectnessResult<()> = Err(CorrectnessError::EmptyString {
            param: "value".to_string(),
        });
        result.expect_display(FAILED);
    }

    #[rstest]
    #[should_panic(expected = "custom prefix: the predicate was false")]
    fn test_expect_display_uses_provided_prefix() {
        let result: CorrectnessResult<()> = Err(CorrectnessError::PredicateViolation {
            message: "the predicate was false".to_string(),
        });
        result.expect_display("custom prefix");
    }

    #[rstest]
    #[case(false, false)]
    #[case(true, true)]
    fn test_check_predicate_true(#[case] predicate: bool, #[case] expected: bool) {
        let result = check_predicate_true(predicate, "the predicate was false").is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(false, true)]
    #[case(true, false)]
    fn test_check_predicate_false(#[case] predicate: bool, #[case] expected: bool) {
        let result = check_predicate_false(predicate, "the predicate was true").is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case("a")]
    #[case(" ")] // <-- whitespace is allowed
    #[case("  ")] // <-- multiple whitespace is allowed
    #[case("🦀")] // <-- non-ASCII is allowed
    #[case(" a")]
    #[case("a ")]
    #[case("abc")]
    fn test_check_nonempty_string_with_valid_values(#[case] s: &str) {
        assert!(check_nonempty_string(s, "value").is_ok());
    }

    #[rstest]
    #[case("")] // empty string
    fn test_check_nonempty_string_with_invalid_values(#[case] s: &str) {
        assert!(check_nonempty_string(s, "value").is_err());
    }

    #[rstest]
    #[case(" a")]
    #[case("a ")]
    #[case("a a")]
    #[case(" a ")]
    #[case("abc")]
    fn test_check_valid_string_ascii_with_valid_value(#[case] s: &str) {
        assert!(check_valid_string_ascii(s, "value").is_ok());
    }

    #[rstest]
    #[case("")] // <-- empty string
    #[case(" ")] // <-- whitespace-only
    #[case("  ")] // <-- whitespace-only string
    #[case("🦀")] // <-- contains non-ASCII char
    fn test_check_valid_string_ascii_with_invalid_values(#[case] s: &str) {
        assert!(check_valid_string_ascii(s, "value").is_err());
    }

    #[rstest]
    fn test_check_valid_string_ascii_returns_empty_string_error_with_stable_display() {
        let error = check_valid_string_ascii("", "value").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::EmptyString {
                param: "value".to_string(),
            }
        );
        assert_eq!(error.to_string(), "invalid string for 'value', was empty");
    }

    #[rstest]
    fn test_check_valid_string_ascii_returns_non_ascii_error_with_stable_display() {
        let error = check_valid_string_ascii("🦀", "value").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::NonAsciiString {
                param: "value".to_string(),
                value: "🦀".to_string(),
            }
        );
        assert_eq!(
            error.to_string(),
            "invalid string for 'value' contained a non-ASCII char, was '🦀'"
        );
    }

    #[rstest]
    fn test_check_valid_string_ascii_returns_whitespace_string_error_with_stable_display() {
        let error = check_valid_string_ascii("   ", "value").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::WhitespaceString {
                param: "value".to_string(),
            }
        );
        assert_eq!(
            error.to_string(),
            "invalid string for 'value', was all whitespace"
        );
    }

    #[rstest]
    #[case(" a")]
    #[case("a ")]
    #[case("abc")]
    #[case("ETHUSDT")]
    fn test_check_valid_string_utf8_with_valid_values(#[case] s: &str) {
        assert!(check_valid_string_utf8(s, "value").is_ok());
    }

    #[rstest]
    #[case("")] // <-- empty string
    #[case(" ")] // <-- whitespace-only
    #[case("  ")] // <-- whitespace-only string
    fn test_check_valid_string_utf8_with_invalid_values(#[case] s: &str) {
        assert!(check_valid_string_utf8(s, "value").is_err());
    }

    #[rstest]
    #[case(None)]
    #[case(Some(" a"))]
    #[case(Some("a "))]
    #[case(Some("a a"))]
    #[case(Some(" a "))]
    #[case(Some("abc"))]
    fn test_check_valid_string_ascii_optional_with_valid_value(#[case] s: Option<&str>) {
        assert!(check_valid_string_ascii_optional(s, "value").is_ok());
    }

    #[rstest]
    #[case("a", "a")]
    fn test_check_string_contains_when_does_contain(#[case] s: &str, #[case] pat: &str) {
        assert!(check_string_contains(s, pat, "value").is_ok());
    }

    #[rstest]
    #[case("a", "b")]
    fn test_check_string_contains_when_does_not_contain(#[case] s: &str, #[case] pat: &str) {
        assert!(check_string_contains(s, pat, "value").is_err());
    }

    #[rstest]
    #[case(0u8, 0u8, "left", "right", true)]
    #[case(1u8, 1u8, "left", "right", true)]
    #[case(0u8, 1u8, "left", "right", false)]
    #[case(1u8, 0u8, "left", "right", false)]
    #[case(10i32, 10i32, "left", "right", true)]
    #[case(10i32, 20i32, "left", "right", false)]
    #[case("hello", "hello", "left", "right", true)]
    #[case("hello", "world", "left", "right", false)]
    fn test_check_equal<T: PartialEq + Debug + Display>(
        #[case] lhs: T,
        #[case] rhs: T,
        #[case] lhs_param: &str,
        #[case] rhs_param: &str,
        #[case] expected: bool,
    ) {
        let result = check_equal(&lhs, &rhs, lhs_param, rhs_param).is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(0, 0, "left", "right", true)]
    #[case(1, 1, "left", "right", true)]
    #[case(0, 1, "left", "right", false)]
    #[case(1, 0, "left", "right", false)]
    fn test_check_equal_u8_when_equal(
        #[case] lhs: u8,
        #[case] rhs: u8,
        #[case] lhs_param: &str,
        #[case] rhs_param: &str,
        #[case] expected: bool,
    ) {
        let result = check_equal_u8(lhs, rhs, lhs_param, rhs_param).is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    fn test_check_equal_u8_returns_equality_mismatch_with_stable_display() {
        let error = check_equal_u8(1, 2, "left", "right").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::EqualityMismatch {
                lhs_param: "left".to_string(),
                rhs_param: "right".to_string(),
                lhs: "1".to_string(),
                rhs: "2".to_string(),
                type_name: "u8",
            }
        );
        assert_eq!(
            error.to_string(),
            "'left' u8 of 1 was not equal to 'right' u8 of 2"
        );
    }

    #[rstest]
    #[case(0, 0, "left", "right", true)]
    #[case(1, 1, "left", "right", true)]
    #[case(0, 1, "left", "right", false)]
    #[case(1, 0, "left", "right", false)]
    fn test_check_equal_usize_when_equal(
        #[case] lhs: usize,
        #[case] rhs: usize,
        #[case] lhs_param: &str,
        #[case] rhs_param: &str,
        #[case] expected: bool,
    ) {
        let result = check_equal_usize(lhs, rhs, lhs_param, rhs_param).is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(1, "value")]
    fn test_check_positive_u64_when_positive(#[case] value: u64, #[case] param: &str) {
        assert!(check_positive_u64(value, param).is_ok());
    }

    #[rstest]
    #[case(0, "value")]
    fn test_check_positive_u64_when_not_positive(#[case] value: u64, #[case] param: &str) {
        assert!(check_positive_u64(value, param).is_err());
    }

    #[rstest]
    #[case(1, "value")]
    fn test_check_positive_i64_when_positive(#[case] value: i64, #[case] param: &str) {
        assert!(check_positive_i64(value, param).is_ok());
    }

    #[rstest]
    #[case(0, "value")]
    #[case(-1, "value")]
    fn test_check_positive_i64_when_not_positive(#[case] value: i64, #[case] param: &str) {
        assert!(check_positive_i64(value, param).is_err());
    }

    #[rstest]
    #[case(0.0, "value")]
    #[case(1.0, "value")]
    fn test_check_non_negative_f64_when_not_negative(#[case] value: f64, #[case] param: &str) {
        assert!(check_non_negative_f64(value, param).is_ok());
    }

    #[rstest]
    #[case(f64::NAN, "value")]
    #[case(f64::INFINITY, "value")]
    #[case(f64::NEG_INFINITY, "value")]
    #[case(-0.1, "value")]
    fn test_check_non_negative_f64_when_negative(#[case] value: f64, #[case] param: &str) {
        assert!(check_non_negative_f64(value, param).is_err());
    }

    #[rstest]
    #[case(0, 0, 0, "value")]
    #[case(0, 0, 1, "value")]
    #[case(1, 0, 1, "value")]
    fn test_check_in_range_inclusive_u8_when_in_range(
        #[case] value: u8,
        #[case] l: u8,
        #[case] r: u8,
        #[case] desc: &str,
    ) {
        assert!(check_in_range_inclusive_u8(value, l, r, desc).is_ok());
    }

    #[rstest]
    #[case(0, 1, 2, "value")]
    #[case(3, 1, 2, "value")]
    fn test_check_in_range_inclusive_u8_when_out_of_range(
        #[case] value: u8,
        #[case] l: u8,
        #[case] r: u8,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_u8(value, l, r, param).is_err());
    }

    #[rstest]
    #[case(0, 0, 0, "value")]
    #[case(0, 0, 1, "value")]
    #[case(1, 0, 1, "value")]
    fn test_check_in_range_inclusive_u64_when_in_range(
        #[case] value: u64,
        #[case] l: u64,
        #[case] r: u64,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_u64(value, l, r, param).is_ok());
    }

    #[rstest]
    #[case(0, 1, 2, "value")]
    #[case(3, 1, 2, "value")]
    fn test_check_in_range_inclusive_u64_when_out_of_range(
        #[case] value: u64,
        #[case] l: u64,
        #[case] r: u64,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_u64(value, l, r, param).is_err());
    }

    #[rstest]
    #[case(0, 0, 0, "value")]
    #[case(0, 0, 1, "value")]
    #[case(1, 0, 1, "value")]
    fn test_check_in_range_inclusive_i64_when_in_range(
        #[case] value: i64,
        #[case] l: i64,
        #[case] r: i64,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_i64(value, l, r, param).is_ok());
    }

    #[rstest]
    #[case(0.0, 0.0, 0.0, "value")]
    #[case(0.0, 0.0, 1.0, "value")]
    #[case(1.0, 0.0, 1.0, "value")]
    fn test_check_in_range_inclusive_f64_when_in_range(
        #[case] value: f64,
        #[case] l: f64,
        #[case] r: f64,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_f64(value, l, r, param).is_ok());
    }

    #[rstest]
    #[case(-1e16, 0.0, 0.0, "value")]
    #[case(1.0 + 1e16, 0.0, 1.0, "value")]
    fn test_check_in_range_inclusive_f64_when_out_of_range(
        #[case] value: f64,
        #[case] l: f64,
        #[case] r: f64,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_f64(value, l, r, param).is_err());
    }

    #[rstest]
    #[case(0, 1, 2, "value")]
    #[case(3, 1, 2, "value")]
    fn test_check_in_range_inclusive_i64_when_out_of_range(
        #[case] value: i64,
        #[case] l: i64,
        #[case] r: i64,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_i64(value, l, r, param).is_err());
    }

    #[rstest]
    #[case(0, 0, 0, "value")]
    #[case(0, 0, 1, "value")]
    #[case(1, 0, 1, "value")]
    fn test_check_in_range_inclusive_usize_when_in_range(
        #[case] value: usize,
        #[case] l: usize,
        #[case] r: usize,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_usize(value, l, r, param).is_ok());
    }

    #[rstest]
    #[case(0, 1, 2, "value")]
    #[case(3, 1, 2, "value")]
    fn test_check_in_range_inclusive_usize_when_out_of_range(
        #[case] value: usize,
        #[case] l: usize,
        #[case] r: usize,
        #[case] param: &str,
    ) {
        assert!(check_in_range_inclusive_usize(value, l, r, param).is_err());
    }

    #[rstest]
    fn test_check_in_range_inclusive_usize_returns_out_of_range_error_with_stable_display() {
        let error = check_in_range_inclusive_usize(3, 1, 2, "value").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::OutOfRange {
                param: "value".to_string(),
                min: "1".to_string(),
                max: "2".to_string(),
                value: "3".to_string(),
                type_name: "usize",
            }
        );
        assert_eq!(
            error.to_string(),
            "invalid usize for 'value' not in range [1, 2], was 3"
        );
    }

    #[rstest]
    #[case(vec![], true)]
    #[case(vec![1_u8], false)]
    fn test_check_slice_empty(#[case] collection: Vec<u8>, #[case] expected: bool) {
        let result = check_slice_empty(collection.as_slice(), "param").is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(vec![], false)]
    #[case(vec![1_u8], true)]
    fn test_check_slice_not_empty(#[case] collection: Vec<u8>, #[case] expected: bool) {
        let result = check_slice_not_empty(collection.as_slice(), "param").is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    fn test_check_slice_not_empty_returns_collection_empty_error_with_stable_display() {
        let error = check_slice_not_empty::<u8>(&[], "param").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::CollectionEmpty {
                param: "param".to_string(),
                collection_kind: "slice",
                type_repr: "&[u8]".to_string(),
            }
        );
        assert_eq!(error.to_string(), "the 'param' slice `&[u8]` was empty");
    }

    #[rstest]
    #[case(HashMap::new(), true)]
    #[case(HashMap::from([("A".to_string(), 1_u8)]), false)]
    fn test_check_map_empty(#[case] map: HashMap<String, u8>, #[case] expected: bool) {
        let result = check_map_empty(&map, "param").is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(HashMap::new(), false)]
    #[case(HashMap::from([("A".to_string(), 1_u8)]), true)]
    fn test_check_map_not_empty(#[case] map: HashMap<String, u8>, #[case] expected: bool) {
        let result = check_map_not_empty(&map, "param").is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(&HashMap::<u32, u32>::new(), 5, "key", "map", true)] // empty map
    #[case(&HashMap::from([(1, 10), (2, 20)]), 1, "key", "map", false)] // key exists
    #[case(&HashMap::from([(1, 10), (2, 20)]), 5, "key", "map", true)] // key doesn't exist
    fn test_check_key_not_in_map(
        #[case] map: &HashMap<u32, u32>,
        #[case] key: u32,
        #[case] key_name: &str,
        #[case] map_name: &str,
        #[case] expected: bool,
    ) {
        let result = check_key_not_in_map(&key, map, key_name, map_name).is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(&HashMap::<u32, u32>::new(), 5, "key", "map", false)] // empty map
    #[case(&HashMap::from([(1, 10), (2, 20)]), 1, "key", "map", true)] // key exists
    #[case(&HashMap::from([(1, 10), (2, 20)]), 5, "key", "map", false)] // key doesn't exist
    fn test_check_key_in_map(
        #[case] map: &HashMap<u32, u32>,
        #[case] key: u32,
        #[case] key_name: &str,
        #[case] map_name: &str,
        #[case] expected: bool,
    ) {
        let result = check_key_in_map(&key, map, key_name, map_name).is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    fn test_check_key_in_map_returns_key_missing_error_with_stable_display() {
        let map = HashMap::<u32, u32>::new();
        let error = check_key_in_map(&5, &map, "key", "map").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::KeyMissing {
                key_name: "key".to_string(),
                map_name: "map".to_string(),
                key: "5".to_string(),
                map_type_repr: "&<u32, u32>".to_string(),
            }
        );
        assert_eq!(
            error.to_string(),
            "the 'key' key 5 was not in the 'map' map `&<u32, u32>`"
        );
    }

    #[rstest]
    #[case(&HashSet::<u32>::new(), 5, "member", "set", true)] // Empty set
    #[case(&HashSet::from([1, 2]), 1, "member", "set", false)] // Member exists
    #[case(&HashSet::from([1, 2]), 5, "member", "set", true)] // Member doesn't exist
    fn test_check_member_not_in_set(
        #[case] set: &HashSet<u32>,
        #[case] member: u32,
        #[case] member_name: &str,
        #[case] set_name: &str,
        #[case] expected: bool,
    ) {
        let result = check_member_not_in_set(&member, set, member_name, set_name).is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(&HashSet::<u32>::new(), 5, "member", "set", false)] // Empty set
    #[case(&HashSet::from([1, 2]), 1, "member", "set", true)] // Member exists
    #[case(&HashSet::from([1, 2]), 5, "member", "set", false)] // Member doesn't exist
    fn test_check_member_in_set(
        #[case] set: &HashSet<u32>,
        #[case] member: u32,
        #[case] member_name: &str,
        #[case] set_name: &str,
        #[case] expected: bool,
    ) {
        let result = check_member_in_set(&member, set, member_name, set_name).is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case("1", true)] // simple positive integer
    #[case("0.0000000000000000000000000001", true)] // smallest positive (1 × 10⁻²⁸)
    #[case("79228162514264337593543950335", true)] // very large positive (≈ Decimal::MAX)
    #[case("0", false)] // zero should fail
    #[case("-0.0000000000000000000000000001", false)] // tiny negative
    #[case("-1", false)] // simple negative integer
    fn test_check_positive_decimal(#[case] raw: &str, #[case] expected: bool) {
        let value = Decimal::from_str(raw).expect("valid decimal literal");
        let result = super::check_positive_decimal(value, "param").is_ok();
        assert_eq!(result, expected);
    }

    #[rstest]
    #[case(1, true)]
    #[case(u128::MAX, true)]
    #[case(0, false)]
    fn test_check_positive_u128(#[case] value: u128, #[case] expected: bool) {
        assert_eq!(check_positive_u128(value, "value").is_ok(), expected);
    }

    #[rstest]
    #[case(1, true)]
    #[case(i128::MAX, true)]
    #[case(0, false)]
    #[case(-1, false)]
    #[case(i128::MIN, false)]
    fn test_check_positive_i128(#[case] value: i128, #[case] expected: bool) {
        assert_eq!(check_positive_i128(value, "value").is_ok(), expected);
    }

    #[rstest]
    fn test_check_positive_decimal_returns_not_positive_error_with_stable_display() {
        let error = check_positive_decimal(Decimal::ZERO, "param").unwrap_err();

        assert_eq!(
            error,
            CorrectnessError::NotPositive {
                param: "param".to_string(),
                value: "0".to_string(),
                type_name: "Decimal",
            }
        );
        assert_eq!(
            error.to_string(),
            "invalid Decimal for 'param' not positive, was 0"
        );
    }
}