vfs-kit 0.2.0

Virtual file systems KIT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
//! This module provides a virtual filesystem (VFS) implementation that maps to a memory storage.

use std::collections::BTreeMap;
use std::path::{Path, PathBuf};

use anyhow::anyhow;

use crate::core::{FsBackend, Result, utils};
use crate::{Entry, EntryType};

/// A virtual file system (VFS) implementation that stores file and directory entries in memory
/// using a hierarchical map structure.
///
/// `MapFS` provides a POSIX‑like file system interface where all data is kept in‑process,
/// allowing operations such as file creation, directory traversal, path resolution, and metadata
/// inspection without touching the host filesystem.
///
/// ### Internal state
///
/// * `root` — An absolute, normalized path associated with the host that serves as the physical
/// anchor of the virtual file system (VFS). It has no effect on VFS operation under typical usage
/// scenarios. This path determines how virtual paths are mapped to host paths
/// (e.g., for synchronization or persistent storage layers).
///   - Must be absolute and normalized (no `..`, no redundant separators).
///   - Example: `/tmp/my_vfs_root` on Unix, `C:\\vfs\\root` on Windows.
///
/// * `cwd` — Current Working Directory, expressed as an **inner absolute normalized path**
///   within the virtual file system.
///   - Determines how relative paths (e.g., `docs/file.txt`) are resolved.
///   - Always starts with `/` (or `\` on Windows) and is normalized.
///   - Default value: `/` (the virtual root).
///   - Changed via methods like `cd()`.
///
/// * `entries` — The core storage map that holds all virtual file and directory entries.
///   - Key: `PathBuf` representing **inner absolute normalized paths** (always start with `/`).
///   - Value: `Entry` struct containing type, metadata, and (for files) content.
///
/// ### Invariants
///
/// 1. **Root existence**: The path `/` is always present in `entries` and has type `Directory`.
/// 2. **Path normalization**: All keys in `entries`, as well as `cwd` and `root`, are normalized
///    (no `..`, no `//`, trailing `/` removed except for root).
/// 3. **Parent consistency**: For any entry at `/a/b/c`, there must exist an entry `/a/b` of type
///    `Directory` (except for the root `/`).
/// 4. **Uniqueness**: No duplicate paths; each path maps to exactly one `Entry`.
///
/// ### Lifecycle
///
/// - On creation: `root` and `cwd` is set to `/`.
///   If you want, you may set `root` to a user‑supplied host path;
/// - As files/directories are added via methods (e.g., `mkfile()`, `mkdir()`, `add()`), they are
///   inserted into `entries` with inner absolute paths.
/// - Path resolution (e.g., in `is_file()`, `ls()`) combines `cwd` with input paths to produce
///   inner absolute paths before querying `entries`.
///
/// ### Thread Safety
///
/// This struct is **not thread‑safe by default**. If concurrent access is required, wrap it in
/// a synchronization primitive (e.g., `Arc<Mutex<MapFS>>` or `RwLock<MapFS>`) at the application level.
///
/// ### Example
///
/// ```no_run
/// let fs = MapFS::new();
///
/// fs.mkdir("/docs").unwrap();
/// fs.mkfile("/docs/note.txt", Some(b"Hello")).unwrap();
///
/// assert!(fs.exists("/docs/note.txt"));
///
/// fs.rm("/docs/note.txt").unwrap();
/// ```
pub struct MapFS {
    root: PathBuf,                     // host-related absolute normalized path
    cwd: PathBuf,                      // inner absolute normalized path
    entries: BTreeMap<PathBuf, Entry>, // inner absolute normalized paths
}

impl MapFS {
    /// Creates new MapFS instance.
    /// By default, the root directory and current working directory are set to `/`.
    pub fn new() -> Self {
        Self {
            root: PathBuf::from("/"),
            cwd: PathBuf::from("/"),
            entries: BTreeMap::new(),
        }
    }

    /// Changes root path.
    /// * `path` must be an absolute
    /// If `path` isn't an absolute error returns.
    pub fn set_root<P: AsRef<Path>>(&mut self, path: P) -> Result<()> {
        let path = path.as_ref();
        if !path.is_absolute() {
            return Err(anyhow!("root path must be an absolute"));
        }
        self.root = path.to_path_buf();
        Ok(())
    }

    fn to_inner<P: AsRef<Path>>(&self, inner_path: P) -> PathBuf {
        utils::normalize(self.cwd.join(inner_path))
    }
}

impl FsBackend for MapFS {
    /// Returns root path.
    fn root(&self) -> &Path {
        self.root.as_path()
    }

    /// Returns current working directory related to the vfs root.
    fn cwd(&self) -> &Path {
        self.cwd.as_path()
    }

    /// Returns a hypothetical "host-path" joining `root` and `inner_path`.
    /// * `inner_path` must exist in VFS
    fn to_host<P: AsRef<Path>>(&self, inner_path: P) -> Result<PathBuf> {
        let inner = self.to_inner(inner_path);
        Ok(self.root.join(inner.strip_prefix("/")?))
    }

    /// Changes the current working directory.
    /// * `path` can be in relative or absolute form, but in both cases it must exist in VFS.
    /// An error is returned if the specified `path` does not exist.
    fn cd<P: AsRef<Path>>(&mut self, path: P) -> Result<()> {
        let target = self.to_inner(path);
        if !self.is_dir(&target)? {
            return Err(anyhow!("{} not a directory", target.display()));
        }
        self.cwd = target;
        Ok(())
    }

    /// Checks if a `path` exists in the VFS.
    /// The `path` can be in relative or absolute form.
    fn exists<P: AsRef<Path>>(&self, path: P) -> bool {
        let inner = self.to_inner(path);
        utils::is_virtual_root(&inner) || self.entries.contains_key(&inner)
    }

    /// Checks if `path` is a directory.
    fn is_dir<P: AsRef<Path>>(&self, path: P) -> Result<bool> {
        let path = path.as_ref();
        let inner = self.to_inner(path);
        if !self.exists(&inner) {
            return Err(anyhow!("{} does not exist", path.display()));
        }
        Ok(utils::is_virtual_root(&inner) || self.entries[&inner].is_dir())
    }

    /// Checks if `path` is a regular file.
    fn is_file<P: AsRef<Path>>(&self, path: P) -> Result<bool> {
        let path = path.as_ref();
        let inner = self.to_inner(path);
        if !self.exists(&inner) {
            return Err(anyhow!("{} does not exist", path.display()));
        }
        Ok(!utils::is_virtual_root(&inner) && self.entries[&inner].is_file())
    }

    /// Returns an iterator over directory entries at a specific depth (shallow listing).
    ///
    /// This method lists only the **immediate children** of the given directory,
    /// i.e., entries that are exactly one level below the specified path.
    /// It does *not* recurse into subdirectories (see `tree()` if you need recurse).
    ///
    /// # Arguments
    /// * `path` - path to the directory to list (must exist in VFS).
    ///
    /// # Returns
    /// * `Ok(impl Iterator<Item = &Path>)` - Iterator over entries of immediate children
    ///   (relative to VFS root). The yielded paths are *inside* the target directory
    ///   but do not include deeper nesting.
    /// * `Err(anyhow::Error)` - If the specified path does not exist in VFS.
    ///
    /// # Example:
    ///```no_run
    /// fs.mkdir("/docs/subdir");
    /// fs.mkfile("/docs/document.txt", None);
    ///
    /// // List root contents
    /// for path in fs.ls("/").unwrap() {
    ///     println!("{:?}", path);
    /// }
    ///
    /// // List contents of "/docs"
    /// for path in fs.ls("/docs").unwrap() {
    ///     if path.is_file() {
    ///         println!("File: {:?}", path);
    ///     } else {
    ///         println!("Dir:  {:?}", path);
    ///     }
    /// }
    /// ```
    ///
    /// # Notes
    /// - **No recursion:** Unlike `tree()`, this method does *not* traverse subdirectories.
    /// - **Path ownership:** The returned iterator borrows from the VFS's internal state.
    ///   It is valid as long as `self` lives.
    /// - **Excludes root:** The input directory itself is not included in the output.
    /// - **Error handling:** If `path` does not exist, an error is returned before iteration.
    /// - **Performance:** The filtering is done in‑memory; no additional filesystem I/O occurs
    ///   during iteration.
    fn ls<P: AsRef<Path>>(&self, path: P) -> Result<impl Iterator<Item = &Path>> {
        let inner_path = self.to_inner(path);
        if !self.exists(&inner_path) {
            return Err(anyhow!("{} does not exist", inner_path.display()));
        }
        let is_file = self.is_file(&inner_path)?;
        let component_count = if is_file {
            inner_path.components().count()
        } else {
            inner_path.components().count() + 1
        };
        Ok(self
            .entries
            .iter()
            .map(|(pb, _)| pb.as_path())
            .filter(move |&path| {
                path.starts_with(&inner_path)
                    && (path != inner_path || is_file)
                    && path.components().count() == component_count
            }))
    }

    /// Returns a recursive iterator over the directory tree starting from a given path.
    ///
    /// The iterator yields all entries (files and directories) that are *inside* the specified
    /// directory (i.e., the starting directory itself is **not** included).
    ///
    /// # Arguments
    /// * `path` - path to the directory to traverse (must exist in VFS).
    ///
    /// # Returns
    /// * `Ok(impl Iterator<Item = &Path>)` - Iterator over all entries *within* the tree
    ///   (relative to VFS root), excluding the root of the traversal.
    /// * `Err(anyhow::Error)` - If:
    ///   - The specified path does not exist in VFS.
    ///   - The path is not a directory (implicitly checked via `exists` and tree structure).
    ///
    /// # Behavior
    /// - **Recursive traversal**: Includes all nested files and directories.
    /// - **Excludes root**: The starting directory path is not yielded (only its contents).
    /// - **Path normalization**: Input path is normalized.
    /// - **VFS-only**: Only returns paths tracked in VFS.
    /// - **Performance:** The filtering is done in‑memory; no additional filesystem I/O occurs
    ///   during iteration.
    ///
    /// # Example:
    /// ```no_run
    /// fs.mkdir("/docs/subdir");
    /// fs.mkfile("/docs/document.txt", None);
    ///
    /// // Iterate over current working directory
    /// for path in fs.tree("/").unwrap() {
    ///     println!("{:?}", path);
    /// }
    ///
    /// // Iterate over a specific directory
    /// for path in fs.tree("/docs").unwrap() {
    ///     if path.is_file() {
    ///         println!("File: {:?}", path);
    ///     }
    /// }
    /// ```
    ///
    /// # Notes
    /// - The iterator borrows data from VFS. The returned iterator is valid as long
    ///   as `self` is alive.
    /// - Symbolic links are treated as regular entries (no follow/resolve).
    /// - Use `MapFS` methods (e.g., `is_file()`, `is_dir()`) for yielded items for type checks.
    fn tree<P: AsRef<Path>>(&self, path: P) -> Result<impl Iterator<Item = &Path>> {
        let inner_path = self.to_inner(path);
        if !self.exists(&inner_path) {
            return Err(anyhow!("{} does not exist", inner_path.display()));
        }
        let is_file = self.is_file(&inner_path)?;
        Ok(self
            .entries
            .iter()
            .map(|(pb, _)| pb.as_path())
            .filter(move |&path| path.starts_with(&inner_path) && (path != inner_path || is_file)))
    }

    /// Creates directory and all it parents (if needed).
    /// * `path` - inner vfs path.
    fn mkdir<P: AsRef<Path>>(&mut self, path: P) -> Result<()> {
        if path.as_ref().as_os_str().is_empty() {
            return Err(anyhow!("invalid path: empty"));
        }

        let inner_path = self.to_inner(path);

        if self.exists(&inner_path) {
            return Err(anyhow!("path already exists: {}", inner_path.display()));
        }

        // Looking for the first existing parent
        let mut existed_parent = inner_path.clone();
        while let Some(parent) = existed_parent.parent() {
            let parent_buf = parent.to_path_buf();
            if self.exists(parent) {
                existed_parent = parent_buf;
                break;
            }
            existed_parent = parent_buf;
        }

        // Create from the closest existing parent to the target path
        let need_to_create: Vec<_> = inner_path
            .strip_prefix(&existed_parent)?
            .components()
            .collect();

        let mut built = PathBuf::from(&existed_parent);
        for component in need_to_create {
            built.push(component);
            if !self.exists(&built) {
                self.entries
                    .insert(built.clone(), Entry::new(EntryType::Directory));
            }
        }

        Ok(())
    }

    /// Creates new file in VFS.
    /// * `file_path` must be inner VFS path. It must contain the name of the file,
    /// optionally preceded by parent directory.
    /// If the parent directory does not exist, it will be created.
    fn mkfile<P: AsRef<Path>>(&mut self, file_path: P, content: Option<&[u8]>) -> Result<()> {
        let file_path = self.to_inner(file_path);
        if self.exists(&file_path) {
            return Err(anyhow!("{} already exist", file_path.display()));
        }
        if let Some(parent) = file_path.parent() {
            if !self.exists(parent) {
                self.mkdir(parent)?;
            }
        }

        let mut entry = Entry::new(EntryType::File);
        if let Some(content) = content {
            entry.set_content(content);
        }
        self.entries.insert(file_path.clone(), entry);

        Ok(())
    }

    /// Reads the entire contents of a file into a byte vector.
    /// * `path` is the inner VFS path.
    ///
    /// # Returns
    /// * `Ok(Vec<u8>)` - File content as a byte vector if successful.
    /// * `Err(anyhow::Error)` - If any of the following occurs:
    ///   - File does not exist in VFS (`file does not exist: ...`)
    ///   - Path points to a directory (`... is a directory`)
    ///
    /// # Notes
    /// - Does **not** follow symbolic links on the host filesystem (reads the link itself).
    /// - Returns an empty vector for empty files.
    fn read<P: AsRef<Path>>(&self, path: P) -> Result<Vec<u8>> {
        let path = path.as_ref();
        if self.is_dir(path)? {
            // checks for existent too
            return Err(anyhow!("{} is a directory", path.display()));
        }
        Ok(self.entries[path].content().cloned().unwrap_or(Vec::new()))
    }

    /// Writes bytes to an existing file, replacing its entire contents.
    /// * `path` - Path to the file.
    /// * `content` - Byte slice (`&[u8]`) to write to the file.
    ///
    /// # Returns
    /// * `Ok(())` - If the write operation succeeded.
    /// * `Err(anyhow::Error)` - If any of the following occurs:
    ///   - File does not exist in VFS (`file does not exist: ...`)
    ///   - Path points to a directory (`... is a directory`)
    ///
    /// # Behavior
    /// - **Overwrites completely**: The entire existing content is replaced.
    /// - **No file creation**: File must exist (use `mkfile()` first).
    fn write<P: AsRef<Path>>(&mut self, path: P, content: &[u8]) -> Result<()> {
        let path = path.as_ref();
        if self.is_dir(path)? {
            // checks for existent too
            return Err(anyhow!("{} is a directory", path.display()));
        }
        self.entries.get_mut(path).unwrap().set_content(content); // safe unwrap()
        Ok(())
    }

    /// Appends bytes to the end of an existing file, preserving its old contents.
    ///
    /// # Arguments
    /// * `path` - Path to the existing file.
    /// * `content` - Byte slice (`&[u8]`) to append to the file.
    ///
    /// # Returns
    /// * `Ok(())` - If the append operation succeeded.
    /// * `Err(anyhow::Error)` - If any of the following occurs:
    ///   - File does not exist in VFS (`file does not exist: ...`)
    ///   - Path points to a directory (`... is a directory`)
    ///
    /// # Behavior
    /// - **Appends only**: Existing content is preserved; new bytes are added at the end.
    /// - **File creation**: Does NOT create the file if it doesn't exist (returns error).
    fn append<P: AsRef<Path>>(&mut self, path: P, content: &[u8]) -> Result<()> {
        let path = path.as_ref();
        if self.is_dir(path)? {
            // checks for existent too
            return Err(anyhow!("{} is a directory", path.display()));
        }
        self.entries.get_mut(path).unwrap().append_content(content); // safe unwrap()
        Ok(())
    }

    /// Removes a file or directory at the specified path.
    ///
    /// - `path`: can be absolute (starting with '/') or relative to the current working
    /// directory (cwd). If the path is a directory, all its contents are removed recursively.
    ///
    /// Returns:
    /// - `Ok(())` on successful removal.
    /// - `Err(_)` if the path does not exist in the VFS;
    fn rm<P: AsRef<Path>>(&mut self, path: P) -> Result<()> {
        if path.as_ref().as_os_str().is_empty() {
            return Err(anyhow!("invalid path: empty"));
        }
        if utils::is_virtual_root(&path) {
            return Err(anyhow!("invalid path: the root cannot be removed"));
        }

        let inner_path = self.to_inner(path); // Convert to VFS-internal normalized path

        // Check if the path exists in the virtual filesystem
        if !self.exists(&inner_path) {
            return Err(anyhow!("{} does not exist", inner_path.display()));
        }

        // Update internal state: collect all entries that start with `inner_path`
        let removed: Vec<PathBuf> = self
            .entries
            .iter()
            .map(|(pb, _)| pb)
            .filter(|&pb| pb.starts_with(&inner_path)) // Match prefix (includes subpaths)
            .cloned()
            .collect();

        // Remove all matched entries from the set
        for p in &removed {
            self.entries.remove(p);
        }

        Ok(())
    }

    /// Removes all artifacts (dirs and files) in vfs.
    fn cleanup(&mut self) -> bool {
        self.entries.clear();
        true
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    mod creations {
        use super::*;

        #[test]
        fn test_new_map_fs() {
            let mut fs = MapFS::new();
            assert_eq!(fs.root(), "/");
            assert_eq!(fs.cwd(), "/");

            #[cfg(unix)]
            {
                fs.set_root("/new/root").unwrap();
                assert_eq!(fs.root(), "/new/root");

                let host_path = fs.to_host("/inner/path").unwrap();
                assert_eq!(host_path.as_path(), "/new/root/inner/path");
            }
            #[cfg(windows)]
            {
                fs.set_root("c:\\new\\root").unwrap();
                assert_eq!(fs.root(), "c:\\new\\root");

                let host_path = fs.to_host("\\inner\\path").unwrap();
                assert_eq!(host_path.as_path(), "c:\\new\\root\\inner\\path");
            }

            let result = fs.set_root("new/relative/root");
            assert!(result.is_err());
        }
    }

    mod cd {
        use super::*;

        /// Helper function to set up a test VFS with a predefined structure
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new(); // Assume MapFS has a new() constructor

            // Create a sample directory structure
            vfs.mkdir("/home").unwrap();
            vfs.mkdir("/home/user").unwrap();
            vfs.mkdir("/etc").unwrap();
            vfs.mkfile("/home/user/config.txt", Some(b"Config content"))
                .unwrap();

            vfs
        }

        #[test]
        fn test_cd_absolute_path_success() -> Result<()> {
            let mut vfs = setup_test_vfs();

            assert_eq!(vfs.cwd, Path::new("/")); // Initial CWD is root

            vfs.cd("/home/user")?;

            assert_eq!(vfs.cwd, Path::new("/home/user"));
            Ok(())
        }

        #[test]
        fn test_cd_relative_path_success() -> Result<()> {
            let mut vfs = setup_test_vfs();

            vfs.cd("/home")?; // Change to /home first
            assert_eq!(vfs.cwd, Path::new("/home"));

            vfs.cd("user")?; // Relative path from current CWD

            assert_eq!(vfs.cwd, Path::new("/home/user"));
            Ok(())
        }

        #[test]
        fn test_cd_root_directory() -> Result<()> {
            let mut vfs = setup_test_vfs();

            vfs.cd("/")?;

            assert_eq!(vfs.cwd, Path::new("/"));
            Ok(())
        }

        #[test]
        fn test_cd_nonexistent_path_error() -> Result<()> {
            let mut vfs = setup_test_vfs();

            let result = vfs.cd("/nonexistent/path");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Error message should indicate path does not exist"
            );

            // CWD should remain unchanged
            assert_eq!(vfs.cwd, Path::new("/"));
            Ok(())
        }

        #[test]
        fn test_cd_file_path_error() -> Result<()> {
            let mut vfs = setup_test_vfs();

            let result = vfs.cd("/home/user/config.txt");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("not a directory"),
                "Even though the file exists, cd() should fail because it's not a directory"
            );

            // CWD should remain unchanged
            assert_eq!(vfs.cwd, Path::new("/"));
            Ok(())
        }

        #[test]
        fn test_cd_same_directory() -> Result<()> {
            let mut vfs = setup_test_vfs();

            vfs.cd("/home")?;
            assert_eq!(vfs.cwd, Path::new("/home"));

            vfs.cd("/home")?; // CD to same directory

            assert_eq!(vfs.cwd, Path::new("/home")); // Should remain unchanged
            Ok(())
        }

        #[test]
        fn test_cd_deep_nested_path() -> Result<()> {
            let mut vfs = setup_test_vfs();

            vfs.cd("/home/user")?;

            assert_eq!(vfs.cwd, Path::new("/home/user"));
            Ok(())
        }

        #[test]
        fn test_cd_sequential_changes() -> Result<()> {
            let mut vfs = setup_test_vfs();

            vfs.cd("/etc")?;
            assert_eq!(vfs.cwd, Path::new("/etc"));

            vfs.cd("/home")?;
            assert_eq!(vfs.cwd, Path::new("/home"));

            vfs.cd("/")?;
            assert_eq!(vfs.cwd, Path::new("/"));

            Ok(())
        }

        #[test]
        fn test_cd_with_trailing_slash() -> Result<()> {
            let mut vfs = setup_test_vfs();

            // Test that trailing slash is handled correctly
            vfs.cd("/home/")?;
            assert_eq!(vfs.cwd, Path::new("/home"));

            vfs.cd("/home/user//")?;
            assert_eq!(vfs.cwd, Path::new("/home/user"));
            Ok(())
        }
    }

    mod exists {
        use super::*;

        /// Helper to create a pre‑populated MapFS instance for testing
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new();

            // Create a sample hierarchy
            vfs.mkdir("/etc").unwrap();
            vfs.mkdir("/home").unwrap();
            vfs.mkdir("/home/user").unwrap();
            vfs.mkfile("/home/user/file.txt", Some(b"Hello")).unwrap();
            vfs.mkfile("/readme.md", Some(b"Project docs")).unwrap();

            vfs
        }

        #[test]
        fn test_exists_absolute_path_file() {
            let vfs = setup_test_vfs();
            assert!(vfs.exists("/home/user/file.txt"));
        }

        #[test]
        fn test_exists_absolute_path_directory() {
            let vfs = setup_test_vfs();
            assert!(vfs.exists("/home/user"));
        }

        #[test]
        fn test_exists_root_directory() {
            let vfs = setup_test_vfs();
            assert!(vfs.exists("/"));
        }

        #[test]
        fn test_exists_relative_path_from_root() {
            let vfs = setup_test_vfs();
            // Current CWD is "/" by default
            assert!(vfs.exists("home/user/file.txt"));
        }

        #[test]
        fn test_exists_relative_path_nested() {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user").unwrap(); // Change CWD
            assert!(vfs.exists("file.txt")); // Relative to current CWD
        }

        #[test]
        fn test_exists_nonexistent_file() {
            let vfs = setup_test_vfs();
            assert!(!vfs.exists("/home/user/nonexistent.txt"));
        }

        #[test]
        fn test_exists_nonexistent_directory() {
            let vfs = setup_test_vfs();
            assert!(!vfs.exists("/tmp"));
        }

        #[test]
        fn test_exists_partial_path() {
            let vfs = setup_test_vfs();
            // "/home/us" is not a complete path in our hierarchy
            assert!(!vfs.exists("/home/us"));
        }

        #[test]
        fn test_exists_with_trailing_slash() {
            let vfs = setup_test_vfs();
            assert!(vfs.exists("/home/")); // Should normalize to /home
            assert!(vfs.exists("/home/user/")); // Should normalize to /home/user
            assert!(vfs.exists("/readme.md/")); // File with trailing slash
        }

        #[test]
        fn test_exists_case_sensitivity() {
            #[cfg(unix)]
            {
                let mut vfs = setup_test_vfs();
                // Add a mixed-case path
                vfs.mkdir("/Home/User").unwrap();

                assert!(vfs.exists("/Home/User"));
                assert!(!vfs.exists("/home/User")); // Different case
            }
        }

        #[test]
        fn test_exists_empty_string() {
            let vfs = setup_test_vfs();
            // Empty string should resolve to CWD (which is "/")
            assert!(vfs.exists(""));
        }

        #[test]
        fn test_exists_dot_path() {
            let vfs = setup_test_vfs();
            assert!(vfs.exists(".")); // Current directory
            assert!(vfs.exists("./home")); // Relative with dot
        }

        #[test]
        fn test_exists_double_dot_path() {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user").unwrap();
            assert!(vfs.exists("..")); // Parent directory
            assert!(vfs.exists("../user")); // Sibling
            assert!(vfs.exists("../../etc")); // Up two levels
        }
    }

    mod is_dir_file {
        use super::*;

        /// Helper to create a pre‑populated MapFS instance for testing
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new();

            // Create a sample hierarchy
            vfs.mkdir("/etc").unwrap();
            vfs.mkdir("/home").unwrap();
            vfs.mkdir("/home/user").unwrap();
            vfs.mkfile("/home/user/file.txt", Some(b"Hello")).unwrap();
            vfs.mkfile("/readme.md", Some(b"Project docs")).unwrap();
            vfs.mkfile("/empty.bin", None).unwrap(); // Empty file

            vfs
        }

        #[test]
        fn test_is_dir_existing_directory_absolute() -> Result<()> {
            let vfs = setup_test_vfs();
            assert!(vfs.is_dir("/home")?);
            assert!(vfs.is_dir("/home/user")?);
            assert!(vfs.is_dir("/")?); // Root
            Ok(())
        }

        #[test]
        fn test_is_dir_existing_directory_relative() -> Result<()> {
            let vfs = setup_test_vfs();
            // From root
            assert!(vfs.is_dir("home")?);
            // After changing CWD
            let mut vfs2 = setup_test_vfs();
            vfs2.cd("/home").unwrap();
            assert!(vfs2.is_dir("user")?);
            Ok(())
        }

        #[test]
        fn test_is_dir_file_path() -> Result<()> {
            let vfs = setup_test_vfs();
            assert!(!vfs.is_dir("/home/user/file.txt")?);
            assert!(!vfs.is_dir("/readme.md")?);
            Ok(())
        }

        #[test]
        fn test_is_dir_nonexistent_path() {
            let vfs = setup_test_vfs();
            let result = vfs.is_dir("/nonexistent");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Error should mention path does not exist"
            );
        }

        #[test]
        fn test_is_file_existing_file_absolute() -> Result<()> {
            let vfs = setup_test_vfs();
            assert!(vfs.is_file("/home/user/file.txt")?);
            assert!(vfs.is_file("/readme.md")?);
            assert!(vfs.is_file("/empty.bin")?); // Empty file is still a file
            Ok(())
        }

        #[test]
        fn test_is_file_existing_file_relative() -> Result<()> {
            let vfs = setup_test_vfs();
            // From root
            assert!(vfs.is_file("readme.md")?);
            // After changing CWD
            let mut vfs2 = setup_test_vfs();
            vfs2.cd("/home/user").unwrap();
            assert!(vfs2.is_file("file.txt")?);
            Ok(())
        }

        #[test]
        fn test_is_file_directory_path() -> Result<()> {
            let vfs = setup_test_vfs();
            assert!(!vfs.is_file("/home")?);
            assert!(!vfs.is_file("/home/user")?);
            assert!(!vfs.is_file("/")?); // Root is a directory
            Ok(())
        }

        #[test]
        fn test_is_file_nonexistent_path() {
            let vfs = setup_test_vfs();
            let result = vfs.is_file("/nonexistent.txt");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Error should mention path does not exist"
            );
        }

        #[test]
        fn test_is_dir_and_is_file_on_same_file() -> Result<()> {
            let vfs = setup_test_vfs();
            let file_path = "/home/user/file.txt";

            assert!(!vfs.is_dir(file_path)?); // Not a directory
            assert!(vfs.is_file(file_path)?); // Is a file

            Ok(())
        }

        #[test]
        fn test_is_dir_and_is_file_on_same_directory() -> Result<()> {
            let vfs = setup_test_vfs();
            let dir_path = "/home/user";

            assert!(vfs.is_dir(dir_path)?); // Is a directory
            assert!(!vfs.is_file(dir_path)?); // Not a file

            Ok(())
        }

        #[test]
        fn test_is_dir_with_trailing_slash() -> Result<()> {
            let vfs = setup_test_vfs();
            assert!(vfs.is_dir("/home/")?); // Trailing slash
            assert!(vfs.is_dir("/home/user/")?);
            Ok(())
        }

        #[test]
        fn test_is_file_with_trailing_slash() -> Result<()> {
            let vfs = setup_test_vfs();
            // Even with trailing slash, it should still be recognized as a file
            assert!(vfs.is_file("/readme.md/")?);
            assert!(vfs.is_file("/home/user/file.txt/")?);
            Ok(())
        }

        #[test]
        fn test_is_dir_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home").unwrap();

            assert!(vfs.is_dir(".")?); // Current directory
            assert!(vfs.is_dir("./user")?); // Subdirectory
            Ok(())
        }

        #[test]
        fn test_is_file_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user").unwrap();

            assert!(vfs.is_file("./file.txt")?);
            Ok(())
        }

        #[test]
        fn test_is_dir_double_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user").unwrap();

            assert!(vfs.is_dir("..")?); // Parent (/home)

            let result = vfs.is_dir("../etc");
            assert!(result.is_err()); // Sibling directory (not existed)
            // Note: ../etc doesn't exist in our setup, so this would fail
            // But .. itself should pass
            Ok(())
        }
    }

    mod ls {
        use super::*;

        /// Helper to create a pre‑populated MapFS instance for testing
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new();

            // Create a sample hierarchy
            vfs.mkdir("/etc").unwrap();
            vfs.mkdir("/home").unwrap();
            vfs.mkdir("/home/user").unwrap();
            vfs.mkdir("/home/guest").unwrap();
            vfs.mkfile("/home/user/file1.txt", Some(b"Content 1"))
                .unwrap();
            vfs.mkfile("/home/user/file2.txt", Some(b"Content 2"))
                .unwrap();
            vfs.mkfile("/home/guest/note.txt", Some(b"Note")).unwrap();
            vfs.mkfile("/readme.md", Some(b"Docs")).unwrap();

            vfs
        }

        #[test]
        fn test_ls_root_directory() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.ls("/")?.collect();

            assert_eq!(entries.len(), 3);
            assert!(entries.contains(&Path::new("/etc")));
            assert!(entries.contains(&Path::new("/home")));
            assert!(entries.contains(&Path::new("/readme.md")));

            Ok(())
        }

        #[test]
        fn test_ls_home_directory() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.ls("/home")?.collect();

            assert_eq!(entries.len(), 2);
            assert!(entries.contains(&Path::new("/home/user")));
            assert!(entries.contains(&Path::new("/home/guest")));

            Ok(())
        }

        #[test]
        fn test_ls_user_directory() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.ls("/home/user")?.collect();

            assert_eq!(entries.len(), 2);
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/file2.txt")));

            Ok(())
        }

        #[test]
        fn test_ls_nonexistent_path() {
            let vfs = setup_test_vfs();
            let result: Result<Vec<_>> = vfs.ls("/nonexistent").map(|iter| iter.collect());
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Error should mention path does not exist"
            );
        }

        #[test]
        fn test_ls_file_path() {
            let vfs = setup_test_vfs();
            let result: Result<Vec<_>> = vfs.ls("/home/user/file1.txt").map(|iter| iter.collect());
            assert!(result.is_ok());
            assert_eq!(result.unwrap(), vec!["/home/user/file1.txt"]);
        }

        #[test]
        fn test_ls_empty_directory() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.mkdir("/empty_dir").unwrap(); // Create empty dir

            let entries: Vec<_> = vfs.ls("/empty_dir")?.collect();
            assert_eq!(entries.len(), 0); // Should return empty iterator

            Ok(())
        }

        #[test]
        fn test_ls_relative_path_from_root() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.ls("home")?.collect(); // Relative path

            assert_eq!(entries.len(), 2);
            assert!(entries.contains(&Path::new("/home/user")));
            assert!(entries.contains(&Path::new("/home/guest")));

            Ok(())
        }

        #[test]
        fn test_ls_relative_path_nested() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home").unwrap();

            let entries: Vec<_> = vfs.ls("user")?.collect();

            assert_eq!(entries.len(), 2);
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/file2.txt")));

            Ok(())
        }

        #[test]
        fn test_ls_with_trailing_slash() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries1: Vec<_> = vfs.ls("/home/")?.collect(); // With slash
            let entries2: Vec<_> = vfs.ls("/home")?.collect(); // Without slash

            assert_eq!(entries1, entries2); // Results should be identical
            Ok(())
        }

        #[test]
        fn test_ls_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user").unwrap();

            let entries: Vec<_> = vfs.ls(".")?.collect();
            assert_eq!(entries.len(), 2);
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/file2.txt")));

            Ok(())
        }

        #[test]
        fn test_ls_double_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user").unwrap();

            let entries: Vec<_> = vfs.ls("..")?.collect(); // Parent directory
            assert_eq!(entries.len(), 2);
            assert!(entries.contains(&Path::new("/home/user")));
            assert!(entries.contains(&Path::new("/home/guest")));

            Ok(())
        }

        #[test]
        fn test_ls_iterator_lazy_evaluation() -> Result<()> {
            let vfs = setup_test_vfs();
            let mut iter = vfs.ls("/home/user")?;

            // Test that iterator doesn't panic on immediate creation
            assert!(iter.next().is_some());

            // Consume all items
            let count = iter.count();
            assert_eq!(count + 1, 2); // +1 because we already took one with next()

            Ok(())
        }
    }

    mod tree {
        use super::*;

        /// Helper to create a pre‑populated MapFS instance for testing
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new();

            // Create a nested hierarchy
            vfs.mkdir("/etc").unwrap();
            vfs.mkdir("/home").unwrap();
            vfs.mkdir("/home/user").unwrap();
            vfs.mkdir("/home/user/projects").unwrap();
            vfs.mkdir("/home/guest").unwrap();
            vfs.mkfile("/home/user/file1.txt", Some(b"Content 1"))
                .unwrap();
            vfs.mkfile("/home/user/projects/proj1.rs", Some(b"Code 1"))
                .unwrap();
            vfs.mkfile("/home/user/projects/proj2.rs", Some(b"Code 2"))
                .unwrap();
            vfs.mkfile("/home/guest/note.txt", Some(b"Note")).unwrap();
            vfs.mkfile("/readme.md", Some(b"Docs")).unwrap();

            vfs
        }

        #[test]
        fn test_tree_root() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.tree("/")?.collect();

            assert_eq!(entries.len(), 10);
            assert!(entries.contains(&Path::new("/etc")));
            assert!(entries.contains(&Path::new("/home")));
            assert!(entries.contains(&Path::new("/home/user")));
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/projects")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj1.rs")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj2.rs")));
            assert!(entries.contains(&Path::new("/home/guest")));
            assert!(entries.contains(&Path::new("/home/guest/note.txt")));

            Ok(())
        }

        #[test]
        fn test_tree_home_directory() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.tree("/home")?.collect();

            assert_eq!(entries.len(), 7);
            assert!(entries.contains(&Path::new("/home/user")));
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/projects")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj1.rs")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj2.rs")));
            assert!(entries.contains(&Path::new("/home/guest")));
            assert!(entries.contains(&Path::new("/home/guest/note.txt")));

            Ok(())
        }

        #[test]
        fn test_tree_user_directory() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.tree("/home/user")?.collect();

            assert_eq!(entries.len(), 4);
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/projects")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj1.rs")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj2.rs")));

            Ok(())
        }

        #[test]
        fn test_tree_nonexistent_path() {
            let vfs = setup_test_vfs();
            let result: Result<Vec<_>> = vfs.tree("/nonexistent").map(|iter| iter.collect());
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Error should mention path does not exist"
            );
        }

        #[test]
        fn test_tree_file_path() {
            let vfs = setup_test_vfs();
            let result: Result<Vec<_>> =
                vfs.tree("/home/user/file1.txt").map(|iter| iter.collect());
            assert!(result.is_ok());
            assert_eq!(result.unwrap(), vec!["/home/user/file1.txt"]);
        }

        #[test]
        fn test_tree_empty_directory() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.mkdir("/empty_dir").unwrap();

            let entries: Vec<_> = vfs.tree("/empty_dir")?.collect();
            assert_eq!(entries.len(), 0); // Empty directory → empty iterator

            Ok(())
        }

        #[test]
        fn test_tree_relative_path_from_root() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries: Vec<_> = vfs.tree("home")?.collect(); // Relative path

            assert_eq!(entries.len(), 7);
            assert!(entries.contains(&Path::new("/home/user")));
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/projects")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj1.rs")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj2.rs")));
            assert!(entries.contains(&Path::new("/home/guest")));
            assert!(entries.contains(&Path::new("/home/guest/note.txt")));

            Ok(())
        }

        #[test]
        fn test_tree_relative_path_nested() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home").unwrap();

            let entries: Vec<_> = vfs.tree("user")?.collect();

            assert_eq!(entries.len(), 4);
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/projects")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj1.rs")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj2.rs")));

            Ok(())
        }

        #[test]
        fn test_tree_with_trailing_slash() -> Result<()> {
            let vfs = setup_test_vfs();
            let entries1: Vec<_> = vfs.tree("/home/")?.collect(); // With slash
            let entries2: Vec<_> = vfs.tree("/home")?.collect(); // Without slash

            assert_eq!(entries1, entries2); // Results should be identical
            Ok(())
        }

        #[test]
        fn test_tree_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user").unwrap();

            let entries: Vec<_> = vfs.tree(".")?.collect();
            assert_eq!(entries.len(), 4);
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/projects")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj1.rs")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj2.rs")));

            Ok(())
        }

        #[test]
        fn test_tree_double_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user/projects").unwrap();

            let entries: Vec<_> = vfs.tree("..")?.collect(); // Parent directory
            assert_eq!(entries.len(), 4);
            assert!(entries.contains(&Path::new("/home/user/file1.txt")));
            assert!(entries.contains(&Path::new("/home/user/projects")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj1.rs")));
            assert!(entries.contains(&Path::new("/home/user/projects/proj2.rs")));

            Ok(())
        }

        #[test]
        fn test_tree_single_entry() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.mkdir("/single").unwrap();

            let entries: Vec<_> = vfs.tree("/single")?.collect();
            assert_eq!(entries.len(), 0); // No children → empty

            Ok(())
        }

        #[test]
        fn test_tree_iterator_lazy_evaluation() -> Result<()> {
            let vfs = setup_test_vfs();
            let mut iter = vfs.tree("/home/user")?;

            // Test that iterator doesn't panic on immediate creation
            assert!(iter.next().is_some());

            // Consume remaining items
            let count = iter.count();
            assert_eq!(count + 1, 4); // +1 because we already took one with next()

            Ok(())
        }

        #[test]
        fn test_tree_case_sensitivity() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.mkdir("/CASE_TEST").unwrap();
            vfs.mkfile("/CASE_TEST/file.txt", Some(b"Data")).unwrap();

            let entries: Vec<_> = vfs.tree("/CASE_TEST")?.collect();

            assert_eq!(entries.len(), 1);
            assert!(entries.contains(&Path::new("/CASE_TEST/file.txt")));

            Ok(())
        }
    }

    mod mkdir_mkfile {
        use super::*;

        /// Helper to create a fresh MapFS instance
        fn setup_vfs() -> MapFS {
            MapFS::new()
        }

        #[test]
        fn test_mkdir_simple_directory() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkdir("/test")?;

            assert!(vfs.exists("/test"));
            assert!(vfs.is_dir("/test")?);

            Ok(())
        }

        #[test]
        fn test_mkdir_nested_directories() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkdir("/a/b/c/d")?;

            assert!(vfs.exists("/a"));
            assert!(vfs.exists("/a/b"));
            assert!(vfs.exists("/a/b/c"));
            assert!(vfs.exists("/a/b/c/d"));

            Ok(())
        }

        #[test]
        fn test_mkdir_existing_path() {
            let mut vfs = setup_vfs();
            vfs.mkdir("/existing").unwrap();

            let result = vfs.mkdir("/existing");
            assert!(result.is_err());
            assert!(
                result
                    .unwrap_err()
                    .to_string()
                    .contains("path already exists"),
                "Should error when path exists"
            );
        }

        #[test]
        fn test_mkdir_empty_path() {
            let mut vfs = setup_vfs();
            let result = vfs.mkdir("");
            assert!(result.is_err());
            assert!(
                result
                    .unwrap_err()
                    .to_string()
                    .contains("invalid path: empty"),
                "Empty path should be rejected"
            );
        }

        #[test]
        fn test_mkdir_root_path() {
            let mut vfs = setup_vfs();
            let result = vfs.mkdir("/");
            assert!(result.is_err());
            assert!(
                result
                    .unwrap_err()
                    .to_string()
                    .contains("path already exists"),
                "Root always exists, should error"
            );
        }

        #[test]
        fn test_mkdir_with_trailing_slash() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkdir("/test/")?; // Trailing slash

            assert!(vfs.exists("/test"));
            assert!(vfs.is_dir("/test")?);

            Ok(())
        }

        #[test]
        fn test_mkfile_simple_file() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkfile("/file.txt", Some(b"Hello World"))?;

            assert!(vfs.exists("/file.txt"));
            assert!(vfs.is_file("/file.txt")?);
            assert_eq!(vfs.read("/file.txt")?, b"Hello World");

            Ok(())
        }

        #[test]
        fn test_mkfile_in_nested_directory() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkfile("/a/b/c/file.txt", Some(b"Content"))?;

            // All parent directories should be created
            assert!(vfs.exists("/a"));
            assert!(vfs.exists("/a/b"));
            assert!(vfs.exists("/a/b/c"));
            assert!(vfs.exists("/a/b/c/file.txt"));

            assert_eq!(vfs.read("/a/b/c/file.txt")?, b"Content");

            Ok(())
        }

        #[test]
        fn test_mkfile_empty_content() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkfile("/empty.txt", None)?; // No content

            assert!(vfs.exists("/empty.txt"));
            assert!(vfs.is_file("/empty.txt")?);
            assert_eq!(vfs.read("/empty.txt")?, &[]);

            Ok(())
        }

        #[test]
        fn test_mkfile_existing_file() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkfile("/test.txt", Some(b"Original"))?;

            // Try to create same file again
            let result = vfs.mkfile("/test.txt", Some(b"New"));

            assert!(result.is_err());
            assert_eq!(vfs.read("/test.txt")?, b"Original");

            Ok(())
        }

        #[test]
        fn test_mkfile_to_existing_directory() {
            let mut vfs = setup_vfs();
            vfs.mkdir("/dir").unwrap();

            let result = vfs.mkfile("/dir", Some(b"Content"));
            assert!(result.is_err());
            // Depending on design, this might be allowed or not
            // Current implementation tries to create file at existing dir path
            // Consider whether this should be an error
        }

        #[test]
        fn test_mkfile_with_trailing_slash() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkfile("/file.txt/", Some(b"With slash"))?;

            assert!(vfs.exists("/file.txt")); // Should normalize
            assert_eq!(vfs.read("/file.txt")?, b"With slash");

            Ok(())
        }

        #[test]
        fn test_mkfile_relative_path() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkdir("/home")?;
            vfs.cd("/home")?; // Assume /home exists

            vfs.mkfile("file.txt", Some(b"Relative"))?;

            assert!(vfs.exists("/home/file.txt"));
            assert_eq!(vfs.read("/home/file.txt")?, b"Relative");

            Ok(())
        }

        #[test]
        fn test_mkdir_and_mkfile_combination() -> Result<()> {
            let mut vfs = setup_vfs();

            vfs.mkdir("/projects")?;
            vfs.mkfile("/projects/main.rs", Some(b"fn main() {}"))?;
            vfs.mkdir("/projects/tests")?;
            vfs.mkfile("/projects/tests/test1.rs", Some(b"#[test]"))?;

            assert!(vfs.exists("/projects"));
            assert!(vfs.exists("/projects/main.rs"));
            assert!(vfs.exists("/projects/tests"));
            assert!(vfs.exists("/projects/tests/test1.rs"));

            Ok(())
        }

        #[test]
        fn test_mkdir_case_sensitivity() -> Result<()> {
            let mut vfs = setup_vfs();
            vfs.mkdir("/CaseDir")?;

            assert!(vfs.exists("/CaseDir"));
            assert!(!vfs.exists("/casedir")); // Case-sensitive

            Ok(())
        }
    }

    mod read_write_append {
        use super::*;

        /// Helper to create a pre‑populated MapFS instance for testing
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new();

            // Create sample files and directories
            vfs.mkdir("/etc").unwrap();
            vfs.mkfile("/readme.md", Some(b"Project docs")).unwrap();
            vfs.mkfile("/data.bin", Some(b"\x00\x01\x02")).unwrap();
            vfs.mkfile("/empty.txt", None).unwrap(); // Empty file
            vfs.mkfile("/home/user/file.txt", Some(b"Hello World"))
                .unwrap();

            vfs
        }

        #[test]
        fn test_read_existing_file() -> Result<()> {
            let vfs = setup_test_vfs();
            let content = vfs.read("/readme.md")?;
            assert_eq!(content, b"Project docs");
            Ok(())
        }

        #[test]
        fn test_read_binary_file() -> Result<()> {
            let vfs = setup_test_vfs();
            let content = vfs.read("/data.bin")?;
            assert_eq!(content, vec![0x00, 0x01, 0x02]);
            Ok(())
        }

        #[test]
        fn test_read_empty_file() -> Result<()> {
            let vfs = setup_test_vfs();
            let content = vfs.read("/empty.txt")?;
            assert!(content.is_empty());
            Ok(())
        }

        #[test]
        fn test_read_nonexistent_file() {
            let vfs = setup_test_vfs();
            let result = vfs.read("/nonexistent.txt");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Error should mention file does not exist"
            );
        }

        #[test]
        fn test_read_directory_as_file() {
            let vfs = setup_test_vfs();
            let result = vfs.read("/etc");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("is a directory"),
                "Reading directory as file should error"
            );
        }

        #[test]
        fn test_write_existing_file() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.write("/readme.md", b"Updated content")?;

            let content = vfs.read("/readme.md")?;
            assert_eq!(content, b"Updated content");
            Ok(())
        }

        #[test]
        fn test_write_binary_content() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.write("/data.bin", &[0xFF, 0xFE, 0xFD])?;

            let content = vfs.read("/data.bin")?;
            assert_eq!(content, vec![0xFF, 0xFE, 0xFD]);
            Ok(())
        }

        #[test]
        fn test_write_empty_content() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.write("/empty.txt", &[])?;

            let content = vfs.read("/empty.txt")?;
            assert!(content.is_empty());
            Ok(())
        }

        #[test]
        fn test_write_nonexistent_file() {
            let mut vfs = setup_test_vfs();
            let result = vfs.write("/newfile.txt", b"Content");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Writing to nonexistent file should fail"
            );
        }

        #[test]
        fn test_write_directory_as_file() {
            let mut vfs = setup_test_vfs();
            let result = vfs.write("/etc", b"Content");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("is a directory"),
                "Writing to directory should error"
            );
        }

        #[test]
        fn test_append_to_file() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.append("/readme.md", b" - appended")?;

            let content = vfs.read("/readme.md")?;
            assert_eq!(content, b"Project docs - appended");
            Ok(())
        }

        #[test]
        fn test_append_binary_data() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.append("/data.bin", &[0xAA, 0xBB])?;

            let content = vfs.read("/data.bin")?;
            assert_eq!(content, vec![0x00, 0x01, 0x02, 0xAA, 0xBB]);
            Ok(())
        }

        #[test]
        fn test_append_empty_slice() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.append("/empty.txt", &[])?; // Append nothing

            let content = vfs.read("/empty.txt")?;
            assert!(content.is_empty()); // Still empty
            Ok(())
        }

        #[test]
        fn test_append_nonexistent_file() {
            let mut vfs = setup_test_vfs();
            let result = vfs.append("/newfile.txt", b"More content");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Appending to nonexistent file should fail"
            );
        }

        #[test]
        fn test_append_directory_as_file() {
            let mut vfs = setup_test_vfs();
            let result = vfs.append("/etc", b"Data");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("is a directory"),
                "Appending to directory should error"
            );
        }

        #[test]
        fn test_write_and_append_sequence() -> Result<()> {
            let mut vfs = setup_test_vfs();

            // Start with initial content
            vfs.mkfile("/test.txt", None)?;
            vfs.write("/test.txt", b"Initial")?;

            // Append some data
            vfs.append("/test.txt", b" + appended")?;

            // Overwrite completely
            vfs.write("/test.txt", b"Overwritten")?;

            let final_content = vfs.read("/test.txt")?;
            assert_eq!(final_content, b"Overwritten");

            Ok(())
        }

        #[test]
        fn test_read_after_write_and_append() -> Result<()> {
            let mut vfs = setup_test_vfs();

            vfs.mkfile("/log.txt", None)?;
            vfs.write("/log.txt", b"Entry 1\n")?;
            vfs.append("/log.txt", b"Entry 2\n")?;
            vfs.write("/log.txt", b"Overwritten log\n")?;
            vfs.append("/log.txt", b"Final entry\n")?;

            let content = vfs.read("/log.txt")?;
            assert_eq!(content, b"Overwritten log\nFinal entry\n");

            Ok(())
        }
    }

    mod rm {
        use super::*;

        /// Helper to create a pre‑populated MapFS instance for testing
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new();

            // Create a sample hierarchy with files and nested directories
            vfs.mkdir("/etc").unwrap();
            vfs.mkdir("/home").unwrap();
            vfs.mkdir("/home/user").unwrap();
            vfs.mkdir("/home/user/projects").unwrap();
            vfs.mkfile("/home/user/file1.txt", Some(b"Content 1"))
                .unwrap();
            vfs.mkfile("/home/user/projects/proj1.rs", Some(b"Code 1"))
                .unwrap();
            vfs.mkfile("/readme.md", Some(b"Docs")).unwrap();
            vfs.mkfile("/data.bin", Some(b"\x00\x01")).unwrap();

            vfs
        }

        #[test]
        fn test_rm_file() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.rm("/readme.md")?;

            assert!(!vfs.exists("/readme.md"));
            assert!(vfs.exists("/data.bin")); // Other files untouched

            Ok(())
        }

        #[test]
        fn test_rm_directory_recursive() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.rm("/home/user")?;

            // Entire subtree should be gone
            assert!(!vfs.exists("/home/user"));
            assert!(!vfs.exists("/home/user/file1.txt"));
            assert!(!vfs.exists("/home/user/projects"));
            assert!(!vfs.exists("/home/user/projects/proj1.rs"));

            // Sibling directories remain
            assert!(vfs.exists("/home"));
            assert!(vfs.exists("/etc"));

            Ok(())
        }

        #[test]
        fn test_rm_nonexistent_path() {
            let mut vfs = setup_test_vfs();
            let result = vfs.rm("/nonexistent");
            assert!(result.is_err());
            assert!(
                result.unwrap_err().to_string().contains("does not exist"),
                "Should error for non‑existent path"
            );
        }

        #[test]
        fn test_rm_empty_path() {
            let mut vfs = setup_test_vfs();
            let result = vfs.rm("");
            assert!(result.is_err());
            assert!(
                result
                    .unwrap_err()
                    .to_string()
                    .contains("invalid path: empty"),
                "Empty path should be rejected"
            );
        }

        #[test]
        fn test_rm_root_directory() {
            let mut vfs = setup_test_vfs();
            let result = vfs.rm("/");
            assert!(result.is_err());
            assert!(
                result
                    .unwrap_err()
                    .to_string()
                    .contains("invalid path: the root cannot be removed"),
                "Root directory cannot be removed"
            );
        }

        #[test]
        fn test_rm_with_trailing_slash() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.rm("/etc/")?; // Trailing slash

            assert!(!vfs.exists("/etc"));
            Ok(())
        }

        #[test]
        fn test_rm_relative_path_from_root() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home").unwrap(); // Change CWD to /home

            vfs.rm("user")?; // Relative path

            assert!(!vfs.exists("/home/user"));
            assert!(vfs.exists("/etc")); // Unrelated paths intact

            Ok(())
        }

        #[test]
        fn test_rm_relative_path_nested() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user/projects").unwrap();

            vfs.rm("../file1.txt")?; // Go up and remove sibling

            assert!(!vfs.exists("/home/user/file1.txt"));
            assert!(vfs.exists("/home/user/projects/proj1.rs")); // Project files intact

            Ok(())
        }

        #[test]
        fn test_rm_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user")?;

            let result = vfs.rm(".");
            assert!(result.is_ok());
            assert!(!vfs.exists("/home/user"));

            Ok(())
        }

        #[test]
        fn test_rm_double_dot_path() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.cd("/home/user/projects").unwrap();

            let result = vfs.rm("..");
            assert!(result.is_ok());
            assert!(!vfs.exists("/home/user"));
            assert!(vfs.exists("/home"));

            Ok(())
        }

        #[test]
        fn test_rm_single_file_in_dir() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.rm("/home/user/file1.txt")?;

            assert!(!vfs.exists("/home/user/file1.txt"));
            assert!(vfs.exists("/home/user/projects/proj1.rs")); // Other files remain
            assert!(vfs.exists("/home/user")); // Directory still exists

            Ok(())
        }

        #[test]
        fn test_rm_idempotent() -> Result<()> {
            let mut vfs = setup_test_vfs();

            // First removal succeeds
            vfs.rm("/data.bin")?;

            // Second removal should fail (already gone)
            let result = vfs.rm("/data.bin");
            assert!(result.is_err());

            Ok(())
        }

        #[test]
        fn test_rm_case_sensitivity() -> Result<()> {
            let mut vfs = setup_test_vfs();
            vfs.mkdir("/CaseDir").unwrap();
            vfs.mkfile("/CaseDir/file.txt", Some(b"Content")).unwrap();

            vfs.rm("/CaseDir")?; // Correct case

            assert!(!vfs.exists("/CaseDir"));
            assert!(!vfs.exists("/casedir")); // Case‑sensitive check

            Ok(())
        }
    }

    mod cleanup {
        use super::*;

        /// Helper to create a pre‑populated MapFS instance for testing
        fn setup_test_vfs() -> MapFS {
            let mut vfs = MapFS::new();

            // Create a diverse hierarchy with files and directories
            vfs.mkdir("/etc").unwrap();
            vfs.mkdir("/home").unwrap();
            vfs.mkdir("/home/user").unwrap();
            vfs.mkdir("/home/user/projects").unwrap();
            vfs.mkfile("/home/user/file1.txt", Some(b"Content 1"))
                .unwrap();
            vfs.mkfile("/home/user/projects/proj1.rs", Some(b"Code 1"))
                .unwrap();
            vfs.mkfile("/readme.md", Some(b"Docs")).unwrap();
            vfs.mkfile("/data.bin", Some(b"\x00\x01")).unwrap();
            vfs.mkfile("/empty.txt", None).unwrap();

            vfs
        }

        #[test]
        fn test_cleanup_removes_all_entries() {
            let mut vfs = setup_test_vfs();
            let result = vfs.cleanup();

            assert!(result); // Should return true on success
            assert_eq!(vfs.entries.len(), 0); // All entries removed
        }

        #[test]
        fn test_cleanup_preserves_root() {
            let mut vfs = setup_test_vfs();
            vfs.cleanup();

            assert!(vfs.exists("/"));
        }

        #[test]
        fn test_cleanup_empty_vfs() {
            let mut vfs = MapFS::new(); // Already empty
            let result = vfs.cleanup();

            assert!(result);
            assert_eq!(vfs.entries.len(), 0);
        }

        #[test]
        fn test_cleanup_after_partial_removal() {
            let mut vfs = setup_test_vfs();

            // Remove some entries manually first
            vfs.rm("/readme.md").unwrap();
            vfs.rm("/home/user/projects").unwrap();

            let result = vfs.cleanup();

            assert!(result);
            assert_eq!(vfs.entries.len(), 0);
        }

        #[test]
        fn test_cleanup_idempotent() {
            let mut vfs = setup_test_vfs();

            // First cleanup
            assert!(vfs.cleanup());

            // Second cleanup on already‑clean VFS
            assert!(vfs.cleanup());

            assert_eq!(vfs.entries.len(), 0);
        }

        #[test]
        fn test_cleanup_with_nested_structure() {
            let mut vfs = setup_test_vfs();

            // Add deeper nesting to test traversal order
            vfs.mkdir("/a/b/c/d").unwrap();
            vfs.mkfile("/a/b/c/d/file.txt", Some(b"Deep file")).unwrap();

            vfs.cleanup();

            assert_eq!(vfs.entries.len(), 0);
        }

        #[test]
        fn test_cleanup_returns_true_always() {
            let mut vfs1 = setup_test_vfs();
            let mut vfs2 = MapFS::new();

            assert!(vfs1.cleanup()); // Non‑empty VFS
            assert!(vfs2.cleanup()); // Empty VFS
        }
    }
}