fixture-tree 0.1.0

Generate Rust source that mirrors a directory tree, providing compile-time accessors for fixture file paths and contents.
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
#![allow(clippy::needless_doctest_main)]
//! # fixture-tree
//!
//! Generate Rust source code that mirrors a filesystem directory as a module tree,
//! providing zero-cost accessors for file paths and contents at compile time.
//!
//! `fixture-tree` is intended for use from **build scripts** (`build.rs`). It walks a
//! directory of fixture files (test data, configs, model weights, etc.) and emits a
//! `.rs` file where every directory becomes a `mod` and every file becomes a function
//! returning its path and, optionally, its contents via `include_str!` or
//! `include_bytes!`.
//!
//! This can be particularly useful if you find yourself using a lot of static files for testing
//! specific use-cases. This allows you to use code linting to easily traverse your fixture
//! file structure and will result in a compilation error if you mix around file paths.
//!
//! ## Quick start
//!
//! ```rust,no_run
//! // build.rs
//! fn main() {
//!     fixture_tree::Config::new()
//!         .from_path("fixtures")           // relative to CARGO_MANIFEST_DIR
//!         .with_ext("json")                // only include .json files
//!         .with_ext_as_string("json")       // embed contents via include_str!
//!         .build()
//!         .unwrap()
//!         .generate_fixtures()
//!         .unwrap();
//! }
//! ```
//!
//! Then in your library or test code:
//!
//! ```rust,ignore
//! include!(concat!(env!("OUT_DIR"), "/fixture_tree_autogen.rs"));
//!
//! #[test]
//! fn read_fixture() {
//!     let (path, contents) = configs::pass::basic();
//!     assert!(path.exists());
//!     assert!(contents.contains("ok"));
//! }
//! ```
//!
//! ## Path handling
//!
//! When the source directory is under `CARGO_MANIFEST_DIR` (the typical case),
//! generated paths use `concat!(env!("CARGO_MANIFEST_DIR"), "/...")` so they
//! resolve correctly on any machine. If the source directory is outside the
//! manifest (e.g. a system temp directory), absolute paths are emitted instead.
//!
//! ## Filtering
//!
//! Files can be filtered in two ways:
//!
//! - **By extension** — [`Config::with_ext`] / [`Config::with_exts`] restrict
//!   which file extensions are walked. An empty list means "all extensions".
//! - **By regex** *(requires the `regex` feature)* -
//!   [`Config::with_allow_pattern`] / [`Config::with_allow_patterns`]
//!   match against the file's path relative to the source root. When at least one
//!   regex is configured a file must match *any* of them to be included.
//!
//! Entire subtrees can be excluded with [`Config::without_path`] /
//! [`Config::without_paths`], which compare against the directory's relative path.
//!
//! ## Generated code shape
//!
//! For each directory a `path()` function is emitted. For each matched file a
//! function named after the file stem (lowercased, dashes replaced with
//! underscores) is emitted. Files registered as string extensions return
//! `(&'static Path, &'static str)`, binary extensions return
//! `(&'static Path, &'static [u8])` and files not registered as binary or strings
//! just return a `&'static Path`.
//! Empty directories are pruned from the
//! output.

use std::collections::BTreeMap;
use std::fmt;
use std::fmt::Write as _;
use std::fs;
use std::path::{Path, PathBuf};

/// Errors that can occur when building or generating a [`FixtureTree`].
#[derive(Debug)]
pub enum Error {
    /// An extension was registered as both string and binary.
    ExtConflict(String),
    /// A path could not be made relative to the source root.
    StripPrefix(std::path::StripPrefixError),
    /// An I/O error occurred while reading the source directory or writing the
    /// output file.
    Io(std::io::Error),
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::ExtConflict(ext) => write!(
                f,
                "'{}' cannot be registered as both string and binary",
                ext
            ),
            Error::StripPrefix(e) => write!(f, "failed to compute relative path: {}", e),
            Error::Io(e) => write!(f, "I/O error: {}", e),
        }
    }
}

impl std::error::Error for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Error::ExtConflict(_) => None,
            Error::StripPrefix(e) => Some(e),
            Error::Io(e) => Some(e),
        }
    }
}

impl From<std::path::StripPrefixError> for Error {
    fn from(e: std::path::StripPrefixError) -> Self {
        Error::StripPrefix(e)
    }
}

impl From<std::io::Error> for Error {
    fn from(e: std::io::Error) -> Self {
        Error::Io(e)
    }
}

/// A specialised [`Result`] type for fixture-tree operations.
pub type Result<T> = std::result::Result<T, Error>;

/// A discovered fixture file.
///
/// Holds the generated function name, the resolved filesystem path, and the
/// lowercased file extension.
#[derive(Debug)]
pub struct Fixture {
    fn_name: String,
    path: PathBuf,
    ext: String,
}

/// Internal representation of the source directory.
///
/// If the directory is under `CARGO_MANIFEST_DIR` it stores a relative path
/// and sets `rel_to_manifest = true` so that generated code uses
/// `concat!(env!("CARGO_MANIFEST_DIR"), "...")` rather than absolute paths.
#[derive(Debug)]
struct SourceDirectory {
    p: PathBuf,
    rel_to_manifest: bool,
}

impl SourceDirectory {
    fn new(p: impl Into<PathBuf>) -> Self {
        let p = p.into();
        let mut p = p
            .canonicalize()
            .expect("could not make source path absolute");
        let rel_to_manifest = match std::env::var("CARGO_MANIFEST_DIR") {
            Ok(c) => match p.strip_prefix(&c) {
                Ok(stripped) => {
                    p = stripped.to_path_buf();
                    true
                }
                _ => false,
            },
            _ => false,
        };
        Self { p, rel_to_manifest }
    }

    fn is_rel(&self) -> bool {
        self.rel_to_manifest
    }

    fn path(&self) -> &Path {
        &self.p
    }
}

impl Default for SourceDirectory {
    fn default() -> Self {
        let cur = std::env::current_dir().expect("could not find the current directory");
        Self::new(cur)
    }
}

/// Builder for configuring a [`FixtureTree`].
///
/// Construct with [`Config::new`], chain builder methods to set options, and
/// finalise with [`Config::build`].
///
/// # Examples
///
/// ```rust,no_run
/// let tree = fixture_tree::Config::new()
///     .from_path("test_data")
///     .with_exts(["json", "toml"])
///     .with_exts_as_string(["json", "toml"])
///     .without_path("scratch")
///     .build()
///     .unwrap();
/// tree.generate_fixtures().unwrap();
/// ```
#[derive(Debug)]
pub struct Config {
    #[cfg(feature = "regex")]
    pub(crate) allow_regexs: Vec<regex::Regex>,
    pub(crate) allow_exts: Vec<String>,
    pub(crate) ignore_paths: Vec<PathBuf>,
    pub(crate) source: SourceDirectory,
    pub(crate) include_ext_as_str: Vec<String>,
    pub(crate) include_ext_as_bin: Vec<String>,
    pub(crate) out_path: PathBuf,
}

impl Default for Config {
    fn default() -> Self {
        Self::new()
    }
}

impl Config {
    /// Create a new config with default settings.
    ///
    /// Defaults:
    /// - **source directory**: current working directory
    /// - **output path**: `$OUT_DIR/fixture_tree_autogen.rs` (falls back to cwd
    ///   when `OUT_DIR` is not set)
    /// - **filters**: none (all files included)
    pub fn new() -> Self {
        let out_path = std::env::var("OUT_DIR")
            .map(PathBuf::from)
            .unwrap_or(std::env::current_dir().unwrap());
        let out_path = out_path.join("fixture_tree_autogen.rs");

        Self {
            #[cfg(feature = "regex")]
            allow_regexs: vec![],
            allow_exts: vec![],
            ignore_paths: vec![],
            include_ext_as_bin: vec![],
            include_ext_as_str: vec![],
            source: Default::default(),
            out_path,
        }
    }

    /// Only include files whose extension matches `ext` (case-insensitive).
    ///
    /// Can be called multiple times to allow several extensions. If no
    /// extension filter is set, all files are included.
    pub fn with_ext(mut self, ext: impl Into<String>) -> Self {
        self.allow_exts.push(ext.into());
        self
    }

    /// Batch version of [`Config::with_ext`].
    ///
    /// ```rust,no_run
    /// # let config = fixture_tree::Config::new();
    /// config.with_exts(["json", "toml", "yaml"]);
    /// ```
    pub fn with_exts(mut self, exts: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.allow_exts.extend(exts.into_iter().map(|x| x.into()));
        self
    }

    /// Exclude an entire directory subtree by its path relative to the source
    /// root.
    ///
    /// ```rust,no_run
    /// # let config = fixture_tree::Config::new();
    /// config.without_path("snapshots");
    /// ```
    pub fn without_path(mut self, p: impl Into<PathBuf>) -> Self {
        self.ignore_paths.push(p.into());
        self
    }

    /// Batch version of [`Config::without_path`].
    pub fn without_paths(mut self, paths: impl IntoIterator<Item = impl Into<PathBuf>>) -> Self {
        self.ignore_paths
            .extend(paths.into_iter().map(|x| x.into()));
        self
    }

    /// Only include files whose relative path matches the given regex.
    ///
    /// Multiple patterns are combined with OR semantics — a file is included if
    /// it matches *any* pattern. The pattern is matched against the file's path
    /// relative to the source root (e.g. `"configs/pass/basic.json"`).
    ///
    /// Requires the `regex` feature.
    ///
    /// # Panics
    ///
    /// Panics if the pattern string is not a valid regex.
    #[cfg(feature = "regex")]
    pub fn with_allow_pattern(mut self, pat: impl Into<String>) -> Self {
        self.allow_regexs
            .push(regex::Regex::new(&pat.into()).expect("could not create regex"));
        self
    }

    /// Batch version of [`Config::with_allow_pattern`].
    ///
    /// Requires the `regex` feature.
    ///
    /// # Panics
    ///
    /// Panics if any pattern string is not a valid regex.
    #[cfg(feature = "regex")]
    pub fn with_allow_patterns(
        mut self,
        pats: impl IntoIterator<Item = impl Into<String>>,
    ) -> Self {
        let pats = pats
            .into_iter()
            .map(|x| regex::Regex::new(&x.into()).expect("could not create regex"));
        self.allow_regexs.extend(pats);
        self
    }

    /// Set the root directory to scan for fixture files.
    ///
    /// The path is canonicalised and, if it falls under `CARGO_MANIFEST_DIR`,
    /// generated code will reference it relative to the manifest via
    /// `env!("CARGO_MANIFEST_DIR")`.
    ///
    /// # Panics
    ///
    /// Panics if the path does not exist or cannot be canonicalised.
    pub fn from_path(mut self, p: impl Into<PathBuf>) -> Self {
        let source = SourceDirectory::new(p);
        self.source = source;
        self
    }

    /// Register a file extension whose contents should be embedded as a
    /// `&'static str` via `include_str!`.
    ///
    /// The generated accessor for matching files returns
    /// `(&'static Path, &'static str)`.
    pub fn with_ext_as_string(mut self, ext: impl Into<String>) -> Self {
        self.include_ext_as_str.push(ext.into());
        self
    }

    /// Batch version of [`Config::with_ext_as_string`].
    pub fn with_exts_as_string(
        mut self,
        exts: impl IntoIterator<Item = impl Into<String>>,
    ) -> Self {
        self.include_ext_as_str
            .extend(exts.into_iter().map(|x| x.into()));
        self
    }

    /// Register a file extension whose contents should be embedded as a
    /// `&'static [u8]` via `include_bytes!`.
    ///
    /// The generated accessor for matching files returns
    /// `(&'static Path, &'static [u8])`.
    pub fn with_ext_as_bin(mut self, ext: impl Into<String>) -> Self {
        self.include_ext_as_bin.push(ext.into());
        self
    }

    /// Batch version of [`Config::with_ext_as_bin`].
    pub fn with_exts_as_bin(mut self, exts: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.include_ext_as_bin
            .extend(exts.into_iter().map(|x| x.into()));
        self
    }

    /// Override the path where the generated Rust source file is written.
    ///
    /// Defaults to `$OUT_DIR/fixture_tree_autogen.rs`.
    pub fn with_output_path(mut self, p: impl Into<PathBuf>) -> Self {
        self.out_path = p.into();
        self
    }

    /// Validate the configuration and build a [`FixtureTree`].
    ///
    /// # Errors
    ///
    /// Returns an error if:
    /// - An extension is registered as both string and binary.
    /// - The source directory cannot be read.
    pub fn build(self) -> Result<FixtureTree> {
        for ext in &self.include_ext_as_str {
            if self.include_ext_as_bin.contains(ext) {
                return Err(Error::ExtConflict(ext.clone()));
            }
        }
        FixtureTree::new(self)
    }
}

/// In-memory representation of a scanned directory.
///
/// Each `Directory` holds its child directories (as nested `Directory` values)
/// and the [`Fixture`] files found at this level. Used internally to build
/// the module tree before code generation.
#[derive(Debug)]
pub struct Directory {
    directories: BTreeMap<String, Directory>,
    fixtures: Vec<Fixture>,
    path: PathBuf,
}

impl Directory {
    /// Scan a directory and build the tree according to `config`.
    pub fn from_path(p: &Path, config: &Config) -> Result<Self> {
        let mut root = Self {
            directories: BTreeMap::new(),
            fixtures: Vec::new(),
            path: p.to_path_buf(),
        };
        root.from_path_inner(p, config)?;
        Ok(root)
    }

    #[allow(clippy::wrong_self_convention)]
    fn from_path_inner(&mut self, p: &Path, config: &Config) -> Result<()> {
        if let Ok(entries) = fs::read_dir(p) {
            for entry in entries.flatten() {
                let path = entry.path();
                let relpath = path.strip_prefix(config.source.path())?.to_path_buf();
                let ext = path
                    .extension()
                    .map(|s| s.to_string_lossy().to_string().to_lowercase());

                if path.is_dir() && !config.ignore_paths.contains(&relpath) {
                    // Get directory name for module
                    let dirname = path.file_name().unwrap().to_str().unwrap().to_string();
                    // Create or get the subtree for this directory
                    let subtree = self.directories.entry(dirname.clone()).or_insert(Self {
                        directories: BTreeMap::new(),
                        fixtures: Vec::new(),
                        path: p.join(&dirname),
                    });
                    subtree.from_path_inner(&path, config)?;
                } else if ext.as_ref().is_some_and(|e| {
                    if config.allow_exts.is_empty() {
                        true
                    } else {
                        config.allow_exts.contains(e)
                    }
                }) {
                    // If regex filters are configured, the relative path must
                    // match at least one of them to be included.
                    #[cfg(feature = "regex")]
                    if !config.allow_regexs.is_empty() {
                        let relpath_str = relpath.to_string_lossy();
                        if !config.allow_regexs.iter().any(|r| r.is_match(&relpath_str)) {
                            continue;
                        }
                    }

                    // Generate function name from filename
                    let fn_name = path
                        .file_stem()
                        .unwrap()
                        .to_str()
                        .unwrap()
                        .replace('-', "_")
                        .to_lowercase();

                    self.fixtures.push(Fixture {
                        fn_name,
                        path,
                        ext: ext.unwrap(),
                    });
                }
            }
        }

        Ok(())
    }

    /// Render the full generated Rust source for this directory tree.
    pub fn generate_code(&self, config: &Config) -> String {
        let mut buffer = String::from("// fixture-tree auto-generated fixture accessors\n\n");
        self.generate_code_inner(config, &mut buffer, 0);
        buffer
    }

    fn generate_code_inner(&self, config: &Config, buffer: &mut String, indent_level: usize) {
        let indent = "    ".repeat(indent_level);

        let path = self.path.to_string_lossy().replace('\\', "/");

        if config.source.is_rel() {
            rel_mod_path(buffer, &path, &indent);
        } else {
            non_rel_mod_path(buffer, &path, &indent);
        }

        // Generate functions for fixtures at this level
        for f in &self.fixtures {
            let path = f.path.to_string_lossy().replace('\\', "/");

            if config.include_ext_as_str.contains(&f.ext) {
                if config.source.is_rel() {
                    rel_as_string_file(buffer, &f.fn_name, &path, &indent);
                } else {
                    non_rel_as_string_file(buffer, &f.fn_name, &path, &indent);
                }
            } else if config.include_ext_as_bin.contains(&f.ext) {
                if config.source.is_rel() {
                    rel_as_bin_file(buffer, &f.fn_name, &path, &indent);
                } else {
                    non_rel_as_bin_file(buffer, &f.fn_name, &path, &indent);
                }
            } else if config.source.is_rel() {
                rel_file_path(buffer, &f.fn_name, &path, &indent);
            } else {
                non_rel_file_path(buffer, &f.fn_name, &path, &indent);
            }
        }

        // Generate nested modules
        for (module_name, subtree) in &self.directories {
            if subtree.is_empty() {
                continue;
            }
            buffer.push_str(&format!("{}pub mod {} {{\n\n", indent, module_name));
            subtree.generate_code_inner(config, buffer, indent_level + 1);
            buffer.push_str(&format!("{}}}\n\n", indent));
        }
    }

    /// Returns `true` when this directory (and all descendants) contain no
    /// fixtures. Used to prune empty modules from the generated output.
    pub fn is_empty(&self) -> bool {
        self.fixtures.is_empty() && self.directories.values().all(|d| d.is_empty())
    }
}

/// The top-level handle returned by [`Config::build`].
///
/// Call [`FixtureTree::generate_fixtures`] to write the generated Rust source
/// file to disk.
#[derive(Debug)]
pub struct FixtureTree {
    root: Directory,
    config: Config,
}

impl FixtureTree {
    /// Create a new `FixtureTree` by scanning the configured source directory.
    pub fn new(config: Config) -> Result<Self> {
        let root = Directory::from_path(config.source.path(), &config)?;
        Ok(Self { root, config })
    }

    /// Generate the Rust source file and write it to the configured output
    /// path.
    ///
    /// # Errors
    ///
    /// Returns an error if the output file cannot be written.
    pub fn generate_fixtures(&self) -> Result<()> {
        let fixtures = self.root.generate_code(&self.config);
        fs::write(&self.config.out_path, fixtures)?;
        Ok(())
    }
}

fn non_rel_mod_path(buffer: &mut String, path: &str, indent: &str) {
    write!(
        buffer,
        r#"{indent}pub fn path() -> &'static std::path::Path {{
{indent}    std::path::Path::new("{path}")
{indent}}}

"#
    )
    .unwrap();
}

fn rel_mod_path(buffer: &mut String, path: &str, indent: &str) {
    write!(
        buffer,
        "{indent}pub fn path() -> &'static std::path::Path {{\n\
{indent}    std::path::Path::new(concat!(env!(\"CARGO_MANIFEST_DIR\"), \"/{path}\"))\n\
{indent}}}\n\n"
    )
    .unwrap();
}

fn non_rel_file_path(buffer: &mut String, fn_name: &str, path: &str, indent: &str) {
    write!(
        buffer,
        r#"{indent}pub fn {fn_name}() -> &'static std::path::Path {{
{indent}    std::path::Path::new("{path}")
{indent}}}

"#
    )
    .unwrap();
}

fn rel_file_path(buffer: &mut String, fn_name: &str, path: &str, indent: &str) {
    write!(
        buffer,
        r#"{indent}pub fn {fn_name}() -> &'static std::path::Path {{
{indent}    std::path::Path::new(concat!(env!("CARGO_MANIFEST_DIR"), "/{path}"))
{indent}}}

"#
    )
    .unwrap();
}

fn rel_as_string_file(buffer: &mut String, fn_name: &str, path: &str, indent: &str) {
    write!(buffer,
r#"{indent}pub fn {fn_name}() -> (&'static std::path::Path, &'static str) {{
{indent}    (std::path::Path::new(concat!(env!("CARGO_MANIFEST_DIR"), "/{path}")), include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/{path}")))
{indent}}}

"#
    ).unwrap();
}

fn non_rel_as_string_file(buffer: &mut String, fn_name: &str, path: &str, indent: &str) {
    write!(
        buffer,
        r#"{indent}pub fn {fn_name}() -> (&'static std::path::Path, &'static str) {{
{indent}    (std::path::Path::new("{path}"), include_str!("{path}"))
{indent}}}

"#
    )
    .unwrap();
}

fn rel_as_bin_file(buffer: &mut String, fn_name: &str, path: &str, indent: &str) {
    write!(buffer,
r#"{indent}pub fn {fn_name}() -> (&'static std::path::Path, &'static [u8]) {{
{indent}    (std::path::Path::new(concat!(env!("CARGO_MANIFEST_DIR"), "/{path}")), include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/{path}")))
{indent}}}

"#
    ).unwrap();
}

fn non_rel_as_bin_file(buffer: &mut String, fn_name: &str, path: &str, indent: &str) {
    write!(
        buffer,
        r#"{indent}pub fn {fn_name}() -> (&'static std::path::Path, &'static [u8]) {{
{indent}    (std::path::Path::new("{path}"), include_bytes!("{path}"))
{indent}}}

"#
    )
    .unwrap();
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::path::PathBuf;
    use tempfile::TempDir;

    /// Lay out a sufficiently complex fixture tree under `root`:
    fn create_fixture_tree(root: &Path) {
        let dirs = [
            "",
            "models",
            "configs",
            "configs/pass",
            "configs/fail",
            "ignored",
        ];
        for d in &dirs {
            fs::create_dir_all(root.join(d)).unwrap();
        }

        let text_files = [
            ("alpha.json", r#"{"a": 1}"#),
            ("beta.json", r#"{"b": 2}"#),
            ("delta.txt", "plain text"),
            ("models/linear.json", r#"{"type": "linear"}"#),
            ("models/conv.json", r#"{"type": "conv"}"#),
            ("configs/pass/basic.json", r#"{"ok": true}"#),
            (
                "configs/pass/advanced.json",
                r#"{"ok": true, "level": "advanced"}"#,
            ),
            ("configs/fail/bad_config.json", r#"{"ok": false}"#),
            ("ignored/should_skip.json", r#"{"skip": true}"#),
        ];
        for (name, content) in &text_files {
            fs::write(root.join(name), content).unwrap();
        }

        // Binary files
        fs::write(root.join("gamma.bin"), &[0xDE, 0xAD, 0xBE, 0xEF]).unwrap();
        fs::write(root.join("models/weights.bin"), &[0x01, 0x02, 0x03]).unwrap();
    }

    /// Build a fixture tree and return the generated code as a String.
    fn generate_to_string(config: Config) -> String {
        let out = config.out_path.clone();
        let ft = config.build().unwrap();
        ft.generate_fixtures().unwrap();
        fs::read_to_string(&out).unwrap()
    }

    use std::sync::atomic::{AtomicUsize, Ordering};

    static TEST_COUNTER: AtomicUsize = AtomicUsize::new(0);

    /// Create a temp dir outside `CARGO_MANIFEST_DIR` and populate it.
    fn setup_tempdir() -> TempDir {
        let tmp = TempDir::new().unwrap();
        create_fixture_tree(tmp.path());
        tmp
    }

    /// Create a uniquely-named dir inside the project (under CARGO_MANIFEST_DIR)
    /// and populate it. Each call gets its own directory so tests can run in
    /// parallel without interfering.
    struct InManifestDir(PathBuf);

    impl InManifestDir {
        fn new() -> Self {
            let id = TEST_COUNTER.fetch_add(1, Ordering::SeqCst);
            let manifest = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
            let test_root = manifest.join("test_fixtures");
            let dir = test_root.join(format!("auto_{id}"));
            if dir.exists() {
                fs::remove_dir_all(&dir).unwrap();
            }
            create_fixture_tree(&dir);
            Self(dir)
        }

        fn path(&self) -> &Path {
            &self.0
        }
    }

    impl Drop for InManifestDir {
        fn drop(&mut self) {
            let _ = fs::remove_dir_all(&self.0);
        }
    }

    // in-manifest tests (rel_to_manifest = true)

    #[test]
    fn manual_review_all() {
        let dir = InManifestDir::new();
        let out = dir.path().parent().unwrap().join("manual_review_all.rs");

        Config::new()
            .from_path(dir.path())
            .with_output_path(out.clone())
            .with_exts_as_string(["json", "txt"])
            .with_exts_as_bin(["bin"])
            .build()
            .unwrap()
            .generate_fixtures()
            .unwrap();
    }

    #[test]
    fn manual_review_only_stringy() {
        let dir = InManifestDir::new();
        let out = dir
            .path()
            .parent()
            .unwrap()
            .join("manual_review_stringy.rs");

        Config::new()
            .from_path(dir.path())
            .with_output_path(out.clone())
            .with_exts_as_string(["json", "txt"])
            .build()
            .unwrap()
            .generate_fixtures()
            .unwrap();
    }

    #[test]
    fn in_manifest_generates_all_json_files() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_out.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        // root-level json files present
        assert!(code.contains("pub fn alpha()"), "alpha.json missing");
        assert!(code.contains("pub fn beta()"), "beta.json missing");

        // nested files present
        assert!(
            code.contains("pub fn linear()"),
            "models/linear.json missing"
        );
        assert!(code.contains("pub fn conv()"), "models/conv.json missing");
        assert!(
            code.contains("pub fn basic()"),
            "configs/pass/basic.json missing"
        );
        assert!(
            code.contains("pub fn advanced()"),
            "configs/pass/advanced.json missing"
        );
        assert!(
            code.contains("pub fn bad_config()"),
            "configs/fail/bad_config.json missing"
        );

        // non-json files excluded
        assert!(
            !code.contains("pub fn gamma()"),
            "gamma.bin should be excluded by ext filter"
        );
        assert!(
            !code.contains("pub fn delta()"),
            "delta.txt should be excluded by ext filter"
        );
        assert!(
            !code.contains("pub fn weights()"),
            "weights.bin should be excluded by ext filter"
        );

        // uses CARGO_MANIFEST_DIR (relative)
        assert!(
            code.contains("env!(\"CARGO_MANIFEST_DIR\")"),
            "should use CARGO_MANIFEST_DIR"
        );
        assert!(
            !code.contains("\"/home"),
            "should not contain absolute paths"
        );
    }

    #[test]
    fn in_manifest_nested_modules_structure() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_structure.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        assert!(code.contains("pub mod models {"), "models module missing");
        assert!(code.contains("pub mod configs {"), "configs module missing");
        assert!(code.contains("pub mod pass {"), "pass module missing");
        assert!(code.contains("pub mod fail {"), "fail module missing");
        assert!(code.contains("pub mod ignored {"), "ignored module missing");
    }

    #[test]
    fn in_manifest_path_fn_per_module() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_paths.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        // Every module gets a path() function
        let path_count = code.matches("pub fn path()").count();
        // root + models + configs + pass + fail + ignored = 6
        assert!(
            path_count >= 6,
            "expected at least 6 path() fns, got {path_count}"
        );
    }

    #[test]
    fn in_manifest_ext_as_string_returns_tuple() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_str.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        assert!(
            code.contains("(&'static std::path::Path, &'static str)"),
            "string fixtures should return (Path, str) tuple"
        );
        assert!(
            code.contains("include_str!"),
            "should use include_str! for string fixtures"
        );
    }

    #[test]
    fn in_manifest_ext_as_bin_returns_bytes() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_bin.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("bin")
                .with_ext_as_bin("bin"),
        );

        assert!(code.contains("pub fn gamma()"), "gamma.bin missing");
        assert!(
            code.contains("pub fn weights()"),
            "models/weights.bin missing"
        );
        assert!(
            code.contains("(&'static std::path::Path, &'static [u8])"),
            "binary fixtures should return (Path, [u8]) tuple"
        );
        assert!(
            code.contains("include_bytes!"),
            "should use include_bytes! for binary fixtures"
        );
    }

    #[test]
    fn in_manifest_multiple_exts() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_multi_ext.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext("bin")
                .with_ext_as_string("json")
                .with_ext_as_bin("bin"),
        );

        // Both types present
        assert!(code.contains("pub fn alpha()"), "json fixture missing");
        assert!(code.contains("pub fn gamma()"), "bin fixture missing");
        assert!(code.contains("include_str!"), "missing include_str");
        assert!(code.contains("include_bytes!"), "missing include_bytes");
    }

    #[test]
    fn in_manifest_no_ext_filter_includes_everything() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_no_ext.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext_as_string("json")
                .with_ext_as_string("txt")
                .with_ext_as_bin("bin"),
        );

        // All extensions should be walked when allow_exts is empty
        assert!(code.contains("pub fn alpha()"), "json missing");
        assert!(code.contains("pub fn gamma()"), "bin missing");
        assert!(code.contains("pub fn delta()"), "txt missing");
    }

    #[test]
    fn in_manifest_ignore_paths() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_ignore.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json")
                .without_path(PathBuf::from("ignored")),
        );

        assert!(
            !code.contains("pub fn should_skip()"),
            "ignored dir should be excluded"
        );
        assert!(
            code.contains("pub fn alpha()"),
            "non-ignored files should remain"
        );
    }

    #[test]
    fn in_manifest_ignore_multiple_paths() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_ignore_multi.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json")
                .without_paths(vec![PathBuf::from("ignored"), PathBuf::from("configs")]),
        );

        assert!(!code.contains("pub fn should_skip()"), "ignored/ excluded");
        assert!(!code.contains("pub fn basic()"), "configs/ excluded");
        assert!(!code.contains("pub fn bad_config()"), "configs/ excluded");
        assert!(code.contains("pub fn alpha()"), "root files remain");
        assert!(code.contains("pub fn linear()"), "models/ remain");
    }

    #[test]
    #[cfg(feature = "regex")]
    fn in_manifest_regex_filter_filename() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_regex_name.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json")
                .with_allow_pattern(r"alpha|beta"),
        );

        assert!(code.contains("pub fn alpha()"), "alpha should match");
        assert!(code.contains("pub fn beta()"), "beta should match");
        assert!(!code.contains("pub fn linear()"), "linear should not match");
        assert!(!code.contains("pub fn basic()"), "basic should not match");
    }

    #[test]
    #[cfg(feature = "regex")]
    fn in_manifest_regex_filter_path_component() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_regex_path.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json")
                .with_allow_pattern(r"^configs/pass/"),
        );

        assert!(
            code.contains("pub fn basic()"),
            "configs/pass/basic.json should match"
        );
        assert!(
            code.contains("pub fn advanced()"),
            "configs/pass/advanced.json should match"
        );
        assert!(
            !code.contains("pub fn bad_config()"),
            "configs/fail/ should not match"
        );
        assert!(
            !code.contains("pub fn alpha()"),
            "root files should not match"
        );
    }

    #[test]
    #[cfg(feature = "regex")]
    fn in_manifest_multiple_regex_patterns_or() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_regex_multi.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json")
                .with_allow_patterns(vec![r"^alpha", r"^models/"]),
        );

        assert!(
            code.contains("pub fn alpha()"),
            "alpha should match first pattern"
        );
        assert!(
            code.contains("pub fn linear()"),
            "models/ should match second pattern"
        );
        assert!(
            code.contains("pub fn conv()"),
            "models/ should match second pattern"
        );
        assert!(
            !code.contains("pub fn beta()"),
            "beta should not match either pattern"
        );
    }

    #[test]
    fn in_manifest_empty_dirs_omitted() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_empty.rs");
        // Only allow .txt, the only .txt file is at the root, so all subdirs
        // with only .json/.bin become empty and should be pruned.
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("txt")
                .with_ext_as_string("txt"),
        );

        assert!(
            code.contains("pub fn delta()"),
            "delta.txt should be present"
        );
        assert!(
            !code.contains("pub mod models {"),
            "empty models module should be omitted"
        );
        assert!(
            !code.contains("pub mod configs {"),
            "empty configs module should be omitted"
        );
    }

    #[test]
    fn in_manifest_fn_name_sanitisation() {
        let dir = InManifestDir::new();
        // Create a file with dashes in the name
        fs::write(dir.path().join("my-dashed-name.json"), "{}").unwrap();
        let out = dir.path().join("_test_sanitise.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(dir.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        assert!(
            code.contains("pub fn my_dashed_name()"),
            "dashes should be replaced with underscores"
        );
        assert!(
            !code.contains("pub fn my-dashed-name()"),
            "raw dashes should not appear in fn names"
        );
    }

    #[test]
    fn in_manifest_ext_overlap_rejected() {
        let dir = InManifestDir::new();
        let out = dir.path().join("_test_overlap.rs");
        let result = Config::new()
            .from_path(dir.path())
            .with_output_path(&out)
            .with_ext("json")
            .with_ext_as_string("json")
            .with_ext_as_bin("json")
            .build();

        assert!(result.is_err(), "overlapping string/bin ext should fail");
        let msg = result.unwrap_err().to_string();
        assert!(
            msg.contains("json"),
            "error should mention the offending ext"
        );
    }

    // temp-dir tests (rel_to_manifest = false)

    #[test]
    fn tempdir_generates_absolute_paths() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_out.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        // Should NOT reference CARGO_MANIFEST_DIR
        assert!(
            !code.contains("env!(\"CARGO_MANIFEST_DIR\")"),
            "temp-dir output should not use CARGO_MANIFEST_DIR"
        );

        // Should contain absolute paths from the tempdir
        let tmp_str = tmp.path().to_string_lossy();
        assert!(
            code.contains(tmp_str.as_ref()),
            "output should contain the temp dir absolute path"
        );
    }

    #[test]
    fn tempdir_generates_all_json_files() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_all.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        assert!(code.contains("pub fn alpha()"), "alpha missing");
        assert!(code.contains("pub fn beta()"), "beta missing");
        assert!(code.contains("pub fn linear()"), "linear missing");
        assert!(code.contains("pub fn basic()"), "basic missing");
        assert!(code.contains("pub fn bad_config()"), "bad_config missing");
        assert!(
            !code.contains("pub fn gamma()"),
            "gamma.bin should be excluded"
        );
    }

    #[test]
    fn tempdir_ext_as_bin() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_bin.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("bin")
                .with_ext_as_bin("bin"),
        );

        assert!(code.contains("pub fn gamma()"), "gamma.bin missing");
        assert!(code.contains("pub fn weights()"), "weights.bin missing");
        assert!(code.contains("include_bytes!"), "should use include_bytes!");
        assert!(
            !code.contains("include_str!"),
            "should not use include_str!"
        );
    }

    #[test]
    fn tempdir_ignore_paths() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_ign.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json")
                .without_path(PathBuf::from("ignored"))
                .without_path(PathBuf::from("models")),
        );

        assert!(!code.contains("pub fn should_skip()"), "ignored/ excluded");
        assert!(!code.contains("pub fn linear()"), "models/ excluded");
        assert!(code.contains("pub fn alpha()"), "root files remain");
    }

    #[test]
    #[cfg(feature = "regex")]
    fn tempdir_regex_filter() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_regex.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json")
                .with_allow_pattern(r"configs/"),
        );

        assert!(
            code.contains("pub fn basic()"),
            "configs/ files should match"
        );
        assert!(
            code.contains("pub fn bad_config()"),
            "configs/ files should match"
        );
        assert!(
            !code.contains("pub fn alpha()"),
            "root files should not match"
        );
        assert!(
            !code.contains("pub fn linear()"),
            "models/ should not match"
        );
    }

    #[test]
    fn tempdir_nested_modules() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_mods.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext_as_string("json"),
        );

        assert!(code.contains("pub mod models {"), "models module");
        assert!(code.contains("pub mod configs {"), "configs module");
        assert!(code.contains("pub mod pass {"), "pass submodule");
        assert!(code.contains("pub mod fail {"), "fail submodule");
    }

    #[test]
    fn tempdir_empty_modules_pruned() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_prune.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("txt")
                .with_ext_as_string("txt"),
        );

        assert!(code.contains("pub fn delta()"), "delta.txt present");
        assert!(!code.contains("pub mod models {"), "empty dir pruned");
    }

    #[test]
    fn tempdir_mixed_string_and_bin() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_mixed.rs");
        let code = generate_to_string(
            Config::new()
                .from_path(tmp.path())
                .with_output_path(&out)
                .with_ext("json")
                .with_ext("bin")
                .with_ext_as_string("json")
                .with_ext_as_bin("bin"),
        );

        // String
        assert!(code.contains("include_str!"), "json uses include_str!");
        // Bin
        assert!(code.contains("include_bytes!"), "bin uses include_bytes!");
        // Both types present
        assert!(code.contains("pub fn alpha()"), "json fixture");
        assert!(code.contains("pub fn gamma()"), "bin fixture");
    }

    #[test]
    fn tempdir_ext_overlap_rejected() {
        let tmp = setup_tempdir();
        let out = tmp.path().join("_test_overlap.rs");
        let result = Config::new()
            .from_path(tmp.path())
            .with_output_path(&out)
            .with_ext("json")
            .with_ext_as_string("json")
            .with_ext_as_bin("json")
            .build();

        assert!(result.is_err(), "overlapping ext should be rejected");
    }
}