sdforge 0.3.1

Multi-protocol SDK framework with unified macro configuration
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
// Copyright (c) 2026 Kirky.X
// SPDX-License-Identifier: MIT
//! Parameter validation and type conversion utilities
//!
//! This module provides utilities for validating request parameters and
//! converting between different types. Requires the `http` feature.

// =============================================================================
// Security Limits - Input Size Constraints
// =============================================================================

/// Maximum request body size in bytes (10 MB)
///
/// This limit prevents denial-of-service attacks through large payload submission.
/// Adjust based on your application's needs, but always set some reasonable limit.
pub const MAX_REQUEST_BODY_SIZE: usize = 10 * 1024 * 1024; // 10 MB

/// Maximum header name length in characters (128)
///
/// Prevents header-based attacks and excessive memory usage.
pub const MAX_HEADER_NAME_LENGTH: usize = 128;

/// Maximum header value length in bytes (8 KB)
///
/// Limits individual header sizes to prevent buffer exhaustion.
pub const MAX_HEADER_VALUE_LENGTH: usize = 8 * 1024; // 8 KB

/// Maximum URI path length in characters (2048)
///
/// Standard limit for most web servers. Longer paths may indicate attacks.
pub const MAX_URI_PATH_LENGTH: usize = 2048;

/// Maximum query string length in bytes (8 KB)
///
/// Prevents excessive query parameter processing.
pub const MAX_QUERY_STRING_LENGTH: usize = 8 * 1024; // 8 KB

/// Maximum number of headers per request (100)
///
/// Limits header count to prevent header flooding attacks.
pub const MAX_HEADER_COUNT: usize = 100;

/// Maximum API key length in characters (512)
///
/// API keys should be reasonably sized. Longer keys may indicate attacks.
pub const MAX_API_KEY_LENGTH: usize = 512;

/// Maximum JWT token length in characters (4096)
///
/// JWT tokens have a practical maximum size based on claims.
pub const MAX_JWT_TOKEN_LENGTH: usize = 4096;

/// Maximum username length in characters (256)
///
/// Prevents username-based attacks and database field overflow.
pub const MAX_USERNAME_LENGTH: usize = 256;

/// Maximum email length in characters (320)
///
/// RFC 5322 specifies maximum email length as 320 characters.
pub const MAX_EMAIL_LENGTH: usize = 320;

/// Maximum password length in characters (1024)
///
/// While passwords shouldn't be this long, we set a reasonable limit.
pub const MAX_PASSWORD_LENGTH: usize = 1024;

/// Minimum password length in characters (8)
///
/// Security best practice for password policies.
pub const MIN_PASSWORD_LENGTH: usize = 8;

/// Maximum description or text field length (10 KB)
///
/// For general text fields that don't need article-length content.
pub const MAX_TEXT_FIELD_LENGTH: usize = 10 * 1024; // 10 KB

/// Maximum JSON field name length in characters (256)
///
/// Prevents excessively long field names in JSON payloads.
pub const MAX_JSON_FIELD_NAME_LENGTH: usize = 256;

/// Maximum array length in JSON payloads (10000)
///
/// Prevents array-based DoS attacks.
pub const MAX_JSON_ARRAY_LENGTH: usize = 10_000;

/// Maximum nesting depth for JSON objects (100)
///
/// Prevents deeply nested JSON parsing attacks.
pub const MAX_JSON_DEPTH: usize = 100;

#[cfg(feature = "http")]
use serde::Deserialize;
#[cfg(feature = "http")]
use thiserror::Error;
#[cfg(feature = "http")]
use validator::{Validate, ValidationErrors};

#[cfg(feature = "http")]
/// Parameter validation errors
#[derive(Debug, Error, Clone)]
#[error("Validation failed: {errors:?}")]
pub struct ValidationErrorsWrapper {
    /// Validation errors
    pub errors: Vec<FieldValidationError>,
}

#[cfg(feature = "http")]
impl ValidationErrorsWrapper {
    /// Create new validation errors wrapper
    pub fn new(errors: Vec<FieldValidationError>) -> Self {
        Self { errors }
    }

    /// Convert from validator::ValidationErrors
    pub fn from_validation_errors(errors: &ValidationErrors) -> Self {
        let field_errors: Vec<FieldValidationError> = errors
            .field_errors()
            .into_iter()
            .map(|(field, errors)| FieldValidationError {
                field: field.to_string(),
                constraints: errors.iter().map(|e| e.code.to_string()).collect(),
            })
            .collect();

        Self::new(field_errors)
    }
}

/// Single field validation error
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct FieldValidationError {
    /// Field name
    pub field: String,
    /// Validation constraints that failed
    pub constraints: Vec<String>,
}

#[cfg(feature = "http")]
/// Type for validated parameters
///
/// A marker trait for types that can be deserialized and validated.
/// Used by [`extract_validated`] for JSON parameter extraction.
pub trait ValidatedParam: for<'de> Deserialize<'de> + Validate {}

#[cfg(feature = "http")]
impl<T: for<'de> Deserialize<'de> + Validate> ValidatedParam for T {}

/// Validation result type
///
/// A result type for validation operations that can return multiple errors.
#[cfg(feature = "http")]
pub type ValidationResult<T> = Result<T, ValidationErrorsWrapper>;

#[cfg(feature = "http")]
/// Convert validator errors to API errors
impl From<ValidationErrorsWrapper> for super::ApiError {
    fn from(err: ValidationErrorsWrapper) -> Self {
        let first_error = err.errors.first();
        if let Some(error) = first_error {
            let constraint = error
                .constraints
                .first()
                .cloned()
                .unwrap_or_else(|| "invalid".to_string());
            Self::ValidationError {
                field: error.field.clone(),
                constraint,
            }
        } else {
            Self::InvalidInput {
                message: "Validation failed".to_string(),
                field: None,
                value: None,
            }
        }
    }
}

#[cfg(feature = "http")]
/// Common validation helpers
pub mod validators {
    use super::*;
    use once_cell::sync::Lazy;
    use std::collections::HashMap;
    use std::sync::Mutex;
    use validator::ValidationError;

    /// Regex pattern cache (thread-safe with Mutex<HashMap>)
    static REGEX_CACHE: Lazy<Mutex<HashMap<String, regex::Regex>>> =
        Lazy::new(|| Mutex::new(HashMap::new()));

    /// Validate that a string is a valid email
    pub fn validate_email(email: &str) -> Result<(), ValidationError> {
        if !email.contains('@') {
            return Err(ValidationError::new("email"));
        }
        Ok(())
    }

    /// Validate that a string matches a regex pattern (with caching)
    ///
    /// Poison-aware: 若全局 REGEX_CACHE 中毒(之前 panic 永久污染),
    /// 降级为每次重新编译 regex,避免输入校验永久失效。
    pub fn validate_regex(value: &str, pattern: &str) -> Result<(), ValidationError> {
        let regex = match REGEX_CACHE.lock() {
            Ok(mut cache) => {
                if let Some(cached) = cache.get(pattern) {
                    cached.clone()
                } else {
                    let new_regex =
                        regex::Regex::new(pattern).map_err(|_| ValidationError::new("regex"))?;
                    cache.insert(pattern.to_string(), new_regex.clone());
                    new_regex
                }
            }
            Err(_) => {
                // lock poisoned: 降级到无缓存编译,避免校验永久失效
                regex::Regex::new(pattern).map_err(|_| ValidationError::new("regex"))?
            }
        };

        if !regex.is_match(value) {
            return Err(ValidationError::new("regex"));
        }
        Ok(())
    }

    /// Validate that a number is within a range
    pub fn validate_range<T: PartialOrd + Copy>(
        value: T,
        min: T,
        max: T,
    ) -> Result<(), ValidationError> {
        if value < min || value > max {
            return Err(ValidationError::new("range"));
        }
        Ok(())
    }

    /// Validate that a string has a specific length
    pub fn validate_length(value: &str, min: usize, max: usize) -> Result<(), ValidationError> {
        let len = value.chars().count();
        if len < min || len > max {
            return Err(ValidationError::new("length"));
        }
        Ok(())
    }

    /// Custom validation that returns ApiError on failure
    pub fn validate_or_error<F, E>(validate_fn: F, _error_map: impl FnOnce() -> E) -> Result<(), E>
    where
        F: FnOnce() -> Result<(), ValidationError>,
        E: From<ValidationErrorsWrapper>,
    {
        validate_fn().map_err(|_| {
            let errors = ValidationErrorsWrapper::new(vec![]);
            errors.into()
        })
    }
}

/// Input sanitization utilities for security protection
///
/// Provides functions to sanitize user input:
/// - XSS (Cross-Site Scripting)
/// - Path traversal
/// - Command injection
///
/// # Security Note
/// For SQL operations, always use parameterized queries.
/// String sanitization alone cannot prevent SQL injection.
///
/// # Reserved Status
/// This module is reserved for future use in security-sensitive input handling.
/// It provides basic sanitization but is not currently used in the main codebase.
/// Consider using the `ammonia` crate for production HTML sanitization.
#[cfg(feature = "http")]
#[allow(dead_code)] // Reserved for future security-sensitive input handling
pub(crate) mod sanitizer {
    use crate::core::ApiError;
    use std::path::PathBuf;

    /// Sanitize a string to prevent XSS attacks
    ///
    /// Converts HTML special characters to their entity equivalents.
    /// For production HTML sanitization, consider using the `ammonia` crate.
    pub fn sanitize_xss(input: &str) -> String {
        input
            .replace('<', "&lt;")
            .replace('>', "&gt;")
            .replace('"', "&quot;")
            .replace('\'', "&#x27;")
            .replace('/', "&#x2F;")
    }

    /// Sanitize a string to prevent path traversal attacks
    #[allow(clippy::result_large_err)]
    pub fn sanitize_path(input: &str) -> Result<String, ApiError> {
        // Remove null bytes
        let cleaned = input.replace('\0', "");

        // Check for path traversal attempts
        if cleaned.contains("..") || cleaned.contains("//") {
            return Err(ApiError::validation_error(
                "INVALID_PATH",
                "Path contains invalid characters or traversal attempts",
            ));
        }

        // Normalize path
        let _path = PathBuf::from(&cleaned);

        // Ensure the path doesn't escape the intended directory
        // This is a basic check - in production, use proper path canonicalization
        Ok(cleaned)
    }

    /// Sanitize a filename to prevent path traversal and command injection
    #[allow(clippy::result_large_err)]
    pub fn sanitize_filename(input: &str) -> Result<String, ApiError> {
        if input.is_empty() {
            return Err(ApiError::validation_error(
                "INVALID_FILENAME",
                "Filename cannot be empty",
            ));
        }

        // Remove dangerous characters
        let sanitized: String = input
            .chars()
            .filter(|c| c.is_alphanumeric() || *c == '_' || *c == '-' || *c == '.' || *c == ' ')
            .collect();

        if sanitized.is_empty() {
            return Err(ApiError::validation_error(
                "INVALID_FILENAME",
                "Filename contains only invalid characters",
            ));
        }

        // Check for path separators
        if sanitized.contains('/') || sanitized.contains('\\') {
            return Err(ApiError::validation_error(
                "INVALID_FILENAME",
                "Filename cannot contain path separators",
            ));
        }

        Ok(sanitized)
    }

    /// Validate and sanitize a user ID (must be positive integer)
    #[allow(clippy::result_large_err)]
    pub fn validate_user_id(id: i64) -> Result<i64, ApiError> {
        if id <= 0 {
            Err(ApiError::validation_error(
                "INVALID_ID",
                "User ID must be a positive integer",
            ))
        } else {
            Ok(id)
        }
    }

    /// Validate a string is not empty after trimming
    #[allow(clippy::result_large_err)]
    pub fn validate_not_empty(input: &str, field_name: &str) -> Result<String, ApiError> {
        let trimmed = input.trim().to_string();
        if trimmed.is_empty() {
            Err(ApiError::validation_error(
                "EMPTY_FIELD",
                format!("{} cannot be empty", field_name),
            ))
        } else {
            Ok(trimmed)
        }
    }

    /// Validate string length
    #[allow(clippy::result_large_err)]
    pub fn validate_length(
        input: &str,
        min: usize,
        max: usize,
        field_name: &str,
    ) -> Result<String, ApiError> {
        if min > max {
            return Err(ApiError::InvalidInput {
                message: format!("Invalid validation parameters for {}", field_name),
                field: Some(field_name.to_string()),
                value: None,
            });
        }
        let len = input.len();
        if len < min {
            Err(ApiError::validation_error(
                "TOO_SHORT",
                format!("{} must be at least {} characters", field_name, min),
            ))
        } else if len > max {
            Err(ApiError::validation_error(
                "TOO_LONG",
                format!("{} must be at most {} characters", field_name, max),
            ))
        } else {
            Ok(input.to_string())
        }
    }

    /// Validate an email address format
    #[allow(clippy::result_large_err)]
    pub fn validate_email_format(email: &str) -> Result<String, ApiError> {
        let trimmed = email.trim().to_string();

        // Basic email validation
        if !trimmed.contains('@') {
            return Err(ApiError::validation_error(
                "INVALID_EMAIL",
                "Email must contain @ symbol",
            ));
        }

        if !trimmed.contains('.') {
            return Err(ApiError::validation_error(
                "INVALID_EMAIL",
                "Email must contain a domain",
            ));
        }

        // Check for common patterns
        if trimmed.starts_with('@') || trimmed.ends_with('@') {
            return Err(ApiError::validation_error(
                "INVALID_EMAIL",
                "Invalid email format",
            ));
        }

        Ok(trimmed)
    }
}

#[cfg(feature = "http")]
/// Extract validated parameters from JSON
///
/// Deserializes JSON into a type `T` and validates it using the [`Validate`] trait.
/// Returns a [`ValidationResult`] containing either the validated type or validation errors.
///
/// # Example
/// ```ignore
/// let params: MyParams = extract_validated(&json).await?;
/// ```
pub async fn extract_validated<T>(json: &serde_json::Value) -> ValidationResult<T>
where
    T: ValidatedParam + Send,
{
    let params: T =
        serde_json::from_value(json.clone()).map_err(|_| ValidationErrorsWrapper::new(vec![]))?;
    params
        .validate()
        .map_err(|e| ValidationErrorsWrapper::from_validation_errors(&e))?;
    Ok(params)
}

#[cfg(all(feature = "http", test))]
mod tests {
    use super::super::ApiError;
    use super::*;
    use serde::Deserialize;
    use validator::Validate;

    #[derive(Debug, Deserialize, Validate)]
    struct TestParams {
        #[validate(length(min = 1, max = 100))]
        name: String,
        #[validate(email)]
        email: String,
        #[validate(range(min = 18, max = 120))]
        age: u32,
    }

    #[tokio::test]
    async fn test_valid_params() {
        let json = serde_json::json!({
            "name": "John",
            "email": "john@example.com",
            "age": 25
        });

        let result = extract_validated::<TestParams>(&json).await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_invalid_email() {
        let json = serde_json::json!({
            "name": "John",
            "email": "invalid-email",
            "age": 25
        });

        let result = extract_validated::<TestParams>(&json).await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_age_out_of_range() {
        let json = serde_json::json!({
            "name": "John",
            "email": "john@example.com",
            "age": 10
        });

        let result = extract_validated::<TestParams>(&json).await;
        assert!(result.is_err());
    }

    // ============================================================================
    // Task 2.10: XSS Protection Tests
    // ============================================================================

    #[test]
    fn test_sanitize_xss_legitimate_input() {
        // Legitimate input should pass through unchanged
        let input = "Hello, World!";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(sanitized, input);

        let input = "This is a normal sentence with punctuation.";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(sanitized, input);
    }

    #[test]
    fn test_sanitize_xss_script_tag() {
        // Script tags should be escaped
        let input = "<script>alert('xss')</script>";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(
            sanitized,
            "&lt;script&gt;alert(&#x27;xss&#x27;)&lt;&#x2F;script&gt;"
        );
        assert!(!sanitized.contains("<script>"));
    }

    #[test]
    fn test_sanitize_xss_img_tag() {
        // Image tags should be escaped
        let input = "<img src=x onerror=alert('xss')>";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(
            sanitized,
            "&lt;img src=x onerror=alert(&#x27;xss&#x27;)&gt;"
        );
        assert!(!sanitized.contains("<img"));
    }

    #[test]
    fn test_sanitize_xss_iframe_tag() {
        // Iframe tags should be escaped
        let input = "<iframe src=\"http://evil.com\"></iframe>";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(
            sanitized,
            "&lt;iframe src=&quot;http:&#x2F;&#x2F;evil.com&quot;&gt;&lt;&#x2F;iframe&gt;"
        );
        assert!(!sanitized.contains("<iframe"));
    }

    #[test]
    fn test_sanitize_xss_multiple_special_chars() {
        // Multiple special characters should all be escaped
        let input = "<div>'\"/\\";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(sanitized, "&lt;div&gt;&#x27;&quot;&#x2F;\\");
        assert!(!sanitized.contains('<'));
        assert!(!sanitized.contains('>'));
        assert!(!sanitized.contains('"'));
        assert!(!sanitized.contains('\''));
    }

    // ============================================================================
    // Task 2.11: Path Traversal Protection Tests
    // ============================================================================

    #[test]
    fn test_sanitize_path_legitimate() {
        // Legitimate paths should pass through
        let input = "/var/log/app.log";
        let result = sanitizer::sanitize_path(input);
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), input);

        let input = "home/user/documents";
        let result = sanitizer::sanitize_path(input);
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), input);
    }

    #[test]
    fn test_sanitize_path_reject_double_dot() {
        // Path traversal with .. should be rejected
        let input = "../../../etc/passwd";
        let result = sanitizer::sanitize_path(input);
        assert!(result.is_err());
        // validation_error returns InvalidInput variant
        if let Err(ApiError::InvalidInput {
            message: msg,
            field: _,
            value: _,
        }) = result
        {
            assert!(msg.contains("invalid") || msg.contains("traversal"));
        } else {
            panic!("Expected InvalidInput error");
        }
    }

    #[test]
    fn test_sanitize_path_reject_double_slash() {
        // Double slashes should be rejected
        let input = "//etc/passwd";
        let result = sanitizer::sanitize_path(input);
        assert!(result.is_err());
    }

    #[test]
    fn test_sanitize_path_null_byte() {
        // Null bytes should be removed
        let input = "file\0.txt";
        let result = sanitizer::sanitize_path(input);
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "file.txt");
    }

    #[test]
    fn test_sanitize_path_mixed_traversal() {
        // Mixed traversal attempts should be rejected
        let input = "/var/../etc/passwd";
        let result = sanitizer::sanitize_path(input);
        assert!(result.is_err());
    }

    // ============================================================================
    // Task 2.12: Custom Validator Tests
    // ============================================================================

    #[test]
    fn test_custom_email_validator_valid() {
        // Valid email should pass
        let result = validators::validate_email("user@example.com");
        assert!(result.is_ok());
    }

    #[test]
    fn test_custom_email_validator_invalid() {
        // Invalid email should fail
        let result = validators::validate_email("notanemail");
        assert!(result.is_err());
    }

    #[test]
    fn test_custom_regex_validator_valid() {
        // Valid pattern match should pass
        let result = validators::validate_regex("abc123", r"^[a-z0-9]+$");
        assert!(result.is_ok());
    }

    #[test]
    fn test_custom_regex_validator_invalid() {
        // Invalid pattern match should fail
        let result = validators::validate_regex("abc-123", r"^[a-z0-9]+$");
        assert!(result.is_err());
    }

    #[test]
    fn test_regex_cache_performance() {
        // Regex should be cached for performance
        let pattern = r"^\d{3}-\d{3}-\d{4}$";
        let result1 = validators::validate_regex("123-456-7890", pattern);
        let result2 = validators::validate_regex("987-654-3210", pattern);
        assert!(result1.is_ok());
        assert!(result2.is_ok());
    }

    // ============================================================================
    // Task 2.13: Range Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_range_integer_valid() {
        // Value within range should pass
        let result = validators::validate_range(50, 0, 100);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_integer_too_low() {
        // Value below minimum should fail
        let result = validators::validate_range(-1, 0, 100);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_range_integer_too_high() {
        // Value above maximum should fail
        let result = validators::validate_range(101, 0, 100);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_range_float() {
        // Float range validation should work
        let result = validators::validate_range(0.5_f64, 0.0_f64, 1.0_f64);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_string_valid() {
        // String within length range should pass
        let result = validators::validate_length("hello", 1, 10);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_string_too_short() {
        // String too short should fail
        let result = validators::validate_length("hi", 3, 10);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_length_string_too_long() {
        // String too long should fail
        let result = validators::validate_length("hello world", 1, 5);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_length_string_exact_min() {
        // String exactly at minimum should pass
        let result = validators::validate_length("abc", 3, 10);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_string_exact_max() {
        // String exactly at maximum should pass
        let result = validators::validate_length("abcde", 1, 5);
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_length_validation() {
        // Sanitizer length validation should work
        let result = sanitizer::validate_length("test", 1, 10, "test_field");
        assert!(result.is_ok());

        let result = sanitizer::validate_length("test", 5, 10, "test_field");
        assert!(result.is_err());
    }

    // ============================================================================
    // Comprehensive ValidationErrorsWrapper Tests
    // ============================================================================

    #[test]
    fn test_validation_errors_wrapper_new_empty() {
        let wrapper = ValidationErrorsWrapper::new(vec![]);
        assert!(wrapper.errors.is_empty());
    }

    #[test]
    fn test_validation_errors_wrapper_new_multiple() {
        let errors = vec![
            FieldValidationError {
                field: "email".to_string(),
                constraints: vec!["email".to_string()],
            },
            FieldValidationError {
                field: "name".to_string(),
                constraints: vec!["length".to_string()],
            },
        ];
        let wrapper = ValidationErrorsWrapper::new(errors);
        assert_eq!(wrapper.errors.len(), 2);
    }

    #[test]
    fn test_field_validation_error_equality() {
        let error1 = FieldValidationError {
            field: "email".to_string(),
            constraints: vec!["email".to_string()],
        };
        let error2 = FieldValidationError {
            field: "email".to_string(),
            constraints: vec!["email".to_string()],
        };
        assert_eq!(error1, error2);
    }

    #[test]
    fn test_field_validation_error_clone() {
        let error = FieldValidationError {
            field: "password".to_string(),
            constraints: vec!["min_length".to_string()],
        };
        let cloned = error.clone();
        assert_eq!(error, cloned);
    }

    // ============================================================================
    // Comprehensive Email Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_email_valid_with_subdomain() {
        let result = validators::validate_email("user@mail.example.com");
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_email_valid_with_plus() {
        let result = validators::validate_email("user+tag@example.com");
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_email_valid_with_dots() {
        let result = validators::validate_email("first.last@example.com");
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_email_invalid_empty() {
        let result = validators::validate_email("");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_email_invalid_no_at() {
        let result = validators::validate_email("userexample.com");
        assert!(result.is_err());
    }

    // ============================================================================
    // Comprehensive Regex Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_regex_phone_pattern() {
        let result = validators::validate_regex("123-456-7890", r"^\d{3}-\d{3}-\d{4}$");
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_regex_phone_invalid() {
        let result = validators::validate_regex("12-456-7890", r"^\d{3}-\d{3}-\d{4}$");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_regex_invalid_pattern() {
        let result = validators::validate_regex("test", r"[invalid(");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_regex_empty_string() {
        let result = validators::validate_regex("", r"^$");
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_regex_unicode() {
        let result = validators::validate_regex("Hello 世界", r"[\w\s\u{4e00}-\u{9fff}]+");
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_regex_case_sensitive() {
        let result = validators::validate_regex("ABC", r"^[a-z]+$");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_regex_case_insensitive() {
        let result = validators::validate_regex("ABC", r"(?i)^[a-z]+$");
        assert!(result.is_ok());
    }

    // ============================================================================
    // Comprehensive Range Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_range_i8() {
        let result = validators::validate_range(50_i8, 0_i8, 100_i8);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_i16() {
        let result = validators::validate_range(500_i16, 0_i16, 1000_i16);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_i32() {
        let result = validators::validate_range(50000_i32, 0_i32, 100000_i32);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_i64() {
        let result = validators::validate_range(5000000000_i64, 0_i64, 10000000000_i64);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_u8() {
        let result = validators::validate_range(128_u8, 0_u8, 255_u8);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_u16() {
        let result = validators::validate_range(30000_u16, 0_u16, 65535_u16);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_u32() {
        let result = validators::validate_range(1000000000_u32, 0_u32, 4000000000_u32);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_u64() {
        let result = validators::validate_range(5000000000_u64, 0_u64, 10000000000_u64);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_f32() {
        let result = validators::validate_range(0.5_f32, 0.0_f32, 1.0_f32);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_negative() {
        let result = validators::validate_range(-50, -100, -1);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_range_negative_below_min() {
        let result = validators::validate_range(-101, -100, -1);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_range_negative_above_max() {
        let result = validators::validate_range(0, -100, -1);
        assert!(result.is_err());
    }

    // ============================================================================
    // Comprehensive Length Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_length_unicode() {
        let result = validators::validate_length("世界", 1, 10);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_emoji() {
        let result = validators::validate_length("😀😁😂", 1, 10);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_emoji_exact() {
        let result = validators::validate_length("😀😁😂😃", 4, 4);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_mixed_unicode() {
        let result = validators::validate_length("Hello 世界 🌍", 1, 20);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_whitespace() {
        let result = validators::validate_length("   ", 1, 10);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_newlines() {
        let result = validators::validate_length("line1\nline2", 1, 20);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_empty_min_zero() {
        let result = validators::validate_length("", 0, 10);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_length_very_long() {
        let long_string = "a".repeat(1000);
        let result = validators::validate_length(&long_string, 1, 100);
        assert!(result.is_err());
    }

    // ============================================================================
    // Comprehensive XSS Sanitization Tests
    // ============================================================================

    #[test]
    fn test_sanitize_xss_empty() {
        let sanitized = sanitizer::sanitize_xss("");
        assert_eq!(sanitized, "");
    }

    #[test]
    fn test_sanitize_xss_event_handler() {
        let input = "<div onclick=\"alert('xss')\">Click me</div>";
        let sanitized = sanitizer::sanitize_xss(input);
        assert!(!sanitized.contains("<div"));
    }

    #[test]
    fn test_sanitize_xss_javascript_url() {
        let input = "<a href=\"javascript:alert('xss')\">Click</a>";
        let sanitized = sanitizer::sanitize_xss(input);
        assert!(sanitized.contains("&lt;a"));
        assert!(sanitized.contains("&quot;"));
    }

    #[test]
    fn test_sanitize_xss_unicode() {
        let input = "Hello 世界";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(sanitized, input);
    }

    #[test]
    fn test_sanitize_xss_preserves_normal_text() {
        let input = "This is normal text with numbers 123 and symbols !@#$%^&*()";
        let sanitized = sanitizer::sanitize_xss(input);
        assert_eq!(sanitized, input);
    }

    // ============================================================================
    // Comprehensive Path Sanitization Tests
    // ============================================================================

    #[test]
    fn test_sanitize_path_relative() {
        let result = sanitizer::sanitize_path("home/user/documents");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_path_filename() {
        let result = sanitizer::sanitize_path("file.txt");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_path_empty() {
        let result = sanitizer::sanitize_path("");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "");
    }

    #[test]
    fn test_sanitize_path_multiple_null_bytes() {
        let result = sanitizer::sanitize_path("file\0\0\0.txt");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "file.txt");
    }

    #[test]
    fn test_sanitize_path_hidden_file() {
        let result = sanitizer::sanitize_path(".hidden_file");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_path_unicode() {
        let result = sanitizer::sanitize_path("/var/文档/文件.txt");
        assert!(result.is_ok());
    }

    // ============================================================================
    // Comprehensive Filename Sanitization Tests
    // ============================================================================

    #[test]
    fn test_sanitize_filename_valid_underscore() {
        let result = sanitizer::sanitize_filename("my_document.pdf");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_filename_valid_hyphen() {
        let result = sanitizer::sanitize_filename("my-document.pdf");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_filename_valid_spaces() {
        let result = sanitizer::sanitize_filename("my document.pdf");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_filename_removes_special() {
        let result = sanitizer::sanitize_filename("file<>:\"|?*.txt");
        assert!(result.is_ok());
        let sanitized = result.unwrap();
        assert!(!sanitized.contains('<'));
        assert!(!sanitized.contains('>'));
    }

    #[test]
    fn test_sanitize_filename_only_special_chars() {
        let result = sanitizer::sanitize_filename("<>:\"|?*");
        assert!(result.is_err());
    }

    #[test]
    fn test_sanitize_filename_unicode() {
        let result = sanitizer::sanitize_filename("文档.pdf");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "文档.pdf");
    }

    #[test]
    fn test_sanitize_filename_multiple_dots() {
        let result = sanitizer::sanitize_filename("file.name.tar.gz");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_filename_hidden() {
        let result = sanitizer::sanitize_filename(".hidden");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitize_filename_null_byte() {
        let result = sanitizer::sanitize_filename("file\0.txt");
        assert!(result.is_ok());
        let sanitized = result.unwrap();
        assert!(!sanitized.contains('\0'));
    }

    // ============================================================================
    // Comprehensive User ID Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_user_id_one() {
        let result = sanitizer::validate_user_id(1);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_user_id_max() {
        let result = sanitizer::validate_user_id(i64::MAX);
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_user_id_zero() {
        let result = sanitizer::validate_user_id(0);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_user_id_negative() {
        let result = sanitizer::validate_user_id(-1);
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_user_id_min() {
        let result = sanitizer::validate_user_id(i64::MIN);
        assert!(result.is_err());
    }

    // ============================================================================
    // Comprehensive Not-Empty Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_not_empty_with_spaces() {
        let result = sanitizer::validate_not_empty("  hello  ", "field");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "hello");
    }

    #[test]
    fn test_validate_not_empty_whitespace_only() {
        let result = sanitizer::validate_not_empty("   ", "field");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_not_empty_tabs_only() {
        let result = sanitizer::validate_not_empty("\t\t", "field");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_not_empty_newlines_only() {
        let result = sanitizer::validate_not_empty("\n\n", "field");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_not_empty_preserves_inner_spaces() {
        let result = sanitizer::validate_not_empty("  hello world  ", "field");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "hello world");
    }

    #[test]
    fn test_validate_not_empty_unicode() {
        let result = sanitizer::validate_not_empty("  世界  ", "field");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "世界");
    }

    // ============================================================================
    // Comprehensive Sanitizer Length Validation Tests
    // ============================================================================

    #[test]
    fn test_sanitizer_validate_length_exact_min() {
        let result = sanitizer::validate_length("abc", 3, 10, "field");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitizer_validate_length_exact_max() {
        let result = sanitizer::validate_length("abcde", 1, 5, "field");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitizer_validate_length_too_short() {
        let result = sanitizer::validate_length("ab", 3, 10, "field");
        assert!(result.is_err());
    }

    #[test]
    fn test_sanitizer_validate_length_too_long() {
        let result = sanitizer::validate_length("abcdefghijk", 1, 10, "field");
        assert!(result.is_err());
    }

    #[test]
    fn test_sanitizer_validate_length_invalid_params() {
        let result = sanitizer::validate_length("test", 10, 1, "field");
        assert!(result.is_err());
    }

    #[test]
    fn test_sanitizer_validate_length_zero_to_zero() {
        let result = sanitizer::validate_length("", 0, 0, "field");
        assert!(result.is_ok());
    }

    #[test]
    fn test_sanitizer_validate_length_preserves_original() {
        let input = "  hello  ";
        let result = sanitizer::validate_length(input, 1, 20, "field");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "  hello  ");
    }

    // ============================================================================
    // Comprehensive Email Format Validation Tests
    // ============================================================================

    #[test]
    fn test_validate_email_format_valid() {
        let result = sanitizer::validate_email_format("user@example.com");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "user@example.com");
    }

    #[test]
    fn test_validate_email_format_trims() {
        let result = sanitizer::validate_email_format("  user@example.com  ");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "user@example.com");
    }

    #[test]
    fn test_validate_email_format_missing_at() {
        let result = sanitizer::validate_email_format("userexample.com");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_email_format_missing_dot() {
        let result = sanitizer::validate_email_format("user@examplecom");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_email_format_starts_with_at() {
        let result = sanitizer::validate_email_format("@example.com");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_email_format_ends_with_at() {
        let result = sanitizer::validate_email_format("user@");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_email_format_empty() {
        let result = sanitizer::validate_email_format("");
        assert!(result.is_err());
    }

    #[test]
    fn test_validate_email_format_with_subdomain() {
        let result = sanitizer::validate_email_format("user@mail.example.com");
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_email_format_with_plus() {
        let result = sanitizer::validate_email_format("user+tag@example.com");
        assert!(result.is_ok());
    }

    // ============================================================================
    // Security Limits Validation Tests
    // ============================================================================

    #[test]
    #[allow(clippy::assertions_on_constants)]
    fn test_security_limits_constants_defined() {
        // Verify all security limit constants are properly defined
        assert!(MAX_REQUEST_BODY_SIZE > 0);
        assert!(MAX_HEADER_NAME_LENGTH > 0);
        assert!(MAX_HEADER_VALUE_LENGTH > 0);
        assert!(MAX_URI_PATH_LENGTH > 0);
        assert!(MAX_QUERY_STRING_LENGTH > 0);
        assert!(MAX_HEADER_COUNT > 0);
        assert!(MAX_API_KEY_LENGTH > 0);
        assert!(MAX_JWT_TOKEN_LENGTH > 0);
        assert!(MAX_USERNAME_LENGTH > 0);
        assert!(MAX_EMAIL_LENGTH > 0);
        assert!(MAX_PASSWORD_LENGTH > 0);
        assert!(MIN_PASSWORD_LENGTH > 0);
        assert!(MAX_TEXT_FIELD_LENGTH > 0);
        assert!(MAX_JSON_FIELD_NAME_LENGTH > 0);
        assert!(MAX_JSON_ARRAY_LENGTH > 0);
        assert!(MAX_JSON_DEPTH > 0);
    }

    #[test]
    #[allow(clippy::assertions_on_constants)]
    fn test_security_limits_reasonable_values() {
        // Verify limits are within reasonable ranges

        // Request body: 1MB - 100MB is reasonable
        assert!(MAX_REQUEST_BODY_SIZE >= 1024 * 1024); // At least 1MB
        assert!(MAX_REQUEST_BODY_SIZE <= 100 * 1024 * 1024); // At most 100MB

        // Password limits
        assert!(MIN_PASSWORD_LENGTH >= 6); // Minimum 6 characters
        assert!(MAX_PASSWORD_LENGTH >= 128); // At least 128 characters supported

        // Email per RFC 5322
        assert_eq!(MAX_EMAIL_LENGTH, 320);

        // Header limits
        assert!(MAX_HEADER_NAME_LENGTH >= 64);
        assert!(MAX_HEADER_VALUE_LENGTH >= 1024);

        // JSON limits
        assert!(MAX_JSON_ARRAY_LENGTH >= 1000);
        assert!(MAX_JSON_DEPTH >= 50);
    }

    #[test]
    #[allow(clippy::assertions_on_constants)]
    fn test_password_length_validation() {
        // Test password length constraints
        assert!(MIN_PASSWORD_LENGTH < MAX_PASSWORD_LENGTH);

        // Typical passwords should be within range
        assert!("password123".len() >= MIN_PASSWORD_LENGTH);
        assert!("password123".len() <= MAX_PASSWORD_LENGTH);
    }

    // ============================================================================
    // From<ValidationErrorsWrapper> for ApiError conversion tests
    // ============================================================================

    #[test]
    fn test_from_validation_errors_wrapper_with_errors() {
        // When errors are present, the first error's field and constraint
        // should be propagated into the ApiError::ValidationError variant.
        let errors = vec![FieldValidationError {
            field: "email".to_string(),
            constraints: vec!["email".to_string()],
        }];
        let wrapper = ValidationErrorsWrapper::new(errors);
        let api_error: ApiError = wrapper.into();

        match api_error {
            ApiError::ValidationError { field, constraint } => {
                assert_eq!(field, "email");
                assert_eq!(constraint, "email");
            }
            _ => panic!("Expected ValidationError variant"),
        }
    }

    #[test]
    fn test_from_validation_errors_wrapper_with_empty_constraints() {
        // When the first error has no constraints, the constraint should
        // fall back to "invalid".
        let errors = vec![FieldValidationError {
            field: "name".to_string(),
            constraints: vec![],
        }];
        let wrapper = ValidationErrorsWrapper::new(errors);
        let api_error: ApiError = wrapper.into();

        match api_error {
            ApiError::ValidationError { field, constraint } => {
                assert_eq!(field, "name");
                assert_eq!(constraint, "invalid");
            }
            _ => panic!("Expected ValidationError variant"),
        }
    }

    #[test]
    fn test_from_validation_errors_wrapper_empty() {
        // When there are no errors, the conversion should produce
        // ApiError::InvalidInput with a generic message.
        let wrapper = ValidationErrorsWrapper::new(vec![]);
        let api_error: ApiError = wrapper.into();

        match api_error {
            ApiError::InvalidInput {
                message,
                field,
                value,
            } => {
                assert!(message.contains("Validation failed"));
                assert!(field.is_none());
                assert!(value.is_none());
            }
            _ => panic!("Expected InvalidInput variant"),
        }
    }

    // ============================================================================
    // validate_or_error tests
    // ============================================================================

    #[test]
    fn test_validate_or_error_success() {
        // When the validation closure succeeds, validate_or_error should
        // return Ok(()).
        let result: Result<(), ApiError> = validators::validate_or_error(
            || Ok(()),
            || ValidationErrorsWrapper::new(vec![]).into(),
        );
        assert!(result.is_ok());
    }

    #[test]
    fn test_validate_or_error_failure() {
        // When the validation closure fails, validate_or_error should
        // invoke the error mapper and return Err.
        let result: Result<(), ApiError> = validators::validate_or_error(
            || Err(validator::ValidationError::new("test")),
            || ValidationErrorsWrapper::new(vec![]).into(),
        );
        assert!(result.is_err());
    }

    // ============================================================================
    // sanitize_filename edge case tests
    // ============================================================================

    #[test]
    fn test_sanitize_filename_empty_input() {
        // Empty filename should be rejected with INVALID_FILENAME error.
        let result = sanitizer::sanitize_filename("");
        assert!(result.is_err());
        match result {
            Err(ApiError::InvalidInput { message, .. }) => {
                assert!(message.contains("cannot be empty"));
            }
            _ => panic!("Expected InvalidInput error for empty filename"),
        }
    }

    #[test]
    fn test_sanitize_filename_only_invalid_chars() {
        // Input that becomes empty after filtering dangerous characters
        // should be rejected.
        let result = sanitizer::sanitize_filename("@#$%^&*()");
        assert!(result.is_err());
        match result {
            Err(ApiError::InvalidInput { message, .. }) => {
                assert!(message.contains("only invalid characters"));
            }
            _ => panic!("Expected InvalidInput error for all-invalid filename"),
        }
    }

    #[test]
    fn test_sanitize_filename_with_path_separators() {
        // Path separators are filtered out (not in the allowed character set),
        // so the filename is returned with separators stripped.
        let result = sanitizer::sanitize_filename("valid/part");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "validpart");
    }

    #[test]
    fn test_sanitize_filename_with_backslash_separator() {
        // Backslash separators are also filtered out by the character filter.
        let result = sanitizer::sanitize_filename("valid\\part");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "validpart");
    }

    #[test]
    fn test_sanitize_filename_valid_input() {
        // A simple valid filename should pass through unchanged.
        let result = sanitizer::sanitize_filename("document.txt");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "document.txt");
    }

    #[test]
    fn test_sanitize_filename_with_spaces_and_dashes() {
        // Spaces, dashes, underscores, and dots are allowed.
        let result = sanitizer::sanitize_filename("my-file_v1.2.pdf");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "my-file_v1.2.pdf");
    }

    // ============================================================================
    // extract_validated deserialization failure path
    //
    // The `serde_json::from_value(...).map_err(|_| ValidationErrorsWrapper::new(vec![]))`
    // closure is exercised when the input JSON cannot be deserialized into T
    // (e.g., wrong field types or missing required fields). Existing tests
    // only feed JSON that deserializes successfully but fails validation, so
    // the deserialization-error branch was previously uncovered.
    // ============================================================================

    /// Test extract_validated returns Err when JSON has a wrong type for a
    /// field (string where u32 is expected). Covers the
    /// `serde_json::from_value` error branch in extract_validated.
    #[tokio::test]
    async fn test_extract_validated_deserialization_failure_wrong_type() {
        // age is expected to be u32, but we pass a string
        let json = serde_json::json!({
            "name": "John",
            "email": "john@example.com",
            "age": "not a number"
        });

        let result = extract_validated::<TestParams>(&json).await;
        assert!(
            result.is_err(),
            "Deserialization failure should produce Err"
        );
        let errors = result.unwrap_err();
        assert!(
            errors.errors.is_empty(),
            "Deserialization errors produce empty errors vec"
        );
    }

    /// Test extract_validated returns Err when JSON is missing a required
    /// field. Covers the `serde_json::from_value` error branch.
    #[tokio::test]
    async fn test_extract_validated_deserialization_failure_missing_field() {
        // Missing the age field entirely
        let json = serde_json::json!({
            "name": "John",
            "email": "john@example.com"
        });

        let result = extract_validated::<TestParams>(&json).await;
        assert!(
            result.is_err(),
            "Missing field should produce deserialization Err"
        );
    }

    /// Test extract_validated returns Err when JSON root is not an object
    /// (e.g., an array). Covers the `serde_json::from_value` error branch.
    #[tokio::test]
    async fn test_extract_validated_deserialization_failure_non_object() {
        let json = serde_json::json!([1, 2, 3]);

        let result = extract_validated::<TestParams>(&json).await;
        assert!(
            result.is_err(),
            "Non-object JSON should produce deserialization Err"
        );
    }
}