rustrails-model 0.1.2

Model layer (ActiveModel equivalent)
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
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
use std::fmt;
use std::sync::Arc;

use serde_json::Value;

use crate::errors::Errors;

/// Shared predicate type used by conditional validator options.
pub type ValidationPredicate = Arc<dyn Fn(&Value) -> bool + Send + Sync>;
type ValidateFn = dyn Fn(&str, Option<&Value>, &mut Errors) + Send + Sync;
pub type ModelValidationFn = dyn Fn(&dyn Fn(&str) -> Option<Value>, &mut Errors) + Send + Sync;

macro_rules! impl_common_validator_methods {
    () => {
        /// Skips validation when the attribute value is missing or `null`.
        #[must_use]
        pub fn allow_nil(mut self) -> Self {
            self.options.allow_nil = true;
            self
        }

        /// Skips validation when the attribute value is blank.
        #[must_use]
        pub fn allow_blank(mut self) -> Self {
            self.options.allow_blank = true;
            self
        }

        /// Restricts the validator to the provided contexts.
        #[must_use]
        pub fn on(mut self, contexts: Vec<crate::validations::ValidationContext>) -> Self {
            self.options.on = Some(contexts);
            self
        }

        /// Raises immediately instead of collecting produced errors.
        #[must_use]
        pub fn strict(mut self) -> Self {
            self.options.strict = true;
            self
        }

        /// Runs the validator only when the predicate returns `true`.
        #[must_use]
        pub fn if_cond<F>(mut self, cond: F) -> Self
        where
            F: Fn(&serde_json::Value) -> bool + Send + Sync + 'static,
        {
            self.options.if_cond = Some(std::sync::Arc::new(cond));
            self
        }

        /// Skips the validator when the predicate returns `true`.
        #[must_use]
        pub fn unless_cond<F>(mut self, cond: F) -> Self
        where
            F: Fn(&serde_json::Value) -> bool + Send + Sync + 'static,
        {
            self.options.unless_cond = Some(std::sync::Arc::new(cond));
            self
        }
    };
}

pub(crate) use impl_common_validator_methods;

pub mod acceptance;
pub mod confirmation;
pub mod custom;
pub mod exclusion;
pub mod format;
pub mod inclusion;
pub mod length;
pub mod numericality;
pub mod presence;
pub mod uniqueness;

pub use acceptance::AcceptanceValidator;
pub use confirmation::ConfirmationValidator;
pub use custom::CustomValidator;
pub use exclusion::ExclusionValidator;
pub use format::FormatValidator;
pub use inclusion::InclusionValidator;
pub use length::LengthValidator;
pub use numericality::NumericalityValidator;
pub use presence::PresenceValidator;
pub use uniqueness::UniquenessValidator;

/// Contexts that can selectively enable validation rules.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ValidationContext {
    /// Validation while creating a new record.
    Create,
    /// Validation while updating an existing record.
    Update,
    /// Validation during a generic save operation.
    Save,
    /// An application-defined validation context.
    Custom(String),
}

/// Shared runtime options applied by the validation runner.
#[derive(Clone, Default)]
pub struct ValidatorOptions {
    /// Skips validation for missing or `null` values.
    pub allow_nil: bool,
    /// Skips validation for blank values such as empty strings.
    pub allow_blank: bool,
    /// Restricts the validator to explicit contexts.
    pub on: Option<Vec<ValidationContext>>,
    /// Raises immediately instead of collecting produced errors.
    pub strict: bool,
    /// Runs the validator only when the predicate returns `true`.
    pub if_cond: Option<ValidationPredicate>,
    /// Skips the validator when the predicate returns `true`.
    pub unless_cond: Option<ValidationPredicate>,
}

impl fmt::Debug for ValidatorOptions {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("ValidatorOptions")
            .field("allow_nil", &self.allow_nil)
            .field("allow_blank", &self.allow_blank)
            .field("on", &self.on)
            .field("strict", &self.strict)
            .field("if_cond", &self.if_cond.as_ref().map(|_| "<predicate>"))
            .field(
                "unless_cond",
                &self.unless_cond.as_ref().map(|_| "<predicate>"),
            )
            .finish()
    }
}

/// A validation rule that can check a value and report errors.
pub trait Validator: Send + Sync {
    /// Validates a single attribute value, adding any produced errors.
    fn validate(&self, attribute: &str, value: Option<&Value>, errors: &mut Errors);

    /// Validates a single attribute with access to sibling attributes when needed.
    fn validate_with_attrs(
        &self,
        attribute: &str,
        value: Option<&Value>,
        _attrs: &dyn Fn(&str) -> Option<Value>,
        errors: &mut Errors,
    ) {
        self.validate(attribute, value, errors);
    }

    /// Returns the validator's display name.
    fn name(&self) -> &str;

    /// Returns the common runtime options for this validator.
    fn options(&self) -> &ValidatorOptions;
}

/// A single attribute-to-validator binding.
pub struct ValidationRule {
    /// Attribute validated by the rule.
    pub attribute: String,
    /// Validator instance that performs the check.
    pub validator: Box<dyn Validator>,
}

/// Ordered collection of validation rules for a model type.
#[derive(Default)]
pub struct ValidationSet {
    rules: Vec<ValidationRule>,
}

impl ValidationSet {
    /// Creates an empty validation set.
    #[must_use]
    pub fn new() -> Self {
        Self::default()
    }

    /// Adds a validator for the given attribute.
    pub fn add(&mut self, attribute: impl Into<String>, validator: impl Validator + 'static) {
        self.rules.push(ValidationRule {
            attribute: attribute.into(),
            validator: Box::new(validator),
        });
    }

    /// Returns validators registered for the given attribute in registration order.
    #[must_use]
    pub fn validators_on(&self, attribute: &str) -> Vec<&dyn Validator> {
        self.rules
            .iter()
            .filter(|rule| rule.attribute == attribute)
            .map(|rule| rule.validator.as_ref())
            .collect()
    }

    /// Runs all validations and appends any produced errors.
    pub fn validate(
        &self,
        attrs: &dyn Fn(&str) -> Option<Value>,
        errors: &mut Errors,
    ) -> Result<(), String> {
        self.validate_internal(attrs, errors, None)
    }

    /// Runs validations for a specific context.
    pub fn validate_with_context(
        &self,
        attrs: &dyn Fn(&str) -> Option<Value>,
        errors: &mut Errors,
        context: &ValidationContext,
    ) -> Result<(), String> {
        self.validate_internal(attrs, errors, Some(context))
    }

    fn validate_internal(
        &self,
        attrs: &dyn Fn(&str) -> Option<Value>,
        errors: &mut Errors,
        context: Option<&ValidationContext>,
    ) -> Result<(), String> {
        for rule in &self.rules {
            let value = attrs(&rule.attribute);
            if should_skip(rule.validator.options(), value.as_ref(), context) {
                continue;
            }

            let mut produced = Errors::new();
            rule.validator.validate_with_attrs(
                &rule.attribute,
                value.as_ref(),
                attrs,
                &mut produced,
            );

            if produced.is_empty() {
                continue;
            }

            if rule.validator.options().strict {
                return Err(strict_error_message(&produced));
            }

            merge_errors(errors, &produced);
        }

        Ok(())
    }
}

pub trait ValidationDsl {
    fn validates_each<I, S, F>(&mut self, attributes: I, validate_fn: F)
    where
        I: IntoIterator<Item = S>,
        S: Into<String>,
        F: Fn(&str, Option<&Value>, &mut Errors) + Send + Sync + 'static;

    fn validate<F>(&mut self, validate_fn: F)
    where
        F: Fn(&dyn Fn(&str) -> Option<Value>, &mut Errors) + Send + Sync + 'static;
}

impl ValidationDsl for ValidationSet {
    fn validates_each<I, S, F>(&mut self, attributes: I, validate_fn: F)
    where
        I: IntoIterator<Item = S>,
        S: Into<String>,
        F: Fn(&str, Option<&Value>, &mut Errors) + Send + Sync + 'static,
    {
        let validate_fn: Arc<ValidateFn> = Arc::new(validate_fn);

        for attribute in attributes {
            self.add(
                attribute.into(),
                EachValidator::new(Arc::clone(&validate_fn)),
            );
        }
    }

    fn validate<F>(&mut self, validate_fn: F)
    where
        F: Fn(&dyn Fn(&str) -> Option<Value>, &mut Errors) + Send + Sync + 'static,
    {
        self.add("base", ModelValidator::new(validate_fn));
    }
}

#[derive(Clone)]
struct EachValidator {
    validate_fn: Arc<ValidateFn>,
    options: ValidatorOptions,
}

impl EachValidator {
    fn new(validate_fn: Arc<ValidateFn>) -> Self {
        Self {
            validate_fn,
            options: ValidatorOptions::default(),
        }
    }
}

impl Validator for EachValidator {
    fn validate(&self, attribute: &str, value: Option<&Value>, errors: &mut Errors) {
        (self.validate_fn)(attribute, value, errors);
    }

    fn name(&self) -> &str {
        "each"
    }

    fn options(&self) -> &ValidatorOptions {
        &self.options
    }
}

struct ModelValidator {
    validate_fn: Box<ModelValidationFn>,
    options: ValidatorOptions,
}

impl ModelValidator {
    fn new<F>(validate_fn: F) -> Self
    where
        F: Fn(&dyn Fn(&str) -> Option<Value>, &mut Errors) + Send + Sync + 'static,
    {
        Self {
            validate_fn: Box::new(validate_fn),
            options: ValidatorOptions::default(),
        }
    }
}

impl Validator for ModelValidator {
    fn validate(&self, _attribute: &str, _value: Option<&Value>, errors: &mut Errors) {
        (self.validate_fn)(&|_| None, errors);
    }

    fn validate_with_attrs(
        &self,
        _attribute: &str,
        _value: Option<&Value>,
        attrs: &dyn Fn(&str) -> Option<Value>,
        errors: &mut Errors,
    ) {
        (self.validate_fn)(attrs, errors);
    }

    fn name(&self) -> &str {
        "validate"
    }

    fn options(&self) -> &ValidatorOptions {
        &self.options
    }
}

fn merge_errors(target: &mut Errors, produced: &Errors) {
    for error in produced.details() {
        target.add_with_details(
            &error.attribute,
            error.error_type.clone(),
            error.message.clone(),
            error.details.clone(),
        );
    }
}

fn strict_error_message(errors: &Errors) -> String {
    errors
        .full_messages()
        .into_iter()
        .next()
        .unwrap_or_else(|| String::from("validation failed"))
}

pub(crate) fn should_skip(
    options: &ValidatorOptions,
    value: Option<&Value>,
    context: Option<&ValidationContext>,
) -> bool {
    if !context_matches(options.on.as_deref(), context) {
        return true;
    }

    if options.allow_nil && value_is_nil(value) {
        return true;
    }

    if options.allow_blank && value_is_blank(value) {
        return true;
    }

    let null = Value::Null;
    let candidate = value.unwrap_or(&null);

    if let Some(predicate) = &options.if_cond
        && !predicate(candidate)
    {
        return true;
    }

    if let Some(predicate) = &options.unless_cond
        && predicate(candidate)
    {
        return true;
    }

    false
}

pub(crate) fn context_matches(
    allowed: Option<&[ValidationContext]>,
    current: Option<&ValidationContext>,
) -> bool {
    let Some(allowed) = allowed else {
        return true;
    };
    let Some(current) = current else {
        return true;
    };

    allowed.iter().any(|candidate| match (candidate, current) {
        (ValidationContext::Save, _) => true,
        (ValidationContext::Create, ValidationContext::Create)
        | (ValidationContext::Update, ValidationContext::Update)
        | (ValidationContext::Custom(_), ValidationContext::Custom(_)) => candidate == current,
        _ => false,
    })
}

pub(crate) fn value_is_nil(value: Option<&Value>) -> bool {
    matches!(value, None | Some(Value::Null))
}

pub(crate) fn value_is_blank(value: Option<&Value>) -> bool {
    match value {
        None | Some(Value::Null) => true,
        Some(Value::String(text)) => text.trim().is_empty(),
        Some(Value::Array(values)) => values.is_empty(),
        Some(Value::Object(values)) => values.is_empty(),
        Some(Value::Bool(flag)) => !flag,
        Some(Value::Number(_)) => false,
    }
}

/// Creates a presence validator.
#[must_use]
pub fn presence() -> PresenceValidator {
    PresenceValidator::new()
}

/// Creates a length validator.
#[must_use]
pub fn length() -> LengthValidator {
    LengthValidator::new()
}

/// Creates a numericality validator.
#[must_use]
pub fn numericality() -> NumericalityValidator {
    NumericalityValidator::new()
}

/// Creates a format validator that requires the given regex pattern to match.
#[must_use]
pub fn format_with(pattern: &str) -> FormatValidator {
    FormatValidator::with_pattern(pattern)
}

/// Creates an inclusion validator over the provided values.
#[must_use]
pub fn inclusion<T>(values: T) -> InclusionValidator
where
    T: Into<Vec<Value>>,
{
    InclusionValidator::new(values)
}

/// Creates an exclusion validator over the provided values.
#[must_use]
pub fn exclusion<T>(values: T) -> ExclusionValidator
where
    T: Into<Vec<Value>>,
{
    ExclusionValidator::new(values)
}

/// Creates an acceptance validator with the default accepted values.
#[must_use]
pub fn acceptance() -> AcceptanceValidator {
    AcceptanceValidator::new()
}

/// Creates a confirmation validator for the given confirmation attribute.
#[must_use]
pub fn confirmation(confirmation_field: &str) -> ConfirmationValidator {
    ConfirmationValidator::new(confirmation_field)
}

/// Creates a uniqueness validator.
#[must_use]
pub fn uniqueness() -> UniquenessValidator {
    UniquenessValidator::new()
}

/// Creates a custom validator from a caller-provided function.
#[must_use]
pub fn custom<F>(f: F) -> CustomValidator
where
    F: Fn(&str, Option<&Value>, &mut Errors) + Send + Sync + 'static,
{
    CustomValidator::new(f)
}

#[cfg(test)]
mod tests {
    use std::collections::HashMap;
    use std::sync::{
        Arc,
        atomic::{AtomicBool, Ordering},
    };

    use serde_json::{Value, json};

    use super::{
        ValidationContext, ValidationDsl, ValidationSet, Validator, ValidatorOptions,
        context_matches, custom, length, presence, should_skip, value_is_blank, value_is_nil,
    };
    use crate::errors::{ErrorType, Errors};

    #[derive(Default)]
    struct MarkerValidator {
        options: ValidatorOptions,
    }

    impl MarkerValidator {
        fn new() -> Self {
            Self::default()
        }

        fn allow_nil(mut self) -> Self {
            self.options.allow_nil = true;
            self
        }

        fn allow_blank(mut self) -> Self {
            self.options.allow_blank = true;
            self
        }

        fn on(mut self, contexts: Vec<ValidationContext>) -> Self {
            self.options.on = Some(contexts);
            self
        }

        fn if_cond<F>(mut self, cond: F) -> Self
        where
            F: Fn(&Value) -> bool + Send + Sync + 'static,
        {
            self.options.if_cond = Some(Arc::new(cond));
            self
        }

        fn unless_cond<F>(mut self, cond: F) -> Self
        where
            F: Fn(&Value) -> bool + Send + Sync + 'static,
        {
            self.options.unless_cond = Some(Arc::new(cond));
            self
        }
    }

    impl Validator for MarkerValidator {
        fn validate(&self, attribute: &str, _value: Option<&Value>, errors: &mut Errors) {
            errors.add(attribute, ErrorType::Custom("marker".to_string()), "ran");
        }

        fn name(&self) -> &str {
            "marker"
        }

        fn options(&self) -> &ValidatorOptions {
            &self.options
        }
    }

    #[test]
    fn blank_detection_matches_validation_needs() {
        assert!(value_is_blank(None));
        assert!(value_is_blank(Some(&Value::Null)));
        assert!(value_is_blank(Some(&json!("   "))));
        assert!(value_is_blank(Some(&json!([]))));
        assert!(value_is_blank(Some(&json!({}))));
        assert!(value_is_blank(Some(&json!(false))));
        assert!(!value_is_blank(Some(&json!(0))));
        assert!(!value_is_blank(Some(&json!("Alice"))));
    }

    #[test]
    fn context_matching_treats_save_as_global() {
        let allowed = vec![ValidationContext::Save];

        assert!(context_matches(
            Some(&allowed),
            Some(&ValidationContext::Create)
        ));
        assert!(context_matches(
            Some(&allowed),
            Some(&ValidationContext::Update)
        ));
        assert!(context_matches(
            Some(&allowed),
            Some(&ValidationContext::Save)
        ));
    }

    #[test]
    fn nil_context_matches_every_restricted_validator() {
        let allowed = vec![ValidationContext::Create, ValidationContext::Update];

        assert!(context_matches(Some(&allowed), None));
    }

    #[test]
    fn should_skip_honors_allow_nil_and_allow_blank() {
        let nil_validator = MarkerValidator::new().allow_nil();
        let blank_validator = MarkerValidator::new().allow_blank();

        assert!(should_skip(
            nil_validator.options(),
            Some(&Value::Null),
            Some(&ValidationContext::Save),
        ));
        assert!(should_skip(
            blank_validator.options(),
            Some(&json!("   ")),
            Some(&ValidationContext::Save),
        ));
    }

    #[test]
    fn should_skip_honors_context_and_predicates() {
        let validator = MarkerValidator::new()
            .on(vec![ValidationContext::Create])
            .if_cond(|value| value == &json!("run"))
            .unless_cond(|value| value == &json!("stop"));

        assert!(should_skip(
            validator.options(),
            Some(&json!("run")),
            Some(&ValidationContext::Update),
        ));
        assert!(should_skip(
            validator.options(),
            Some(&json!("miss")),
            Some(&ValidationContext::Create),
        ));
        assert!(should_skip(
            validator.options(),
            Some(&json!("stop")),
            Some(&ValidationContext::Create),
        ));
        assert!(!should_skip(
            validator.options(),
            Some(&json!("run")),
            Some(&ValidationContext::Create),
        ));
    }

    #[test]
    fn validation_set_runs_matching_validators() {
        let mut set = ValidationSet::new();
        set.add("name", MarkerValidator::new());

        let attrs = HashMap::from([("name".to_string(), json!("Alice"))]);
        let mut errors = Errors::new();

        let _ = set.validate(&|name| attrs.get(name).cloned(), &mut errors);

        assert_eq!(errors.count(), 1);
        assert_eq!(errors.on("name")[0].message, "ran");
    }

    #[test]
    fn validation_set_filters_by_context() {
        let mut set = ValidationSet::new();
        set.add(
            "name",
            MarkerValidator::new().on(vec![ValidationContext::Create]),
        );

        let attrs = HashMap::from([("name".to_string(), json!("Alice"))]);
        let mut errors = Errors::new();

        let _ = set.validate_with_context(
            &|name| attrs.get(name).cloned(),
            &mut errors,
            &ValidationContext::Update,
        );
        assert!(errors.is_empty());

        let _ = set.validate_with_context(
            &|name| attrs.get(name).cloned(),
            &mut errors,
            &ValidationContext::Create,
        );
        assert_eq!(errors.count(), 1);
    }

    #[test]
    fn validation_set_skips_custom_validator_when_blank_is_allowed() {
        let called = Arc::new(AtomicBool::new(false));
        let called_clone = Arc::clone(&called);
        let validator = custom(move |_attribute, _value, _errors| {
            called_clone.store(true, Ordering::Relaxed);
        })
        .allow_blank();

        let mut set = ValidationSet::new();
        set.add("nickname", validator);

        let attrs = HashMap::from([("nickname".to_string(), json!("   "))]);
        let mut errors = Errors::new();
        let _ = set.validate(&|name| attrs.get(name).cloned(), &mut errors);

        assert!(errors.is_empty());
        assert!(!called.load(Ordering::Relaxed));
    }

    #[test]
    fn custom_context_matches_same_name() {
        let allowed = vec![ValidationContext::Custom("import".to_string())];

        assert!(context_matches(
            Some(&allowed),
            Some(&ValidationContext::Custom("import".to_string())),
        ));
    }

    #[test]
    fn custom_context_does_not_match_different_name() {
        let allowed = vec![ValidationContext::Custom("import".to_string())];

        assert!(!context_matches(
            Some(&allowed),
            Some(&ValidationContext::Custom("export".to_string())),
        ));
    }

    #[test]
    fn save_context_matches_custom_context() {
        let allowed = vec![ValidationContext::Save];

        assert!(context_matches(
            Some(&allowed),
            Some(&ValidationContext::Custom("import".to_string())),
        ));
    }

    #[test]
    fn value_is_nil_treats_missing_as_nil() {
        assert!(value_is_nil(None));
    }

    #[test]
    fn value_is_nil_treats_null_as_nil() {
        assert!(value_is_nil(Some(&Value::Null)));
    }

    #[test]
    fn value_is_nil_rejects_present_value() {
        assert!(!value_is_nil(Some(&json!(0))));
    }

    #[test]
    fn should_skip_uses_null_for_if_predicates_when_value_is_missing() {
        let validator = MarkerValidator::new().if_cond(Value::is_null);

        assert!(!should_skip(
            validator.options(),
            None,
            Some(&ValidationContext::Save),
        ));
    }

    #[test]
    fn should_skip_uses_null_for_unless_predicates_when_value_is_missing() {
        let validator = MarkerValidator::new().unless_cond(Value::is_null);

        assert!(should_skip(
            validator.options(),
            None,
            Some(&ValidationContext::Save),
        ));
    }

    #[test]
    fn should_not_skip_present_values_without_options() {
        let validator = MarkerValidator::new();

        assert!(!should_skip(
            validator.options(),
            Some(&json!("Alice")),
            Some(&ValidationContext::Save),
        ));
    }

    #[test]
    fn allow_blank_skips_empty_arrays() {
        let validator = MarkerValidator::new().allow_blank();

        assert!(should_skip(
            validator.options(),
            Some(&json!([])),
            Some(&ValidationContext::Save),
        ));
    }

    #[test]
    fn allow_blank_skips_empty_objects() {
        let validator = MarkerValidator::new().allow_blank();

        assert!(should_skip(
            validator.options(),
            Some(&json!({})),
            Some(&ValidationContext::Save),
        ));
    }

    #[test]
    fn validation_set_preserves_rule_order_for_same_attribute() {
        let mut set = ValidationSet::new();
        set.add(
            "name",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("global-first".to_string()),
                    "global-first",
                );
            }),
        );
        set.add(
            "name",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("create-only".to_string()),
                    "create-only",
                );
            })
            .on(vec![ValidationContext::Create]),
        );
        set.add(
            "name",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("update-only".to_string()),
                    "update-only",
                );
            })
            .on(vec![ValidationContext::Update]),
        );
        set.add(
            "name",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("global-last".to_string()),
                    "global-last",
                );
            }),
        );

        let attrs = HashMap::from([("name".to_string(), json!("Alice"))]);
        let mut errors = Errors::new();

        let _ = set.validate_with_context(
            &|name| attrs.get(name).cloned(),
            &mut errors,
            &ValidationContext::Create,
        );

        assert_eq!(
            errors.messages_for("name"),
            vec![
                "global-first".to_string(),
                "create-only".to_string(),
                "global-last".to_string(),
            ]
        );
    }

    #[test]
    fn validation_set_skips_allow_nil_rule_but_runs_required_rule_for_missing_value() {
        let mut set = ValidationSet::new();
        set.add(
            "nickname",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("optional".to_string()),
                    "optional",
                );
            })
            .allow_nil(),
        );
        set.add(
            "nickname",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("required".to_string()),
                    "required",
                );
            }),
        );
        let attrs: HashMap<String, Value> = HashMap::new();
        let mut errors = Errors::new();

        let _ = set.validate(&|name| attrs.get(name).cloned(), &mut errors);

        assert_eq!(
            errors.messages_for("nickname"),
            vec!["required".to_string()]
        );
    }

    fn validate_errors(
        set: &ValidationSet,
        attrs: HashMap<String, Value>,
        context: Option<ValidationContext>,
    ) -> Errors {
        let mut errors = Errors::new();

        match context {
            Some(context) => {
                let _ = set.validate_with_context(
                    &|name| attrs.get(name).cloned(),
                    &mut errors,
                    &context,
                );
            }
            None => {
                let _ = set.validate(&|name| attrs.get(name).cloned(), &mut errors);
            }
        }

        errors
    }

    struct ProcMessageValidator {
        include_attribute: bool,
        options: ValidatorOptions,
    }

    impl ProcMessageValidator {
        fn from_record() -> Self {
            Self {
                include_attribute: false,
                options: ValidatorOptions::default(),
            }
        }

        fn from_record_and_data() -> Self {
            Self {
                include_attribute: true,
                options: ValidatorOptions::default(),
            }
        }

        fn build_message(&self, attribute: &str, attrs: &dyn Fn(&str) -> Option<Value>) -> String {
            let author_name = attrs("author_name")
                .and_then(|value| value.as_str().map(str::to_owned))
                .unwrap_or_default();

            if self.include_attribute {
                format!(
                    "{} is missing. You have failed me for the last time, {}.",
                    rustrails_support::inflector::humanize(attribute),
                    author_name,
                )
            } else {
                format!("You have failed me for the last time, {}.", author_name,)
            }
        }
    }

    impl Validator for ProcMessageValidator {
        fn validate(&self, attribute: &str, _value: Option<&Value>, errors: &mut Errors) {
            errors.add(
                attribute,
                ErrorType::Custom("proc_message".to_string()),
                self.build_message(attribute, &|_| None),
            );
        }

        fn validate_with_attrs(
            &self,
            attribute: &str,
            _value: Option<&Value>,
            attrs: &dyn Fn(&str) -> Option<Value>,
            errors: &mut Errors,
        ) {
            errors.add(
                attribute,
                ErrorType::Custom("proc_message".to_string()),
                self.build_message(attribute, attrs),
            );
        }

        fn name(&self) -> &str {
            "proc_message"
        }

        fn options(&self) -> &ValidatorOptions {
            &self.options
        }
    }

    #[test]
    fn test_single_field_validation() {
        let mut set = ValidationSet::new();
        set.add("content", presence());

        let invalid_errors = validate_errors(
            &set,
            HashMap::from([("title".to_string(), json!("There's no content!"))]),
            None,
        );
        assert!(invalid_errors.any());
        assert_eq!(
            invalid_errors.messages_for("content"),
            vec!["can't be blank".to_string()]
        );

        let valid_errors = validate_errors(
            &set,
            HashMap::from([
                ("title".to_string(), json!("There's no content!")),
                ("content".to_string(), json!("Messa content!")),
            ]),
            None,
        );
        assert!(valid_errors.is_empty());
    }

    #[test]
    fn test_single_attr_validation_and_error_msg() {
        let mut set = ValidationSet::new();
        set.add("content", presence());

        let errors = validate_errors(
            &set,
            HashMap::from([("title".to_string(), json!("There's no content!"))]),
            None,
        );

        assert_eq!(errors.count(), 1);
        assert_eq!(
            errors.messages_for("content"),
            vec!["can't be blank".to_string()]
        );
    }

    #[test]
    fn test_double_attr_validation_and_error_msg() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("content", presence());

        let errors = validate_errors(&set, HashMap::new(), None);

        assert_eq!(errors.count(), 2);
        assert_eq!(
            errors.messages_for("title"),
            vec!["can't be blank".to_string()]
        );
        assert_eq!(
            errors.messages_for("content"),
            vec!["can't be blank".to_string()]
        );
    }

    #[test]
    fn test_multiple_errors_per_attr_iteration_with_full_error_composition() {
        let mut set = ValidationSet::new();
        set.add("content", presence());
        set.add("title", presence());

        let errors = validate_errors(
            &set,
            HashMap::from([
                ("title".to_string(), json!("")),
                ("content".to_string(), json!("")),
            ]),
            None,
        );

        assert_eq!(
            errors.full_messages(),
            vec![
                "Content can't be blank".to_string(),
                "Title can't be blank".to_string(),
            ]
        );
        assert_eq!(errors.count(), 2);
    }

    #[test]
    fn test_errors_on_nested_attributes_expands_name() {
        let mut errors = Errors::new();
        errors.add("replies.name", ErrorType::Blank, "can't be blank");

        assert_eq!(
            errors.full_messages(),
            vec!["Replies name can't be blank".to_string()]
        );
    }

    #[test]
    fn test_errors_on_base() {
        let mut errors = Errors::new();
        errors.add("title", ErrorType::Blank, "can't be blank");
        errors.add("base", ErrorType::Invalid, "Reply is not dignifying");

        assert_eq!(
            errors.messages_for("base"),
            vec!["Reply is not dignifying".to_string()]
        );
        assert_eq!(
            errors.full_messages(),
            vec![
                "Title can't be blank".to_string(),
                "Reply is not dignifying".to_string(),
            ]
        );
        assert_eq!(errors.count(), 2);
    }

    #[test]
    fn test_errors_on_base_with_symbol_message() {
        let mut errors = Errors::new();
        errors.add("title", ErrorType::Blank, "can't be blank");
        errors.add("base", ErrorType::Invalid, "is invalid");

        assert_eq!(errors.messages_for("base"), vec!["is invalid".to_string()]);
        assert_eq!(
            errors.full_messages(),
            vec!["Title can't be blank".to_string(), "is invalid".to_string()]
        );
        assert_eq!(errors.count(), 2);
    }

    #[test]
    fn test_errors_on_custom_attribute() {
        let mut errors = Errors::new();
        errors.add("foo_bar", ErrorType::Invalid, "is invalid");

        assert_eq!(
            errors.full_messages(),
            vec!["Foo bar is invalid".to_string()]
        );
    }

    #[test]
    fn test_errors_on_custom_attribute_with_symbol_message() {
        let mut errors = Errors::new();
        errors.add("foo_bar", ErrorType::Invalid, "is invalid");

        assert_eq!(
            errors.full_messages(),
            vec!["Foo bar is invalid".to_string()]
        );
    }

    #[test]
    fn test_errors_empty_after_errors_on_check() {
        let errors = Errors::new();

        assert!(errors.messages_for("id").is_empty());
        assert!(errors.is_empty());
    }

    #[test]
    fn test_validates_each() {
        let mut set = ValidationSet::new();
        set.validates_each(["first_name", "last_name"], |attribute, value, errors| {
            if value
                .and_then(Value::as_str)
                .is_some_and(|text| text.starts_with('z'))
            {
                errors.add(attribute, ErrorType::Invalid, "starts with z");
            }
        });

        let errors = validate_errors(
            &set,
            HashMap::from([
                ("first_name".to_string(), json!("zed")),
                ("last_name".to_string(), json!("alpha")),
            ]),
            None,
        );

        assert_eq!(
            errors.messages_for("first_name"),
            vec!["starts with z".to_string()]
        );
        assert!(errors.messages_for("last_name").is_empty());
    }

    #[test]
    fn test_validate_block() {
        let mut set = ValidationSet::new();
        <ValidationSet as ValidationDsl>::validate(&mut set, |attrs, errors| {
            if attrs("admin")
                .and_then(|value| value.as_bool())
                .unwrap_or(false)
            {
                errors.add("base", ErrorType::Invalid, "admins are not allowed");
            }
        });

        let errors = validate_errors(
            &set,
            HashMap::from([("admin".to_string(), json!(true))]),
            None,
        );

        assert_eq!(
            errors.messages_for("base"),
            vec!["admins are not allowed".to_string()]
        );
    }

    #[test]
    fn test_validate_block_with_params() {
        let mut set = ValidationSet::new();
        <ValidationSet as ValidationDsl>::validate(&mut set, |attrs, errors| {
            let title = attrs("title").and_then(|value| value.as_str().map(str::to_owned));
            let author = attrs("author_name").and_then(|value| value.as_str().map(str::to_owned));

            if title.as_deref() == Some("Forbidden") && author.as_deref() == Some("Robot") {
                errors.add("title", ErrorType::Invalid, "cannot be assigned to Robot");
            }
        });

        let errors = validate_errors(
            &set,
            HashMap::from([
                ("title".to_string(), json!("Forbidden")),
                ("author_name".to_string(), json!("Robot")),
            ]),
            None,
        );

        assert_eq!(
            errors.messages_for("title"),
            vec!["cannot be assigned to Robot".to_string()]
        );
    }

    #[test]
    fn test_callback_options_to_validate() {
        let sequence = Arc::new(std::sync::Mutex::new(Vec::new()));
        let mut set = ValidationSet::new();

        let sequence_b = Arc::clone(&sequence);
        set.add(
            "title",
            custom(move |_attribute, _value, _errors| {
                sequence_b.lock().unwrap().push("b");
            }),
        );

        let sequence_a = Arc::clone(&sequence);
        set.add(
            "title",
            custom(move |_attribute, _value, _errors| {
                sequence_a.lock().unwrap().push("a");
            })
            .if_cond(|_| true),
        );

        let sequence_c = Arc::clone(&sequence);
        set.add(
            "title",
            custom(move |_attribute, _value, _errors| {
                sequence_c.lock().unwrap().push("c");
            })
            .unless_cond(|_| true),
        );

        let errors = validate_errors(
            &set,
            HashMap::from([("title".to_string(), json!("whatever"))]),
            None,
        );

        assert!(errors.is_empty());
        let recorded = sequence.lock().unwrap().clone();
        assert_eq!(recorded, vec!["b", "a"]);
    }

    #[test]
    fn test_errors_to_json() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("content", presence());

        let errors = validate_errors(&set, HashMap::new(), None);

        assert_eq!(
            errors.as_json(),
            json!({
                "title": ["can't be blank"],
                "content": ["can't be blank"],
            })
        );
    }

    #[test]
    fn test_validation_order() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("title", length().minimum(2));
        set.add("author_name", presence());
        set.add(
            "author_email_address",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("manual".to_string()),
                    "will never be valid",
                );
            }),
        );
        set.add("content", length().minimum(10));

        let errors = validate_errors(
            &set,
            HashMap::from([("title".to_string(), json!(""))]),
            None,
        );

        assert_eq!(
            errors.attributes(),
            vec!["title", "author_name", "author_email_address", "content"]
        );
        assert_eq!(
            errors.messages_for("title"),
            vec![
                "can't be blank".to_string(),
                "is too short (minimum is 2 characters)".to_string(),
            ]
        );
        assert_eq!(
            errors.messages_for("author_name"),
            vec!["can't be blank".to_string()]
        );
        assert_eq!(
            errors.messages_for("author_email_address"),
            vec!["will never be valid".to_string()]
        );
        assert_eq!(
            errors.messages_for("content"),
            vec!["is too short (minimum is 10 characters)".to_string()]
        );
    }

    #[test]
    fn test_validation_with_if_and_on() {
        let called = Arc::new(AtomicBool::new(false));
        let called_on_update = Arc::clone(&called);
        let mut set = ValidationSet::new();
        set.add(
            "title",
            presence()
                .if_cond(move |_| {
                    called_on_update.store(true, Ordering::Relaxed);
                    true
                })
                .on(vec![ValidationContext::Update]),
        );

        let no_context_errors = validate_errors(&set, HashMap::new(), None);
        assert!(no_context_errors.any());

        let create_errors = validate_errors(&set, HashMap::new(), Some(ValidationContext::Create));
        assert!(create_errors.is_empty());

        let update_errors = validate_errors(&set, HashMap::new(), Some(ValidationContext::Update));
        assert!(update_errors.any());
        assert!(called.load(Ordering::Relaxed));
    }

    #[test]
    fn test_invalid_should_be_the_opposite_of_valid() {
        let mut set = ValidationSet::new();
        set.add("title", presence());

        let invalid_errors = validate_errors(&set, HashMap::new(), None);
        assert!(invalid_errors.any());

        let valid_errors = validate_errors(
            &set,
            HashMap::from([("title".to_string(), json!("Things are going to change"))]),
            None,
        );
        assert!(valid_errors.is_empty());
    }

    #[test]
    fn test_validation_with_message_as_proc() {
        let mut set = ValidationSet::new();
        set.add(
            "title",
            custom(|attribute, _value, errors| {
                errors.add(
                    attribute,
                    ErrorType::Custom("proc_message".to_string()),
                    "NO BLANKS HERE",
                );
            }),
        );

        let errors = validate_errors(&set, HashMap::new(), None);

        assert_eq!(
            errors.messages_for("title"),
            vec!["NO BLANKS HERE".to_string()]
        );
    }

    #[test]
    fn test_list_of_validators_for_model() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("title", length().minimum(5));

        let validators = set.validators_on("title");
        let names = validators
            .iter()
            .map(|validator| validator.name())
            .collect::<Vec<_>>();

        assert_eq!(names, vec!["presence", "length"]);
    }

    #[test]
    fn test_list_of_validators_on_an_attribute() {
        let mut set = ValidationSet::new();
        set.add("title", presence());

        let validators = set.validators_on("title");

        assert_eq!(validators.len(), 1);
        assert_eq!(validators[0].name(), "presence");
    }

    #[test]
    fn test_list_of_validators_on_multiple_attributes() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("author_name", length().minimum(3));

        assert_eq!(set.validators_on("title").len(), 1);
        assert_eq!(set.validators_on("author_name").len(), 1);
        assert!(
            set.validators_on("title")
                .iter()
                .all(|validator| validator.name() == "presence")
        );
        assert!(
            set.validators_on("author_name")
                .iter()
                .all(|validator| validator.name() == "length")
        );
    }

    #[test]
    fn test_list_of_validators_will_be_empty_when_empty() {
        let set = ValidationSet::new();

        assert!(set.validators_on("missing").is_empty());
    }

    #[test]
    fn test_validations_on_the_instance_level() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("author_name", presence());
        set.add("content", length().minimum(10));

        let invalid_errors = validate_errors(&set, HashMap::new(), None);
        assert_eq!(invalid_errors.count(), 3);

        let valid_errors = validate_errors(
            &set,
            HashMap::from([
                ("title".to_string(), json!("Some Title")),
                ("author_name".to_string(), json!("Some Author")),
                (
                    "content".to_string(),
                    json!("Some Content Whose Length is more than 10."),
                ),
            ]),
            None,
        );
        assert!(valid_errors.is_empty());
    }

    #[test]
    fn test_validate() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("author_name", presence());
        set.add("content", length().minimum(10));

        let mut errors = Errors::new();
        assert!(errors.is_empty());

        let attrs: HashMap<String, Value> = HashMap::new();
        let _ = set.validate(&|name| attrs.get(name).cloned(), &mut errors);

        assert!(!errors.is_empty());
    }

    #[test]
    fn test_strict_validation_in_validates() {
        let mut set = ValidationSet::new();
        set.add("title", presence().strict());
        let mut errors = Errors::new();

        let result = set.validate(&|_| None, &mut errors);

        assert_eq!(result, Err("Title can't be blank".to_string()));
        assert!(errors.is_empty());
    }

    #[test]
    fn test_strict_validation_not_fails() {
        let mut set = ValidationSet::new();
        set.add("title", presence().strict());
        let mut errors = Errors::new();

        let result = set.validate(
            &|name| (name == "title").then(|| json!("Present")),
            &mut errors,
        );

        assert_eq!(result, Ok(()));
        assert!(errors.is_empty());
    }

    #[test]
    fn test_strict_validation_particular_validator() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("title", length().minimum(5).strict());
        let mut errors = Errors::new();

        let result = set.validate(&|name| (name == "title").then(|| json!("abc")), &mut errors);

        assert_eq!(
            result,
            Err("Title is too short (minimum is 5 characters)".to_string())
        );
        assert!(errors.is_empty());
    }

    #[test]
    fn test_strict_validation_in_custom_validator_helper() {
        let mut set = ValidationSet::new();
        set.add(
            "title",
            custom(|attribute, _value, errors| {
                errors.add(attribute, ErrorType::Invalid, "is forbidden");
            })
            .strict(),
        );
        let mut errors = Errors::new();

        let result = set.validate(&|_| None, &mut errors);

        assert_eq!(result, Err("Title is forbidden".to_string()));
        assert!(errors.is_empty());
    }

    #[test]
    fn test_strict_validation_error_message() {
        let mut set = ValidationSet::new();
        set.add(
            "base",
            custom(|attribute, _value, errors| {
                errors.add(attribute, ErrorType::Invalid, "record is invalid");
            })
            .strict(),
        );
        let mut errors = Errors::new();

        let result = set.validate(&|_| None, &mut errors);

        assert_eq!(result, Err("record is invalid".to_string()));
        assert!(errors.is_empty());
    }

    #[test]
    fn test_does_not_modify_options_argument() {
        let contexts = vec![ValidationContext::Create];
        let snapshot = contexts.clone();
        let validator = presence().on(contexts.clone());

        assert_eq!(contexts, snapshot);
        assert_eq!(validator.options().on.as_deref(), Some(snapshot.as_slice()));
    }

    #[test]
    fn test_dup_validity_is_independent() {
        let mut set = ValidationSet::new();
        set.add("title", presence());

        let original_errors = validate_errors(
            &set,
            HashMap::from([("title".to_string(), json!("Literature"))]),
            None,
        );
        let duped_errors = validate_errors(&set, HashMap::new(), None);

        assert!(original_errors.is_empty());
        assert_eq!(
            duped_errors.messages_for("title"),
            vec!["can't be blank".to_string()]
        );
    }

    #[test]
    fn test_validation_with_message_as_proc_that_takes_a_record_as_a_parameter() {
        let mut set = ValidationSet::new();
        set.add("title", ProcMessageValidator::from_record());

        let errors = validate_errors(
            &set,
            HashMap::from([("author_name".to_string(), json!("Admiral"))]),
            None,
        );

        assert_eq!(
            errors.messages_for("title"),
            vec!["You have failed me for the last time, Admiral.".to_string()]
        );
    }

    #[test]
    fn test_validation_with_message_as_proc_that_takes_record_and_data_as_a_parameters() {
        let mut set = ValidationSet::new();
        set.add("title", ProcMessageValidator::from_record_and_data());

        let errors = validate_errors(
            &set,
            HashMap::from([("author_name".to_string(), json!("Admiral"))]),
            None,
        );

        assert_eq!(
            errors.messages_for("title"),
            vec!["Title is missing. You have failed me for the last time, Admiral.".to_string()]
        );
    }

    #[test]
    fn strict_validation_preserves_earlier_non_strict_errors_before_returning() {
        let mut set = ValidationSet::new();
        set.add("title", presence());
        set.add("title", length().minimum(5).strict());
        let mut errors = Errors::new();

        let result = set.validate(&|name| (name == "title").then(|| json!("")), &mut errors);

        assert_eq!(
            result,
            Err("Title is too short (minimum is 5 characters)".to_string())
        );
        assert_eq!(
            errors.messages_for("title"),
            vec!["can't be blank".to_string()]
        );
    }

    #[test]
    #[ignore = "Rails-specific: strict validator error message format depends on full ActiveModel error pipeline"]
    fn test_invalid_validator() {}

    #[test]
    #[ignore = "Rails-specific: validate options hash parsing depends on Ruby metaprogramming"]
    fn test_invalid_options_to_validate() {}

    #[test]
    #[ignore = "Rails-specific: frozen model validation depends on Ruby freeze semantics"]
    fn test_frozen_models_can_be_validated() {}

    #[test]
    #[ignore = "Rails-specific: :except_on context filtering is not implemented"]
    fn test_validate_with_except_on() {}

    #[test]
    #[ignore = "Rails-specific: :except_on context filtering is not implemented"]
    fn test_validations_some_with_except() {}

    #[test]
    #[ignore = "Rails-specific: custom attribute readers are not supported in ValidationSet"]
    fn test_validates_each_custom_reader() {}

    #[test]
    #[ignore = "Rails-specific: array condition mutation testing depends on Ruby array semantics"]
    fn test_validates_with_array_condition_does_not_mutate_the_array() {}

    #[test]
    #[ignore = "Rails-specific: validator instance introspection depends on Ruby reflection"]
    fn test_accessing_instance_of_validator_on_an_attribute() {}

    #[test]
    #[ignore = "Rails-specific: validators_for_model multi-attribute introspection not implemented"]
    fn test_list_of_validators_for_model_exposes_all_attributes_at_once() {}

    #[test]
    #[ignore = "Rails-specific: validators_on varargs interface not implemented"]
    fn test_list_of_validators_on_multiple_attributes_accepts_varargs() {}
}