confers 0.4.0

Production-ready Rust configuration library with zero boilerplate
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
//! Configuration file loaders with precise error locations.
//!
//! # Security: Path Traversal Protection
//!
//! This module implements path traversal protection to prevent attackers from
//! using malicious file paths to access files outside the intended directory.
//!
//! Protected patterns include:
//! - `..` (parent directory) components
//! - Absolute paths (`/etc/passwd`)
//! - URL-encoded traversal (`%2e%2e`, `%252e`)
//! - Mixed encoding (`%2e./`)
#[cfg(any(feature = "toml", feature = "yaml"))]
use crate::error::ParseLocation;
use crate::error::{ConfigError, ConfigResult};
use crate::types::{AnnotatedValue, SourceId};
use std::path::{Component, Path, PathBuf};

#[cfg(feature = "ini")]
use crate::types::ConfigValue;

#[cfg(feature = "ini")]
use std::sync::Arc;

#[cfg(feature = "json")]
use super::convert::json_to_config_value;
#[cfg(feature = "toml")]
use super::convert::toml_table_to_config_value;
#[cfg(feature = "yaml")]
use super::convert::yaml_to_config_value;

/// Maximum file size in bytes (default: 10MB)
const DEFAULT_MAX_SIZE: usize = 10 * 1024 * 1024;

/// Default allowed base directories for config file loading.
const DEFAULT_ALLOWED_BASE_DIRS: &[&str] = &["."];

/// Maximum allowed path length to prevent DoS attacks.
const MAX_PATH_LENGTH: usize = 4096;

/// Configuration for loaders.
#[derive(Debug, Clone)]
pub struct LoaderConfig {
    /// Maximum file size in bytes.
    pub max_size: usize,
    /// Allowed base directories for file loading.
    /// Paths must resolve to one of these directories.
    pub allowed_base_dirs: Vec<PathBuf>,
    /// Whether to allow absolute paths (default: false for security).
    pub allow_absolute: bool,
    /// Whether to check for symlink traversal (default: true).
    pub check_symlinks: bool,
}

impl Default for LoaderConfig {
    fn default() -> Self {
        Self {
            max_size: DEFAULT_MAX_SIZE,
            allowed_base_dirs: DEFAULT_ALLOWED_BASE_DIRS
                .iter()
                .map(PathBuf::from)
                .collect(),
            allow_absolute: false,
            check_symlinks: true,
        }
    }
}

impl LoaderConfig {
    /// Create a new loader config with default settings.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set the maximum file size.
    pub fn max_size(mut self, size: usize) -> Self {
        self.max_size = size;
        self
    }

    /// Add an allowed base directory.
    ///
    /// Files loaded must resolve to within one of these directories.
    /// The directory itself is also allowed.
    pub fn add_allowed_dir(mut self, dir: impl Into<PathBuf>) -> Self {
        self.allowed_base_dirs.push(dir.into());
        self
    }

    /// Set allowed base directories, replacing defaults.
    pub fn allowed_dirs(mut self, dirs: impl IntoIterator<Item = impl Into<PathBuf>>) -> Self {
        self.allowed_base_dirs = dirs.into_iter().map(|d| d.into()).collect();
        self
    }

    /// Allow absolute paths (not recommended for security).
    pub fn allow_absolute(mut self) -> Self {
        self.allow_absolute = true;
        self
    }

    /// Disable symlink checking (not recommended for security).
    pub fn no_symlink_check(mut self) -> Self {
        self.check_symlinks = false;
        self
    }
}

// =============================================================================
// Path Traversal Protection (Group 9.2)
// =============================================================================

/// Error type for path traversal violations.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PathTraversalError {
    /// Path exceeds maximum length.
    TooLong,
    /// Absolute paths are not allowed.
    AbsolutePath,
    /// Parent directory reference (..) detected.
    ParentDirectoryReference,
    /// Invalid path component detected (Windows prefix, etc.).
    InvalidComponent,
    /// URL-encoded traversal pattern detected.
    EncodedTraversal,
    /// Path does not exist.
    NotFound,
    /// Cannot determine current directory.
    CurrentDirUnavailable,
    /// Resolved path is outside allowed directories.
    OutsideAllowedDirectory,
    /// Symlink points outside allowed directory.
    SymlinkTraversal,
    /// IO error during path validation.
    IoError(String),
}

impl std::fmt::Display for PathTraversalError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::TooLong => write!(
                f,
                "Path exceeds maximum length of {} bytes",
                MAX_PATH_LENGTH
            ),
            Self::AbsolutePath => write!(f, "Absolute paths are not allowed for security reasons"),
            Self::ParentDirectoryReference => {
                write!(f, "Parent directory references (..) are not allowed")
            }
            Self::InvalidComponent => write!(f, "Invalid path component detected"),
            Self::EncodedTraversal => write!(f, "URL-encoded directory traversal pattern detected"),
            Self::NotFound => write!(f, "The specified path does not exist"),
            Self::CurrentDirUnavailable => write!(f, "Cannot determine the current directory"),
            Self::OutsideAllowedDirectory => {
                write!(f, "Path resolves outside the allowed directories")
            }
            Self::SymlinkTraversal => write!(f, "Symlink resolves outside the allowed directories"),
            Self::IoError(msg) => write!(f, "IO error during path validation: {}", msg),
        }
    }
}

impl std::error::Error for PathTraversalError {}

/// Validate a path string for traversal attempts.
///
/// This is a fast pre-check that scans the raw string for dangerous patterns
/// before doing any filesystem operations. Use this as a first-pass filter.
///
/// # Arguments
///
/// * `path_str` - The raw path string to check
///
/// # Returns
///
/// `true` if the path appears safe, `false` if traversal patterns are detected.
pub fn check_path_traversal_attempt(path_str: &str) -> bool {
    if path_str.len() > MAX_PATH_LENGTH {
        return false;
    }

    let lower = path_str.to_lowercase();

    // Check for URL-encoded traversal patterns
    // %2e = .   %252e = %2e (double encoded)
    // %5c = \   %255c = %5c (double encoded)
    if lower.contains("%2e")
        || lower.contains("%252e")
        || lower.contains("%5c")
        || lower.contains("%255c")
    {
        return false;
    }

    // Check for mixed encoding: %2e./
    if lower.contains("%2e.") || lower.contains(".%2e") {
        return false;
    }

    true
}

/// Check path components for traversal patterns without filesystem access.
///
/// This checks the parsed path components for `..` references and absolute
/// path indicators.
fn check_path_components(path: &Path) -> Result<(), PathTraversalError> {
    for component in path.components() {
        match component {
            Component::ParentDir => {
                return Err(PathTraversalError::ParentDirectoryReference);
            }
            Component::Prefix(_) => {
                return Err(PathTraversalError::InvalidComponent);
            }
            // Note: RootDir is handled by the allow_absolute check in normalize_and_validate_path
            Component::RootDir | Component::CurDir | Component::Normal(_) => {}
        }
    }
    Ok(())
}

/// Normalize and validate a file path against allowed directories.
///
/// This is the main path traversal protection function. It performs:
/// 1. Fast pre-check: scan string for URL-encoded traversal patterns
/// 2. Component check: look for `..` components
/// 3. Canonicalization: resolve symlinks and get the real path
/// 4. Bounds check: verify the final path is within allowed directories
///
/// # Arguments
///
/// * `path` - The path to validate
/// * `allowed_dirs` - Base directories that files may reside in
/// * `allow_absolute` - Whether to allow absolute paths
/// * `check_symlinks` - Whether to resolve and check symlinks
///
/// # Returns
///
/// The canonical (resolved) path if valid, or an error describing the violation.
pub fn normalize_and_validate_path(
    path: &Path,
    allowed_dirs: &[PathBuf],
    allow_absolute: bool,
    check_symlinks: bool,
) -> Result<PathBuf, PathTraversalError> {
    let path_str = path.to_string_lossy();

    // 1. Fast pre-check: URL-encoded traversal
    if !check_path_traversal_attempt(&path_str) {
        return Err(PathTraversalError::EncodedTraversal);
    }

    // 2. Component check: look for unsafe components
    check_path_components(path)?;

    // 3. Handle absolute paths
    if path.is_absolute() {
        if !allow_absolute {
            return Err(PathTraversalError::AbsolutePath);
        }
        // For absolute paths with allow_absolute=true, canonicalize and skip directory check
        let canonical =
            std::fs::canonicalize(path).map_err(|e| PathTraversalError::IoError(e.to_string()))?;
        return Ok(canonical);
    }

    // 4. Resolve relative to current directory and canonicalize
    let current_dir =
        std::env::current_dir().map_err(|_| PathTraversalError::CurrentDirUnavailable)?;

    let full_path = current_dir.join(path);

    if check_symlinks {
        // Canonicalize resolves symlinks
        let canonical = full_path.canonicalize().map_err(|e| match e.kind() {
            std::io::ErrorKind::NotFound => PathTraversalError::NotFound,
            _ => PathTraversalError::IoError(e.to_string()),
        })?;

        // 5. Verify canonical path is within allowed directories
        let is_allowed = if allowed_dirs.is_empty() {
            // No allowed dirs specified: allow relative to current dir
            canonical.starts_with(&current_dir) || canonical == current_dir
        } else {
            // Check against all allowed base directories
            allowed_dirs.iter().any(|dir| {
                let allowed = if dir.is_absolute() {
                    dir.clone()
                } else {
                    // Canonicalize relative allowed dirs too
                    current_dir
                        .join(dir)
                        .canonicalize()
                        .unwrap_or_else(|_| current_dir.join(dir))
                };
                canonical.starts_with(&allowed) || canonical == allowed
            })
        };

        if !is_allowed {
            return Err(PathTraversalError::SymlinkTraversal);
        }

        Ok(canonical)
    } else {
        // Without symlink checking, we still validate components
        // Normalize path by removing . and resolving ..
        let mut normalized = PathBuf::new();
        for component in full_path.components() {
            match component {
                Component::Prefix(_) | Component::RootDir => {
                    normalized = component.as_os_str().into();
                }
                Component::CurDir => {}
                Component::ParentDir => {
                    normalized.pop();
                }
                Component::Normal(s) => {
                    normalized.push(s);
                }
            }
        }

        // Check that normalized path doesn't escape
        if normalized.is_absolute() {
            if !allow_absolute {
                return Err(PathTraversalError::AbsolutePath);
            }
        } else if !normalized.starts_with(&current_dir) {
            return Err(PathTraversalError::OutsideAllowedDirectory);
        }

        Ok(normalized)
    }
}

/// Validate a file path using the loader's security configuration.
///
/// Convenience wrapper around `normalize_and_validate_path` using `LoaderConfig`.
pub fn validate_path_with_config(
    path: &Path,
    config: &LoaderConfig,
) -> Result<PathBuf, PathTraversalError> {
    normalize_and_validate_path(
        path,
        &config.allowed_base_dirs,
        config.allow_absolute,
        config.check_symlinks,
    )
}

/// Supported configuration formats.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Format {
    Toml,
    Json,
    Yaml,
    Ini,
}

impl std::fmt::Display for Format {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Format::Toml => write!(f, "TOML"),
            Format::Json => write!(f, "JSON"),
            Format::Yaml => write!(f, "YAML"),
            Format::Ini => write!(f, "INI"),
        }
    }
}

impl Format {
    /// Get the file extension for this format.
    pub const fn ext(&self) -> &'static str {
        match self {
            Format::Toml => "toml",
            Format::Json => "json",
            Format::Yaml => "yaml",
            Format::Ini => "ini",
        }
    }

    /// Get all supported file formats.
    pub const fn all() -> &'static [Format] {
        &[Format::Toml, Format::Json, Format::Yaml, Format::Ini]
    }
}

impl std::str::FromStr for Format {
    type Err = ();

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s.to_lowercase().as_str() {
            "toml" => Ok(Format::Toml),
            "json" => Ok(Format::Json),
            "yaml" | "yml" => Ok(Format::Yaml),
            "ini" => Ok(Format::Ini),
            _ => Err(()),
        }
    }
}

impl Format {
    /// Parse a format from a string (case-insensitive).
    pub fn try_parse(s: &str) -> Option<Format> {
        s.parse().ok()
    }
}

/// Detect configuration format from file path extension.
///
/// Returns `Some(Format)` if the extension matches a known format,
/// or `None` if the format cannot be determined.
pub fn detect_format_from_path(path: &Path) -> Option<Format> {
    match path.extension()?.to_str()?.to_lowercase().as_str() {
        "toml" => Some(Format::Toml),
        "json" => Some(Format::Json),
        "yaml" | "yml" => Some(Format::Yaml),
        "ini" => Some(Format::Ini),
        _ => None,
    }
}

/// Detect configuration format from file content.
///
/// Uses heuristic analysis of the content to determine the format.
/// Checks for format-specific patterns like JSON braces, YAML markers,
/// TOML key-value syntax, and INI section headers.
///
/// Returns `Some(Format)` if detected, or `None` if unknown.
pub fn detect_format_from_content(content: &str) -> Option<Format> {
    let trimmed = content.trim_start();
    let first_char = trimmed.chars().next()?;

    // JSON detection: more robust check
    if first_char == '{' || first_char == '[' {
        // Verify it's not YAML (YAML can also start with { but uses different syntax)
        // JSON uses strict key-value pairs with quotes
        if trimmed.contains("\"") && (trimmed.contains(":") || trimmed.contains(",")) {
            return Some(Format::Json);
        }
    }

    // YAML detection: document start marker is definitive
    if trimmed.starts_with("---") {
        return Some(Format::Yaml);
    }

    // TOML detection: look for specific patterns
    // TOML uses "key = value" pattern (with =, not :)
    // This is more specific than checking for "=" or ":" alone
    if trimmed.contains(" = ") || trimmed.contains("=\t") {
        // Make sure it's not YAML (YAML uses "key: value" not "key = value")
        return Some(Format::Toml);
    }

    // YAML detection: look for "key: value" pattern
    // Only if not TOML (check for unquoted colons with spaces after)
    if trimmed.contains(": ") {
        // But exclude if it looks like JSON or TOML
        if !trimmed.contains(" = ") && !trimmed.contains("{") {
            return Some(Format::Yaml);
        }
    }

    // INI detection: look for [section] headers or key=value patterns
    if trimmed.contains('[') && trimmed.contains(']') {
        // Check for INI section header pattern [section]
        if trimmed.starts_with('[') {
            return Some(Format::Ini);
        }
    }

    // Default to unknown
    None
}

/// Load and parse a configuration file from disk.
///
/// Applies path traversal protection and size limits before parsing.
/// Uses content-based format detection if not specified in the path.
///
/// # Errors
///
/// Returns an error if:
/// - Path traversal attempt is detected
/// - File size exceeds the configured limit
/// - File cannot be read or parsed
pub fn load_file(path: &Path, config: &LoaderConfig) -> ConfigResult<AnnotatedValue> {
    // Path traversal protection: validate the path before loading
    let validated_path =
        validate_path_with_config(path, config).map_err(|e| ConfigError::InvalidValue {
            key: "path".to_string(),
            expected_type: "safe relative path".to_string(),
            message: format!("Path validation failed: {}", e),
        })?;

    let metadata = std::fs::metadata(&validated_path).map_err(|e| ConfigError::FileNotFound {
        filename: path.to_path_buf(),
        source: Some(e),
    })?;
    if metadata.len() as usize > config.max_size {
        return Err(ConfigError::SizeLimitExceeded {
            actual: metadata.len() as usize,
            limit: config.max_size,
        });
    }
    let format =
        detect_format_from_path(&validated_path).ok_or_else(|| ConfigError::ParseError {
            format: "unknown".into(),
            message: format!("Unknown extension: {:?}", validated_path.extension()),
            location: None,
            source: None,
        })?;
    let content = std::fs::read_to_string(&validated_path).map_err(ConfigError::IoError)?;
    let source = SourceId::new(
        validated_path
            .file_name()
            .and_then(|n| n.to_str())
            .unwrap_or("unknown"),
    );
    parse_content(&content, format, source, Some(&validated_path))
}

pub fn parse_content(
    content: &str,
    format: Format,
    source: SourceId,
    path: Option<&Path>,
) -> ConfigResult<AnnotatedValue> {
    match format {
        Format::Toml => parse_toml(content, source, path),
        Format::Json => parse_json(content, source, path),
        Format::Yaml => parse_yaml(content, source, path),
        Format::Ini => parse_ini(content, source, path),
    }
}

#[cfg(feature = "toml")]
pub fn parse_toml(
    content: &str,
    source: SourceId,
    path: Option<&Path>,
) -> ConfigResult<AnnotatedValue> {
    use toml::de::Error as TomlError;

    let table: toml::Table = toml::from_str(content).map_err(|e: TomlError| {
        let location = e.span().map(|span| {
            let line = content[..span.start].matches('\n').count() + 1;
            let col = span.start
                - content[..span.start]
                    .rfind('\n')
                    .map(|i| i + 1)
                    .unwrap_or(0)
                + 1;
            path.map(|p| ParseLocation::from_path(p, line, col))
                .unwrap_or_else(|| ParseLocation::new(source.as_str(), line, col))
        });
        ConfigError::ParseError {
            format: "TOML".into(),
            message: e.message().to_string(),
            location,
            source: Some(Box::new(e)),
        }
    })?;

    Ok(AnnotatedValue::new(
        toml_table_to_config_value(&table, &source, ""),
        source,
        "",
    ))
}

#[cfg(feature = "json")]
pub fn parse_json(
    content: &str,
    source: SourceId,
    _: Option<&Path>,
) -> ConfigResult<AnnotatedValue> {
    let v: serde_json::Value =
        serde_json::from_str(content).map_err(|e| ConfigError::ParseError {
            format: "JSON".into(),
            message: e.to_string(),
            location: None,
            source: Some(Box::new(e)),
        })?;
    Ok(AnnotatedValue::new(
        json_to_config_value(&v, &source, ""),
        source,
        "",
    ))
}

#[cfg(feature = "yaml")]
pub fn parse_yaml(
    content: &str,
    source: SourceId,
    path: Option<&Path>,
) -> ConfigResult<AnnotatedValue> {
    let v: serde_yaml_ng::Value = serde_yaml_ng::from_str(content).map_err(|e| {
        let loc = e.location().map(|l| {
            path.map(|p| ParseLocation::from_path(p, l.line(), l.column()))
                .unwrap_or_else(|| ParseLocation::new(source.as_str(), l.line(), l.column()))
        });
        ConfigError::ParseError {
            format: "YAML".into(),
            message: e.to_string(),
            location: loc,
            source: Some(Box::new(e)),
        }
    })?;
    Ok(AnnotatedValue::new(
        yaml_to_config_value(&v, &source, ""),
        source,
        "",
    ))
}

#[cfg(not(feature = "toml"))]
pub fn parse_toml(_: &str, _: SourceId, _: Option<&Path>) -> ConfigResult<AnnotatedValue> {
    Err(ConfigError::ParseError {
        format: "TOML".into(),
        message: "Add 'toml' feature".into(),
        location: None,
        source: None,
    })
}
#[cfg(not(feature = "json"))]
pub fn parse_json(_: &str, _: SourceId, _: Option<&Path>) -> ConfigResult<AnnotatedValue> {
    Err(ConfigError::ParseError {
        format: "JSON".into(),
        message: "Add 'json' feature".into(),
        location: None,
        source: None,
    })
}
#[cfg(not(feature = "yaml"))]
pub fn parse_yaml(_: &str, _: SourceId, _: Option<&Path>) -> ConfigResult<AnnotatedValue> {
    Err(ConfigError::ParseError {
        format: "YAML".into(),
        message: "Add 'yaml' feature".into(),
        location: None,
        source: None,
    })
}
#[cfg(not(feature = "ini"))]
pub fn parse_ini(_: &str, _: SourceId, _: Option<&Path>) -> ConfigResult<AnnotatedValue> {
    Err(ConfigError::ParseError {
        format: "INI".into(),
        message: "Add 'ini' feature".into(),
        location: None,
        source: None,
    })
}

/// Parse a TOML table into AnnotatedValue (public helper for remote sources).
#[cfg(feature = "toml")]
pub fn parse_toml_table(table: &toml::Table, source: &SourceId, prefix: &str) -> AnnotatedValue {
    AnnotatedValue::new(
        toml_table_to_config_value(table, source, prefix),
        source.clone(),
        prefix,
    )
}

/// Parse a JSON value into ConfigValue (public helper for remote sources).
#[cfg(feature = "json")]
pub fn parse_json_value(v: &serde_json::Value, source: &SourceId, prefix: &str) -> AnnotatedValue {
    AnnotatedValue::new(
        json_to_config_value(v, source, prefix),
        source.clone(),
        prefix,
    )
}

/// Parse a YAML value into ConfigValue (public helper for remote sources).
#[cfg(feature = "yaml")]
pub fn parse_yaml_value(
    v: &serde_yaml_ng::Value,
    source: &SourceId,
    prefix: &str,
) -> AnnotatedValue {
    AnnotatedValue::new(
        yaml_to_config_value(v, source, prefix),
        source.clone(),
        prefix,
    )
}

#[cfg(feature = "ini")]
pub fn parse_ini(
    content: &str,
    source: SourceId,
    _path: Option<&Path>,
) -> ConfigResult<AnnotatedValue> {
    let mut sections: indexmap::IndexMap<String, indexmap::IndexMap<String, String>> =
        indexmap::IndexMap::new();
    let mut cur = String::new();
    let mut invalid_lines = Vec::new();

    for (line_num, line) in content.lines().enumerate() {
        let l = line.trim();
        // Skip empty lines and comments
        if l.is_empty() || l.starts_with('#') || l.starts_with(';') {
            continue;
        }
        // Section header
        if l.starts_with('[') && l.ends_with(']') {
            cur = l[1..l.len() - 1].trim().into();
            sections.entry(cur.clone()).or_default();
            continue;
        }
        // Key-value pair
        if let Some(eq) = l.find('=') {
            let key = l[..eq].trim();
            let value = l[eq + 1..].trim();
            if key.is_empty() {
                invalid_lines.push((line_num + 1, line.to_string(), "empty key"));
                continue;
            }
            sections
                .entry(cur.clone())
                .or_default()
                .insert(key.into(), value.into());
            continue;
        }
        // Track invalid lines for debugging
        invalid_lines.push((line_num + 1, line.to_string(), "invalid INI syntax"));
    }

    // M2 (Rule 12: Fail Loud): Surface invalid lines instead of silently
    // dropping them. The count and details go to stderr so callers can
    // diagnose malformed INI files.
    if !invalid_lines.is_empty() {
        eprintln!(
            "WARN: parse_ini skipped {} invalid line(s):",
            invalid_lines.len()
        );
        for (line_num, line_text, reason) in &invalid_lines {
            eprintln!("  line {}: {} — {}", line_num, line_text, reason);
        }
    }

    // Build the map manually to avoid closure borrow issues
    let mut entries: Vec<(Arc<str>, AnnotatedValue)> = Vec::new();
    for (sec, keys) in sections.iter() {
        for (k, v) in keys.iter() {
            let key = if sec.is_empty() {
                k.clone()
            } else {
                format!("{}.{}", sec, k)
            };
            entries.push((
                Arc::from(key.clone()),
                AnnotatedValue::new(ConfigValue::String(v.clone()), source.clone(), key),
            ));
        }
    }

    Ok(AnnotatedValue::new(ConfigValue::map(entries), source, ""))
}

#[cfg(test)]
mod tests {
    use super::*;
    #[test]
    fn test_format_display() {
        assert_eq!(Format::Toml.to_string(), "TOML");
        assert_eq!(Format::Json.to_string(), "JSON");
        assert_eq!(Format::Yaml.to_string(), "YAML");
    }
    #[test]
    fn test_format_try_parse() {
        assert_eq!(Format::try_parse("toml"), Some(Format::Toml));
        assert_eq!(Format::try_parse("json"), Some(Format::Json));
        assert_eq!(Format::try_parse("yaml"), Some(Format::Yaml));
        assert_eq!(Format::try_parse("ini"), Some(Format::Ini));
        assert_eq!(Format::try_parse("unknown"), None);
    }
    #[test]
    fn test_format_ext() {
        assert_eq!(Format::Toml.ext(), "toml");
        assert_eq!(Format::Json.ext(), "json");
        assert_eq!(Format::Yaml.ext(), "yaml");
        assert_eq!(Format::Ini.ext(), "ini");
    }
    #[test]
    fn test_format_all() {
        let all = Format::all();
        assert!(all.contains(&Format::Toml));
        assert!(all.contains(&Format::Json));
        assert!(all.contains(&Format::Yaml));
        assert!(all.contains(&Format::Ini));
    }
    #[test]
    fn test_detect_from_path_case_insensitive() {
        assert_eq!(
            detect_format_from_path(Path::new("config.TOML")),
            Some(Format::Toml)
        );
        assert_eq!(
            detect_format_from_path(Path::new("config.JSON")),
            Some(Format::Json)
        );
        assert_eq!(
            detect_format_from_path(Path::new("config.YAML")),
            Some(Format::Yaml)
        );
    }
    #[test]
    fn test_detect_from_path_none() {
        assert_eq!(detect_format_from_path(Path::new("config")), None);
        assert_eq!(detect_format_from_path(Path::new("")), None);
    }
    #[test]
    fn test_detect_format_from_path() {
        assert_eq!(
            detect_format_from_path(Path::new("a.toml")),
            Some(Format::Toml)
        );
        assert_eq!(
            detect_format_from_path(Path::new("a.json")),
            Some(Format::Json)
        );
    }
    #[test]
    fn test_detect_format_from_content() {
        assert_eq!(
            detect_format_from_content(r#"{"k":"v"}"#),
            Some(Format::Json)
        );
        assert_eq!(detect_format_from_content(r#"k = "v""#), Some(Format::Toml));
    }
    #[test]
    #[cfg(feature = "toml")]
    fn test_parse_toml() {
        let r = parse_toml(
            "\n[db]\nhost = \"localhost\"\nport = 5432\n",
            SourceId::new("test"),
            None,
        );
        assert!(r.is_ok(), "{:?}", r.err());
        assert!(r.unwrap().is_map());
    }
    #[test]
    #[cfg(feature = "json")]
    fn test_parse_json() {
        let r = parse_json(
            r#"{"db":{"host":"localhost","port":5432}}"#,
            SourceId::new("test"),
            None,
        );
        assert!(r.is_ok(), "{:?}", r.err());
        assert!(r.unwrap().is_map());
    }
    #[test]
    #[cfg(feature = "yaml")]
    fn test_parse_yaml() {
        let r = parse_yaml(
            "\ndb:\n  host: localhost\n  port: 5432\n",
            SourceId::new("test"),
            None,
        );
        assert!(r.is_ok(), "{:?}", r.err());
        assert!(r.unwrap().is_map());
    }
    #[test]
    #[cfg(feature = "toml")]
    fn test_parse_toml_error() {
        assert!(parse_toml("[section", SourceId::new("t"), None).is_err());
    }
    #[test]
    fn test_loader_config_default() {
        assert_eq!(LoaderConfig::default().max_size, DEFAULT_MAX_SIZE);
    }

    // =============================================================================
    // Path Traversal Protection Tests (9.2.7)
    // =============================================================================

    #[test]
    fn test_check_path_traversal_attempt_rejects_encoded() {
        // URL-encoded traversal
        assert!(!check_path_traversal_attempt("%2e%2e/etc/passwd"));
        assert!(!check_path_traversal_attempt("%252e%252e/etc/passwd"));
        assert!(!check_path_traversal_attempt("%2e./etc/passwd"));
        assert!(!check_path_traversal_attempt("%2e%2e\\etc\\passwd"));
    }

    #[test]
    fn test_check_path_traversal_attempt_accepts_normal() {
        assert!(check_path_traversal_attempt("config/app.toml"));
        assert!(check_path_traversal_attempt("configs/defaults.yaml"));
        assert!(check_path_traversal_attempt("secrets/database.json"));
    }

    #[test]
    fn test_check_path_traversal_attempt_rejects_too_long() {
        let long = "a/".repeat(5000);
        assert!(!check_path_traversal_attempt(&long));
    }

    #[test]
    fn test_normalize_validates_parent_directory() {
        let result = normalize_and_validate_path(
            Path::new("../../../etc/passwd"),
            &[PathBuf::from(".")],
            false,
            true,
        );
        assert!(result.is_err());
        assert_eq!(
            result.unwrap_err(),
            PathTraversalError::ParentDirectoryReference
        );
    }

    #[test]
    fn test_normalize_rejects_absolute_path() {
        let result = normalize_and_validate_path(
            Path::new("/etc/passwd"),
            &[PathBuf::from(".")],
            false,
            true,
        );
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), PathTraversalError::AbsolutePath);
    }

    #[test]
    fn test_normalize_accepts_valid_relative_path() {
        // Create a temp file to test with
        let temp_dir = std::env::temp_dir();
        let test_file = temp_dir.join("confers_test_config.toml");
        std::fs::write(&test_file, "[test]\nkey = \"value\"").unwrap();

        let _relative = format!(
            "{}",
            test_file
                .strip_prefix(std::env::current_dir().unwrap().parent().unwrap())
                .unwrap_or_else(|_| &test_file)
                .display()
        );
        // Use the temp file directly
        let result = normalize_and_validate_path(&test_file, &[], false, true);

        // Should succeed - temp dir is canonicalized and is in current dir tree
        if result.is_ok() {
            // Valid
        } else if let Err(PathTraversalError::OutsideAllowedDirectory) = result {
            // Also acceptable - temp dir is outside current working directory
        }

        let _ = std::fs::remove_file(test_file);
    }

    #[test]
    fn test_loader_config_builder() {
        let config = LoaderConfig::new()
            .max_size(1024)
            .add_allowed_dir("/etc/confers")
            .add_allowed_dir("/run/confers")
            .allow_absolute();

        assert_eq!(config.max_size, 1024);
        assert!(config.allow_absolute);
        assert!(config.check_symlinks); // should still be true (default value)
        assert_eq!(config.allowed_base_dirs.len(), 3); // default + 2 added
    }

    #[test]
    fn test_loader_config_allowed_dirs() {
        let config = LoaderConfig::new().allowed_dirs(["/configs", "/secrets"]);

        assert_eq!(config.allowed_base_dirs.len(), 2);
        assert!(!config.allow_absolute);
    }

    #[test]
    fn test_loader_config_symlink_check() {
        let config = LoaderConfig::new().no_symlink_check();
        assert!(!config.check_symlinks);
    }

    #[test]
    fn test_validate_path_with_config_rejects_traversal() {
        let config = LoaderConfig::new();
        let result = validate_path_with_config(Path::new("../../../etc/passwd"), &config);
        assert!(result.is_err());
    }

    #[test]
    fn test_loader_config_allows_normal_path() {
        let config = LoaderConfig::new();
        // Current dir is always allowed by default
        let result = validate_path_with_config(Path::new("Cargo.toml"), &config);
        // May succeed or fail depending on whether Cargo.toml exists
        // but it should NOT be a traversal error
        match result {
            Ok(_) | Err(PathTraversalError::NotFound) | Err(PathTraversalError::IoError(_)) => {}
            Err(e) => {
                panic!("Unexpected error for normal path: {:?}", e);
            }
        }
    }

    #[cfg(feature = "toml")]
    #[test]
    fn test_parse_toml_content() {
        let result = parse_toml("key = \"value\"", SourceId::new("test"), None);
        assert!(result.is_ok());
        let val = result.unwrap();
        assert!(val.is_map());
    }

    #[cfg(feature = "json")]
    #[test]
    fn test_parse_json_content() {
        let result = parse_json("{\"key\": \"value\"}", SourceId::new("test"), None);
        assert!(result.is_ok());
        let val = result.unwrap();
        assert!(val.is_map());
    }

    #[cfg(feature = "yaml")]
    #[test]
    fn test_parse_yaml_content() {
        let result = parse_yaml("key: value", SourceId::new("test"), None);
        assert!(result.is_ok());
        let val = result.unwrap();
        assert!(val.is_map());
    }

    #[cfg(feature = "toml")]
    #[test]
    fn test_parse_content_toml() {
        let r = parse_content("name = \"test\"", Format::Toml, SourceId::new("t"), None);
        assert!(r.is_ok());
    }

    #[cfg(feature = "json")]
    #[test]
    fn test_parse_content_json() {
        let r = parse_content("{\"k\":\"v\"}", Format::Json, SourceId::new("t"), None);
        assert!(r.is_ok());
    }

    #[test]
    fn test_detect_format_toml_json_yaml() {
        assert_eq!(detect_format_from_content("x = 1"), Some(Format::Toml));
        assert_eq!(detect_format_from_content("{\"a\":1}"), Some(Format::Json));
        assert_eq!(detect_format_from_content(""), None);
    }

    #[cfg(feature = "toml")]
    #[test]
    fn test_parse_toml_table() {
        let mut table = toml::Table::new();
        table.insert("key".to_string(), toml::Value::String("val".to_string()));
        let result = parse_toml_table(&table, &SourceId::new("t"), "");
        assert!(result.is_map());
    }

    #[test]
    fn test_check_traversal_rejects_long_path() {
        let long = "a".repeat(10000);
        assert!(!check_path_traversal_attempt(&long));
    }

    #[test]
    fn test_loader_config_allow_absolute() {
        let config = LoaderConfig::new().allow_absolute();
        assert!(config.allow_absolute);
    }

    #[test]
    fn test_normalize_accepts_valid_relative() {
        let allowed = vec![std::path::PathBuf::from(".")];
        let r =
            normalize_and_validate_path(std::path::Path::new("Cargo.toml"), &allowed, false, true);
        assert!(r.is_ok() || matches!(r, Err(PathTraversalError::NotFound)));
    }

    #[test]
    fn test_normalize_rejects_absolute_when_disallowed() {
        let allowed = vec![std::path::PathBuf::from(".")];
        let r =
            normalize_and_validate_path(std::path::Path::new("/etc/passwd"), &allowed, false, true);
        assert_eq!(r, Err(PathTraversalError::AbsolutePath));
    }

    #[test]
    fn test_detect_format_toml_content() {
        assert_eq!(detect_format_from_content("key = 1"), Some(Format::Toml));
    }

    #[test]
    fn test_detect_format_json_content() {
        assert_eq!(detect_format_from_content("{\"k\":1}"), Some(Format::Json));
    }

    #[test]
    fn test_detect_format_yaml_content() {
        let r = detect_format_from_content("key: value");
        assert!(r.is_some());
    }

    #[test]
    fn test_detect_format_empty_content() {
        assert_eq!(detect_format_from_content(""), None);
        assert_eq!(detect_format_from_content("   "), None);
    }

    #[test]
    fn test_path_traversal_error_display_all_variants() {
        assert!(!PathTraversalError::TooLong.to_string().is_empty());
        assert!(!PathTraversalError::AbsolutePath.to_string().is_empty());
        assert!(!PathTraversalError::ParentDirectoryReference
            .to_string()
            .is_empty());
        assert!(!PathTraversalError::InvalidComponent.to_string().is_empty());
        assert!(!PathTraversalError::EncodedTraversal.to_string().is_empty());
        assert!(!PathTraversalError::NotFound.to_string().is_empty());
        assert!(!PathTraversalError::CurrentDirUnavailable
            .to_string()
            .is_empty());
        assert!(!PathTraversalError::OutsideAllowedDirectory
            .to_string()
            .is_empty());
        assert!(!PathTraversalError::SymlinkTraversal.to_string().is_empty());
        assert!(!PathTraversalError::IoError("disk error".to_string())
            .to_string()
            .is_empty());
    }

    #[test]
    fn test_path_traversal_error_toolong_message_contains_max() {
        let msg = PathTraversalError::TooLong.to_string();
        assert!(msg.contains(&MAX_PATH_LENGTH.to_string()));
    }

    #[test]
    fn test_path_traversal_error_clone_debug_eq() {
        let e1 = PathTraversalError::TooLong;
        let e2 = e1.clone();
        assert_eq!(e1, e2);
        assert!(!format!("{:?}", e1).is_empty());
        let e3 = PathTraversalError::IoError("a".to_string());
        let e4 = PathTraversalError::IoError("a".to_string());
        assert_eq!(e3, e4);
        assert_ne!(e1, e3);
    }

    #[test]
    fn test_path_traversal_error_implements_std_error() {
        fn check(err: &dyn std::error::Error) -> bool {
            !err.to_string().is_empty()
        }
        assert!(check(&PathTraversalError::TooLong));
        assert!(check(&PathTraversalError::IoError("x".to_string())));
        assert!(check(&PathTraversalError::SymlinkTraversal));
    }

    #[test]
    fn test_check_path_traversal_rejects_backslash_and_mixed_encoding() {
        assert!(!check_path_traversal_attempt("%5c%5cwindows"));
        assert!(!check_path_traversal_attempt("%255c%255c"));
        assert!(!check_path_traversal_attempt(".%2e"));
    }

    #[test]
    fn test_check_path_traversal_accepts_empty_string() {
        assert!(check_path_traversal_attempt(""));
    }

    #[test]
    fn test_check_path_traversal_boundary_length() {
        // Exactly MAX_PATH_LENGTH should be accepted
        let exact: String = "a".repeat(MAX_PATH_LENGTH);
        assert!(check_path_traversal_attempt(&exact));
        // One byte over should be rejected
        let over: String = "a".repeat(MAX_PATH_LENGTH + 1);
        assert!(!check_path_traversal_attempt(&over));
    }

    #[test]
    fn test_normalize_rejects_encoded_traversal() {
        let result = normalize_and_validate_path(
            Path::new("%2e%2e/etc/passwd"),
            &[PathBuf::from(".")],
            false,
            true,
        );
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), PathTraversalError::EncodedTraversal);
    }

    #[test]
    fn test_normalize_too_long_returns_encoded_traversal() {
        let long = "a/".repeat(5000);
        let result =
            normalize_and_validate_path(Path::new(&long), &[PathBuf::from(".")], false, true);
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), PathTraversalError::EncodedTraversal);
    }

    #[test]
    fn test_normalize_no_symlink_check_with_absolute_allowed() {
        // check_symlinks=false uses lexical normalization; no filesystem access needed.
        let result = normalize_and_validate_path(
            Path::new("any_relative_path.toml"),
            &[PathBuf::from(".")],
            true,  // allow_absolute
            false, // no symlink check
        );
        assert!(result.is_ok(), "{:?}", result.err());
        assert!(result.unwrap().is_absolute());
    }

    #[test]
    fn test_normalize_no_symlink_check_rejects_when_absolute_disallowed() {
        // Without symlink check, normalized path becomes absolute (joined with current_dir)
        // and is rejected when allow_absolute is false.
        let result = normalize_and_validate_path(
            Path::new("any_relative_path.toml"),
            &[PathBuf::from(".")],
            false,
            false,
        );
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), PathTraversalError::AbsolutePath);
    }

    #[test]
    fn test_normalize_no_symlink_check_rejects_parent_dir() {
        // Parent dir is caught by check_path_components before the symlink branch.
        let result = normalize_and_validate_path(
            Path::new("../etc/passwd"),
            &[PathBuf::from(".")],
            false,
            false,
        );
        assert!(result.is_err());
        assert_eq!(
            result.unwrap_err(),
            PathTraversalError::ParentDirectoryReference
        );
    }

    #[test]
    fn test_normalize_absolute_path_with_allow_succeeds() {
        // Create a temp file to exercise the allow_absolute=true canonicalize branch.
        let temp_dir = std::env::temp_dir();
        let test_file = temp_dir.join("confers_test_normalize_abs.txt");
        std::fs::write(&test_file, "test").unwrap();

        let result = normalize_and_validate_path(&test_file, &[], true, true);
        assert!(result.is_ok(), "{:?}", result.err());

        let _ = std::fs::remove_file(test_file);
    }

    #[test]
    fn test_validate_path_with_config_encoded_traversal() {
        let config = LoaderConfig::new();
        let result = validate_path_with_config(Path::new("%2e%2e/etc/passwd"), &config);
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), PathTraversalError::EncodedTraversal);
    }

    #[test]
    fn test_validate_path_with_config_absolute_rejected() {
        let config = LoaderConfig::new();
        let result = validate_path_with_config(Path::new("/etc/passwd"), &config);
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), PathTraversalError::AbsolutePath);
    }

    #[test]
    fn test_loader_config_default_values() {
        let config = LoaderConfig::default();
        assert_eq!(config.max_size, DEFAULT_MAX_SIZE);
        assert!(!config.allow_absolute);
        assert!(config.check_symlinks);
        assert_eq!(config.allowed_base_dirs, vec![PathBuf::from(".")]);
    }

    #[test]
    fn test_loader_config_new_matches_default() {
        let new = LoaderConfig::new();
        let default = LoaderConfig::default();
        assert_eq!(new.max_size, default.max_size);
        assert_eq!(new.allow_absolute, default.allow_absolute);
        assert_eq!(new.check_symlinks, default.check_symlinks);
        assert_eq!(new.allowed_base_dirs.len(), default.allowed_base_dirs.len());
    }

    #[test]
    fn test_loader_config_max_size_builder() {
        let config = LoaderConfig::new().max_size(512);
        assert_eq!(config.max_size, 512);
    }

    #[test]
    fn test_loader_config_add_multiple_dirs() {
        let config = LoaderConfig::new()
            .add_allowed_dir("a")
            .add_allowed_dir("b")
            .add_allowed_dir("c");
        assert_eq!(config.allowed_base_dirs.len(), 4); // default "." + 3
    }

    #[test]
    fn test_format_from_str_via_parse() {
        assert_eq!("toml".parse::<Format>(), Ok(Format::Toml));
        assert_eq!("JSON".parse::<Format>(), Ok(Format::Json));
        assert_eq!("Yaml".parse::<Format>(), Ok(Format::Yaml));
        assert_eq!("yml".parse::<Format>(), Ok(Format::Yaml));
        assert_eq!("ini".parse::<Format>(), Ok(Format::Ini));
        assert_eq!("INI".parse::<Format>(), Ok(Format::Ini));
        assert_eq!("unknown".parse::<Format>(), Err(()));
        assert_eq!("".parse::<Format>(), Err(()));
    }

    #[test]
    fn test_format_try_parse_extra_cases() {
        assert_eq!(Format::try_parse("TOML"), Some(Format::Toml));
        assert_eq!(Format::try_parse("YML"), Some(Format::Yaml));
        assert_eq!(Format::try_parse(""), None);
        assert_eq!(Format::try_parse("toml/json"), None);
    }

    #[test]
    fn test_detect_format_from_path_ini_and_yml() {
        assert_eq!(
            detect_format_from_path(Path::new("conf.ini")),
            Some(Format::Ini)
        );
        assert_eq!(
            detect_format_from_path(Path::new("conf.INI")),
            Some(Format::Ini)
        );
        assert_eq!(
            detect_format_from_path(Path::new("conf.yml")),
            Some(Format::Yaml)
        );
    }

    #[test]
    fn test_detect_format_from_path_unknown_extension() {
        assert_eq!(detect_format_from_path(Path::new("conf.txt")), None);
        assert_eq!(detect_format_from_path(Path::new("conf.xml")), None);
        assert_eq!(detect_format_from_path(Path::new("conf")), None);
    }

    #[test]
    fn test_detect_format_from_content_yaml_marker() {
        assert_eq!(
            detect_format_from_content("---\nkey: value"),
            Some(Format::Yaml)
        );
    }

    #[test]
    fn test_detect_format_from_content_ini_section() {
        assert_eq!(
            detect_format_from_content("[section]\nkey=value"),
            Some(Format::Ini)
        );
    }

    #[test]
    fn test_detect_format_from_content_yaml_colon() {
        assert_eq!(detect_format_from_content("key: value"), Some(Format::Yaml));
    }

    #[cfg(feature = "yaml")]
    #[test]
    fn test_parse_content_yaml() {
        let r = parse_content("key: value", Format::Yaml, SourceId::new("t"), None);
        assert!(r.is_ok(), "{:?}", r.err());
        assert!(r.unwrap().is_map());
    }

    #[cfg(feature = "ini")]
    #[test]
    fn test_parse_content_ini() {
        let r = parse_content(
            "[section]\nkey=value",
            Format::Ini,
            SourceId::new("t"),
            None,
        );
        assert!(r.is_ok(), "{:?}", r.err());
        assert!(r.unwrap().is_map());
    }

    #[cfg(feature = "ini")]
    #[test]
    fn test_parse_ini_with_comments_and_invalid_lines() {
        let content =
            "; ini comment\n# hash comment\n[db]\nhost = localhost\nport = 5432\n=value\nbadline\n";
        let result = parse_ini(content, SourceId::new("test"), None);
        assert!(result.is_ok(), "{:?}", result.err());
        assert!(result.unwrap().is_map());
    }

    #[cfg(feature = "ini")]
    #[test]
    fn test_parse_ini_empty_key_skipped() {
        let result = parse_ini("=value\n[section]\nvalid=1\n", SourceId::new("test"), None);
        assert!(result.is_ok());
        let val = result.unwrap();
        assert!(val.is_map());
    }

    #[cfg(feature = "ini")]
    #[test]
    fn test_parse_ini_no_section_key_value() {
        let result = parse_ini("key=value", SourceId::new("test"), None);
        assert!(result.is_ok());
        assert!(result.unwrap().is_map());
    }

    #[cfg(feature = "json")]
    #[test]
    fn test_parse_json_error() {
        assert!(parse_json("{invalid}", SourceId::new("t"), None).is_err());
    }

    #[cfg(feature = "yaml")]
    #[test]
    fn test_parse_yaml_error() {
        // Unclosed flow mapping
        assert!(parse_yaml("{a: b", SourceId::new("t"), None).is_err());
    }

    #[cfg(feature = "toml")]
    #[test]
    fn test_parse_toml_table_helper_multiple_keys() {
        let mut table = toml::Table::new();
        table.insert("k1".to_string(), toml::Value::Integer(42));
        table.insert("k2".to_string(), toml::Value::String("v2".to_string()));
        let av = parse_toml_table(&table, &SourceId::new("src"), "prefix");
        assert!(av.is_map());
    }

    #[cfg(feature = "json")]
    #[test]
    fn test_parse_json_value_helper() {
        let v = serde_json::json!({"key": "value", "num": 123});
        let av = parse_json_value(&v, &SourceId::new("src"), "prefix");
        assert!(av.is_map());
    }

    #[cfg(feature = "yaml")]
    #[test]
    fn test_parse_yaml_value_helper() {
        let v: serde_yaml_ng::Value = serde_yaml_ng::from_str("key: value").unwrap();
        let av = parse_yaml_value(&v, &SourceId::new("src"), "prefix");
        assert!(av.is_map());
    }

    #[test]
    fn test_load_file_traversal_rejected() {
        let config = LoaderConfig::new();
        let result = load_file(Path::new("../../etc/passwd"), &config);
        assert!(result.is_err());
    }

    #[test]
    fn test_load_file_encoded_traversal_rejected() {
        let config = LoaderConfig::new();
        let result = load_file(Path::new("%2e%2e/etc/passwd"), &config);
        assert!(result.is_err());
    }

    #[test]
    fn test_load_file_absolute_rejected() {
        let config = LoaderConfig::new();
        let result = load_file(Path::new("/etc/passwd"), &config);
        assert!(result.is_err());
    }

    #[cfg(feature = "toml")]
    #[test]
    fn test_load_file_success() {
        let temp_dir = std::env::temp_dir();
        let test_file = temp_dir.join("confers_test_load_success.toml");
        std::fs::write(&test_file, "key = \"value\"\n").unwrap();

        let config = LoaderConfig::new().allow_absolute();
        let result = load_file(&test_file, &config);
        assert!(result.is_ok(), "{:?}", result.err());
        assert!(result.unwrap().is_map());

        let _ = std::fs::remove_file(test_file);
    }

    #[cfg(feature = "toml")]
    #[test]
    fn test_load_file_size_limit_exceeded() {
        let temp_dir = std::env::temp_dir();
        let test_file = temp_dir.join("confers_test_size_limit.toml");
        std::fs::write(&test_file, "key = \"value\"\n").unwrap();

        let config = LoaderConfig::new().allow_absolute().max_size(1);
        let result = load_file(&test_file, &config);
        assert!(result.is_err());

        let _ = std::fs::remove_file(test_file);
    }
}