fb_procfs 0.9.0

A crate for reading procfs
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
// Copyright (c) Facebook, Inc. and its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::fs::File;
use std::io::Write;
use std::os::unix::fs::symlink;
use std::path::Path;

use slog::Drain;
use tempfile::TempDir;

use crate::types::*;
use crate::KsmReader;
use crate::NetReader;
use crate::ProcReader;
use crate::PAGE_SIZE;

struct TestProcfs {
    tempdir: TempDir,
}

impl TestProcfs {
    fn new() -> TestProcfs {
        TestProcfs {
            tempdir: TempDir::new().expect("Failed to create tempdir"),
        }
    }

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

    fn get_reader(&self) -> ProcReader {
        ProcReader::new_with_custom_procfs(self.path().to_path_buf())
    }

    fn get_ksm_reader(&self) -> KsmReader {
        KsmReader::new_with_custom_path(self.path().to_path_buf())
    }

    fn create_dir<P: AsRef<Path>>(&self, p: P) {
        let path = self.path().join(p);
        std::fs::create_dir_all(&path)
            .unwrap_or_else(|_| panic!("Failed to create dir {}", path.display()))
    }

    fn create_file_with_content_full_path<P: AsRef<Path>>(&self, path: P, content: &[u8]) {
        let mut file = File::create(&path)
            .unwrap_or_else(|_| panic!("Failed to create {}", path.as_ref().display()));
        file.write_all(content)
            .unwrap_or_else(|_| panic!("Failed to write to {}", path.as_ref().display()));
    }

    fn create_file_with_content<P: AsRef<Path>>(&self, p: P, content: &[u8]) {
        let path = self.path().join(p);
        self.create_file_with_content_full_path(path, content);
    }

    fn create_pid_file_with_content<P: AsRef<Path>>(&self, pid: u32, p: P, content: &[u8]) {
        let pid_dir = self.path().join(pid.to_string());
        if !pid_dir.exists() {
            std::fs::create_dir(&pid_dir).expect("Failed to create pid dir");
        }
        let path = pid_dir.join(p);
        self.create_file_with_content_full_path(path, content);
    }

    fn create_pid_file_with_link<P: AsRef<Path>>(&self, pid: u32, src: P, dst: P) -> String {
        self.create_pid_file_with_content(pid, src.as_ref(), b"");
        let pid_dir = self.path().join(pid.to_string());
        let src_path = pid_dir.join(src);
        let dst_path = pid_dir.join(dst);
        symlink(&src_path, dst_path).expect("Fail to create pid symlink");
        src_path.to_string_lossy().into_owned()
    }

    fn get_net_reader(&self) -> NetReader {
        let logger = get_logger();
        let iface_dir = self.path().join("iface");
        if !iface_dir.exists() {
            std::fs::create_dir(&iface_dir).expect("Failed to create iface dir");
        }
        NetReader::new_with_custom_path(logger, iface_dir, self.path().to_path_buf())
            .expect("Fail to construct Net Reader")
    }

    fn create_net_stat_file_with_content<P: AsRef<Path>>(
        &self,
        interface: &str,
        p: P,
        content: u64,
    ) {
        let interface_dir = self.path().join(interface);
        if !interface_dir.exists() {
            std::fs::create_dir(&interface_dir).expect("Failed to create interface dir");
        }
        let iface_dir = self.path().join("iface");
        if !iface_dir.exists() {
            std::fs::create_dir(&iface_dir).expect("Failed to create iface dir");
        }
        let iface_link = iface_dir.join(interface);
        if !iface_link.exists() {
            symlink(&interface_dir, &iface_link).unwrap_or_else(|e| {
                panic!(
                    "Fail to create symlink {} -> {}: {}",
                    interface_dir.to_string_lossy(),
                    iface_link.to_string_lossy(),
                    e
                )
            });
        }
        let interface_dir = interface_dir.join("statistics");
        if !interface_dir.exists() {
            std::fs::create_dir(&interface_dir).expect("Failed to create statistics dir");
        }
        let path = interface_dir.join(p);
        self.create_file_with_content_full_path(path, content.to_string().as_bytes());
    }
}

fn get_logger() -> slog::Logger {
    let plain = slog_term::PlainSyncDecorator::new(std::io::stderr());
    slog::Logger::root(slog_term::FullFormat::new(plain).build().fuse(), slog::o!())
}

#[test]
fn test_kernel_version() {
    let version = b"1.2.3";
    let procfs = TestProcfs::new();
    procfs.create_dir("sys/kernel");
    procfs.create_file_with_content("sys/kernel/osrelease", version);
    let reader = procfs.get_reader();
    let kernel_version = reader
        .read_kernel_version()
        .expect("Fail to read kernel version");
    assert_eq!(kernel_version, "1.2.3");
}

#[test]
fn test_stat_success() {
    let stat = b"cpu  152068189 10802578 74452328 5513630980 5288390 0 1767719 0 0 0
cpu0 5444440 452370 3076696 230319654 224331 0 336368 0 0 0
cpu1 8448465 464353 3348782 227381351 220817 0 117305 0 0 0
cpu2 8026518 464055 3282421 227922992 221338 0 74157 0 0 0
cpu3 7343223 445316 3208287 228716633 217921 0 59636 0 0 0
cpu4 7032469 451903 3164894 229075253 215581 0 53305 0 0 0
cpu5 6710964 444291 3129304 229436472 216684 0 48777 0 0 0
cpu6 6369833 453695 3099787 229781771 223354 0 48604 0 0 0
cpu7 6265491 439547 3080483 229939368 214955 0 46759 0 0 0
cpu8 6142526 438021 3075538 230049431 227041 0 46250 0 0 0
cpu9 6124418 452468 3062529 230073290 216237 0 45647 0 0 0
cpu10 6253875 450223 3049983 229894105 220705 0 45386 0 0 0
cpu11 6153930 444146 3056614 230060355 213563 0 45135 0 0 0
cpu12 6206970 458147 3197631 228603207 242081 0 302601 0 0 0
cpu13 6094689 445538 3066545 230075722 219005 0 45676 0 0 0
cpu14 5950313 443723 3056300 230247332 214160 0 45070 0 0 0
cpu15 6098008 461004 3057722 230065810 221169 0 45598 0 0 0
cpu16 5858941 461330 3064073 230307586 207675 0 45956 0 0 0
cpu17 6030100 442988 3038059 230181264 219816 0 45341 0 0 0
cpu18 5917745 448756 3050060 230279037 215704 0 45064 0 0 0
cpu19 6042834 433710 3058862 230151162 214883 0 45179 0 0 0
cpu20 5804757 444950 3057184 230372774 224962 0 46132 0 0 0
cpu21 5935027 455253 3052007 230250433 209736 0 45325 0 0 0
cpu23 5937943 460201 3057286 230166670 230819 0 42628 0 0 0
intr 29638874355 54 9 0 0 14325 0 0 0 1 0 19 0 5 0 0 0 0 0 0 0 0 0 0 0 0 14 0 109094370 0 464199486 9840 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ctxt 48203489122
btime 1569873858
processes 105984108
procs_running 4
procs_blocked 0
softirq 15518280031 0 3506477306 138437 1090758178 117192437 0 24543 800441241 93 1413313204
";

    let procfs = TestProcfs::new();
    procfs.create_file_with_content("stat", stat);
    let reader = procfs.get_reader();
    let stat = reader.read_stat().expect("Failed to read stat file");
    let total_cpu = stat.total_cpu.expect("Did not read total cpu");

    assert_eq!(total_cpu.user_usec, Some(1520681890000));
    assert_eq!(total_cpu.nice_usec, Some(108025780000));
    assert_eq!(total_cpu.system_usec, Some(744523280000));
    assert_eq!(total_cpu.idle_usec, Some(55136309800000));
    assert_eq!(total_cpu.iowait_usec, Some(52883900000));
    assert_eq!(total_cpu.irq_usec, Some(0));
    assert_eq!(total_cpu.softirq_usec, Some(17677190000));
    assert_eq!(total_cpu.stolen_usec, Some(0));
    assert_eq!(total_cpu.guest_usec, Some(0));

    assert_eq!(total_cpu.guest_nice_usec, Some(0));

    let cpu23 = &stat.cpus_map.expect("Failed to read cpus_map")[&23];
    assert_eq!(cpu23.user_usec, Some(59379430000));

    assert_eq!(stat.total_interrupt_count, Some(29638874355));
    assert_eq!(stat.context_switches, Some(48203489122));
    assert_eq!(stat.boot_time_epoch_secs, Some(1569873858));
    assert_eq!(stat.total_processes, Some(105984108));
    assert_eq!(stat.running_processes, Some(4));
    assert_eq!(stat.blocked_processes, Some(0));
}

#[test]
fn test_meminfo_success() {
    let meminfo = b"MemTotal:       58603192 kB
MemFree:         5298784 kB
MemAvailable:   48603448 kB
Buffers:            3152 kB
Cached:         38116592 kB
SwapCached:        88940 kB
Active:         22739928 kB
Inactive:       22218120 kB
Active(anon):    4396572 kB
Inactive(anon):  2459820 kB
Active(file):   18343356 kB
Inactive(file): 19758300 kB
Unevictable:       14680 kB
Mlocked:           14660 kB
SwapTotal:      20971512 kB
SwapFree:       18537912 kB
Dirty:             40896 kB
Writeback:             0 kB
AnonPages:       6844752 kB
Mapped:           967552 kB
Shmem:             14384 kB
KReclaimable:    5873416 kB
Slab:            7564396 kB
SReclaimable:    5873416 kB
SUnreclaim:      1690980 kB
KernelStack:       58976 kB
PageTables:       157164 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    50273108 kB
Committed_AS:   37020012 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      229472 kB
VmallocChunk:          0 kB
Percpu:           179616 kB
HardwareCorrupted:     0 kB
AnonHugePages:     49152 kB
ShmemHugePages:        0 kB
ShmemPmdMapped:        0 kB
FileHugePages:      6144 kB
FilePmdMapped:      6144 kB
CmaTotal:              0 kB
CmaFree:               0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:               0 kB
DirectMap4k:    19445616 kB
DirectMap2M:    40323072 kB
DirectMap1G:     2097152 kB
";
    let procfs = TestProcfs::new();
    procfs.create_file_with_content("meminfo", meminfo);
    let reader = procfs.get_reader();

    let meminfo = reader.read_meminfo().expect("Failed to read meminfo");

    assert_eq!(meminfo.total, Some(58603192 * 1024));
    assert_eq!(meminfo.free, Some(5298784 * 1024));
    assert_eq!(meminfo.available, Some(48603448 * 1024));
    assert_eq!(meminfo.buffers, Some(3152 * 1024));
    assert_eq!(meminfo.cached, Some(38116592 * 1024));
    assert_eq!(meminfo.swap_cached, Some(88940 * 1024));
    assert_eq!(meminfo.active, Some(22739928 * 1024));
    assert_eq!(meminfo.inactive, Some(22218120 * 1024));
    assert_eq!(meminfo.active_anon, Some(4396572 * 1024));
    assert_eq!(meminfo.inactive_anon, Some(2459820 * 1024));
    assert_eq!(meminfo.active_file, Some(18343356 * 1024));
    assert_eq!(meminfo.inactive_file, Some(19758300 * 1024));
    assert_eq!(meminfo.unevictable, Some(14680 * 1024));
    assert_eq!(meminfo.mlocked, Some(14660 * 1024));
    assert_eq!(meminfo.swap_total, Some(20971512 * 1024));
    assert_eq!(meminfo.swap_free, Some(18537912 * 1024));
    assert_eq!(meminfo.dirty, Some(40896 * 1024));
    assert_eq!(meminfo.writeback, Some(0));
    assert_eq!(meminfo.anon_pages, Some(6844752 * 1024));
    assert_eq!(meminfo.mapped, Some(967552 * 1024));
    assert_eq!(meminfo.shmem, Some(14384 * 1024));
    assert_eq!(meminfo.kreclaimable, Some(5873416 * 1024));
    assert_eq!(meminfo.slab, Some(7564396 * 1024));
    assert_eq!(meminfo.slab_reclaimable, Some(5873416 * 1024));
    assert_eq!(meminfo.slab_unreclaimable, Some(1690980 * 1024));
    assert_eq!(meminfo.kernel_stack, Some(58976 * 1024));
    assert_eq!(meminfo.page_tables, Some(157164 * 1024));
    assert_eq!(meminfo.anon_huge_pages, Some(49152 * 1024));
    assert_eq!(meminfo.shmem_huge_pages, Some(0));
    assert_eq!(meminfo.file_huge_pages, Some(6144 * 1024));
    assert_eq!(meminfo.total_huge_pages, Some(0));
    assert_eq!(meminfo.free_huge_pages, Some(0));
    assert_eq!(meminfo.huge_page_size, Some(2048 * 1024));
    assert_eq!(meminfo.cma_total, Some(0));
    assert_eq!(meminfo.cma_free, Some(0));
    assert_eq!(meminfo.vmalloc_total, Some(34_359_738_367 * 1024));
    assert_eq!(meminfo.vmalloc_used, Some(229_472 * 1024));
    assert_eq!(meminfo.vmalloc_chunk, Some(0));
    assert_eq!(meminfo.direct_map_4k, Some(19_445_616 * 1024));
    assert_eq!(meminfo.direct_map_2m, Some(40_323_072 * 1024));
    assert_eq!(meminfo.direct_map_1g, Some(2_097_152 * 1024));
}

#[test]
fn test_vmstat_success() {
    let vmstat = b"nr_free_pages 1091519
nr_zone_inactive_anon 629826
nr_zone_active_anon 1135006
nr_zone_inactive_file 4297925
nr_zone_active_file 5209569
nr_zone_unevictable 3671
nr_zone_write_pending 5053
nr_mlock 3666
nr_page_table_pages 40627
nr_kernel_stack 60688
nr_bounce 0
nr_free_cma 0
numa_hit 53871133588
numa_miss 0
numa_foreign 0
numa_interleave 4030327584
numa_local 53871133588
numa_other 0
nr_inactive_anon 629826
nr_active_anon 1135006
nr_inactive_file 4297925
nr_active_file 5209569
nr_unevictable 3671
nr_slab_reclaimable 1673011
nr_slab_unreclaimable 416090
nr_isolated_anon 0
nr_isolated_file 0
workingset_nodes 116449
workingset_refault 353022586
workingset_activate 138352977
workingset_restore 78012002
workingset_nodereclaim 12530649
nr_anon_pages 1761357
nr_mapped 219713
nr_file_pages 9534635
nr_dirty 5053
nr_writeback 0
nr_writeback_temp 0
nr_shmem 3593
nr_shmem_hugepages 0
nr_shmem_pmdmapped 0
nr_file_hugepages 3
nr_file_pmdmapped 3
nr_anon_transparent_hugepages 24
nr_unstable 0
nr_vmscan_write 3637794
nr_vmscan_immediate_reclaim 170180
nr_dirtied 4183721266
nr_written 3831980784
nr_kernel_misc_reclaimable 0
nr_dirty_threshold 2098385
nr_dirty_background_threshold 1047911
pgpgin 5245063123
pgpgout 13772335013
pswpin 2090956
pswpout 3637759
pgalloc_dma 0
pgalloc_dma32 1102828262
pgalloc_normal 55950688975
pgalloc_movable 0
allocstall_dma 0
allocstall_dma32 0
allocstall_normal 2848
allocstall_movable 63605
pgskip_dma 0
pgskip_dma32 0
pgskip_normal 0
pgskip_movable 0
pgfree 57608585956
pgactivate 3075441394
pgdeactivate 795490969
pglazyfree 1554548
pgfault 62574548442
pgmajfault 15472187
pglazyfreed 0
pgrefill 820237987
pgsteal_kswapd 1709049230
pgsteal_direct 5652651
pgscan_kswapd 1743683511
pgscan_direct 5877901
pgscan_direct_throttle 0
zone_reclaim_failed 0
pginodesteal 18572761
slabs_scanned 2323559533
kswapd_inodesteal 16409209
kswapd_low_wmark_hit_quickly 222842
kswapd_high_wmark_hit_quickly 16537
pageoutrun 350010
pgrotated 3602381
drop_pagecache 3
drop_slab 3
oom_kill 0
pgmigrate_success 552898079
pgmigrate_fail 638123
compact_migrate_scanned 1760793733
compact_free_scanned 8884040431
compact_isolated 1107787743
compact_stall 80260
compact_fail 78220
compact_success 2040
compact_daemon_wake 127036
compact_daemon_migrate_scanned 231407204
compact_daemon_free_scanned 1747990014
htlb_buddy_alloc_success 0
htlb_buddy_alloc_fail 0
unevictable_pgs_culled 902152601
unevictable_pgs_scanned 0
unevictable_pgs_rescued 902134607
unevictable_pgs_mlocked 902207719
unevictable_pgs_munlocked 902136748
unevictable_pgs_cleared 67305
unevictable_pgs_stranded 67305
thp_fault_alloc 290
thp_fault_fallback 397
thp_collapse_alloc 118618
thp_collapse_alloc_failed 37230
thp_file_alloc 0
thp_file_mapped 6
thp_split_page 5
thp_split_page_failed 0
thp_deferred_split_page 300
thp_split_pmd 5
thp_split_pud 0
thp_zero_page_alloc 0
thp_zero_page_alloc_failed 0
thp_swpout 0
thp_swpout_fallback 5
balloon_inflate 0
balloon_deflate 0
balloon_migrate 0
swap_ra 222407
swap_ra_hit 139012
";

    let procfs = TestProcfs::new();
    procfs.create_file_with_content("vmstat", vmstat);
    let reader = procfs.get_reader();
    let vmstat = reader.read_vmstat().expect("Failed to read vmstat file");

    assert_eq!(vmstat.pgpgin, Some(5_245_063_123));
    assert_eq!(vmstat.pgpgout, Some(13_772_335_013));
    assert_eq!(vmstat.pswpin, Some(2_090_956));
    assert_eq!(vmstat.pswpout, Some(3_637_759));
    assert_eq!(vmstat.pgsteal_kswapd, Some(1_709_049_230));
    assert_eq!(vmstat.pgsteal_direct, Some(5_652_651));
    assert_eq!(vmstat.pgscan_kswapd, Some(1_743_683_511));
    assert_eq!(vmstat.pgscan_direct, Some(5_877_901));
    assert_eq!(vmstat.oom_kill, Some(0));
}

#[test]
fn test_read_slabinfo() {
    let slabinfo = b"slabinfo - version: 2.1
    # name            <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab> : tunables <limit> <batchcount> <sharedfactor> : slabdata <active_slabs> <num_slabs> <sharedavail>
    zspage             22225  24382     56   73    1 : tunables    0    0    0 : slabdata    334    334      0
    zs_handle         157071 246784      8  512    1 : tunables    0    0    0 : slabdata    482    482      0
    zspage             23311  24820     56   73    1 : tunables    0    0    0 : slabdata    340    340      0
    zs_handle         160665 253440      8  512    1 : tunables    0    0    0 : slabdata    495    495      0
    kvm_async_pf           0      0    136   30    1 : tunables    0    0    0 : slabdata      0      0      0
    kvm_vcpu               0      0   9792    3    8 : tunables    0    0    0 : slabdata      0      0      0
    kvm_mmu_page_header      0      0    184   44    2 : tunables    0    0    0 : slabdata      0      0      0
    x86_emulator           0      0   2672   12    8 : tunables    0    0    0 : slabdata      0      0      0
    x86_fpu                0      0   4160    7    8 : tunables    0    0    0 : slabdata      0      0      0
    ext4_groupinfo_1k     90     90    136   30    1 : tunables    0    0    0 : slabdata      3      3      0
";
    let procfs = TestProcfs::new();
    procfs.create_file_with_content("slabinfo", slabinfo);
    let reader = procfs.get_reader();
    let slabinfo = reader
        .read_slabinfo()
        .expect("Failed to read slabinfo file");
    let expected_slabinfo = vec![
        SlabInfo {
            name: Some("zspage".to_string()),
            active_objs: Some(22225),
            num_objs: Some(24382),
            obj_size: Some(56),
            obj_per_slab: Some(73),
            pages_per_slab: Some(1),
            active_slabs: Some(334),
            num_slabs: Some(334),
        },
        SlabInfo {
            name: Some("zs_handle".to_string()),
            active_objs: Some(157071),
            num_objs: Some(246784),
            obj_size: Some(8),
            obj_per_slab: Some(512),
            pages_per_slab: Some(1),
            active_slabs: Some(482),
            num_slabs: Some(482),
        },
        SlabInfo {
            name: Some("zspage".to_string()),
            active_objs: Some(23311),
            num_objs: Some(24820),
            obj_size: Some(56),
            obj_per_slab: Some(73),
            pages_per_slab: Some(1),
            active_slabs: Some(340),
            num_slabs: Some(340),
        },
        SlabInfo {
            name: Some("zs_handle".to_string()),
            active_objs: Some(160665),
            num_objs: Some(253440),
            obj_size: Some(8),
            obj_per_slab: Some(512),
            pages_per_slab: Some(1),
            active_slabs: Some(495),
            num_slabs: Some(495),
        },
        SlabInfo {
            name: Some("kvm_async_pf".to_string()),
            active_objs: Some(0),
            num_objs: Some(0),
            obj_size: Some(136),
            obj_per_slab: Some(30),
            pages_per_slab: Some(1),
            active_slabs: Some(0),
            num_slabs: Some(0),
        },
        SlabInfo {
            name: Some("kvm_vcpu".to_string()),
            active_objs: Some(0),
            num_objs: Some(0),
            obj_size: Some(9792),
            obj_per_slab: Some(3),
            pages_per_slab: Some(8),
            active_slabs: Some(0),
            num_slabs: Some(0),
        },
        SlabInfo {
            name: Some("kvm_mmu_page_header".to_string()),
            active_objs: Some(0),
            num_objs: Some(0),
            obj_size: Some(184),
            obj_per_slab: Some(44),
            pages_per_slab: Some(2),
            active_slabs: Some(0),
            num_slabs: Some(0),
        },
        SlabInfo {
            name: Some("x86_emulator".to_string()),
            active_objs: Some(0),
            num_objs: Some(0),
            obj_size: Some(2672),
            obj_per_slab: Some(12),
            pages_per_slab: Some(8),
            active_slabs: Some(0),
            num_slabs: Some(0),
        },
        SlabInfo {
            name: Some("x86_fpu".to_string()),
            active_objs: Some(0),
            num_objs: Some(0),
            obj_size: Some(4160),
            obj_per_slab: Some(7),
            pages_per_slab: Some(8),
            active_slabs: Some(0),
            num_slabs: Some(0),
        },
        SlabInfo {
            name: Some("ext4_groupinfo_1k".to_string()),
            active_objs: Some(90),
            num_objs: Some(90),
            obj_size: Some(136),
            obj_per_slab: Some(30),
            pages_per_slab: Some(1),
            active_slabs: Some(3),
            num_slabs: Some(3),
        },
    ];
    assert_eq!(slabinfo, expected_slabinfo);
}

#[test]
fn test_ksm() {
    let ksm_inputs = std::collections::BTreeMap::from([
        ("advisor_max_cpu", "70"),
        ("advisor_max_pages_to_scan", "30000"),
        ("advisor_min_pages_to_scan", "500"),
        ("advisor_mode", "none [scan-time]"),
        ("advisor_target_scan_time", "200"),
        ("full_scans", "25"),
        ("general_profit", "0"),
        ("ksm_zero_pages", "0"),
        ("max_page_sharing", "256"),
        ("merge_across_nodes", "1"),
        ("pages_scanned", "5149"),
        ("pages_shared", "0"),
        ("pages_sharing", "0"),
        ("pages_skipped", "25"),
        ("pages_to_scan", "100"),
        ("pages_unshared", "0"),
        ("pages_volatile", "0"),
        ("run", "1"),
        ("sleep_millisecs", "20"),
        ("smart_scan", "1"),
        ("stable_node_chains", "1"),
        ("stable_node_chains_prune_millisecs", "2000"),
        ("stable_node_dups", "0"),
        ("use_zero_pages", "0"),
    ]);

    let procfs = TestProcfs::new();

    for (key, val) in ksm_inputs.iter() {
        procfs.create_file_with_content(key, val.as_bytes());
    }

    let reader = procfs.get_ksm_reader();
    let ksm = reader.read_ksm();

    assert_eq!(ksm.advisor_max_cpu, Some(70));
    assert_eq!(ksm.advisor_max_pages_to_scan, Some(30000));
    assert_eq!(ksm.advisor_min_pages_to_scan, Some(500));
    assert_eq!(ksm.advisor_mode, Some(String::from("scan-time")));
    assert_eq!(ksm.advisor_target_scan_time, Some(200));
    assert_eq!(ksm.full_scans, Some(25));
    assert_eq!(ksm.general_profit, Some(0));
    assert_eq!(ksm.ksm_zero_pages, Some(0));
    assert_eq!(ksm.max_page_sharing, Some(256));
    assert_eq!(ksm.merge_across_nodes, Some(1));
    assert_eq!(ksm.pages_scanned, Some(5149));
    assert_eq!(ksm.pages_shared, Some(0));
    assert_eq!(ksm.pages_sharing, Some(0));
    assert_eq!(ksm.pages_skipped, Some(25));
    assert_eq!(ksm.pages_to_scan, Some(100));
    assert_eq!(ksm.pages_unshared, Some(0));
    assert_eq!(ksm.pages_volatile, Some(0));
    assert_eq!(ksm.run, Some(1));
    assert_eq!(ksm.sleep_millisecs, Some(20));
    assert_eq!(ksm.smart_scan, Some(1));
    assert_eq!(ksm.stable_node_chains, Some(1));
    assert_eq!(ksm.stable_node_chains_prune_millisecs, Some(2000));
    assert_eq!(ksm.stable_node_dups, Some(0));
    assert_eq!(ksm.use_zero_pages, Some(0));
}

#[test]
fn test_disk_stat() {
    let diskstats = b"   1       0 ram0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       1 ram1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       2 ram2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       3 ram3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       4 ram4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       5 ram5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       6 ram6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       7 ram7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       8 ram8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1       9 ram9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1      10 ram10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1      11 ram11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1      12 ram12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1      13 ram13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1      14 ram14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    1      15 ram15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  253       0 vda 187110061 6006969 23225661674 128112391 136557913 12023946 28151760010 615065070 0 107730702 623152538 1 2 3 4
  253       1 vda1 15333 522 288946 4125 1707 2227 253642 3073 0 5343 3060 0 0 0 0
  253       2 vda2 1183986 94095 10301816 266679 2457101 1248583 29645480 3253603 0 1556514 2531673 0 0 0 0
  253       3 vda3 185910515 5912352 23215062392 127841533 132254952 10773136 28121859920 611595170 0 106665419 620613687 0 0 0 0
    7       0 loop0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       1 loop1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       2 loop2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       3 loop3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       4 loop4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       5 loop5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       6 loop6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       7 loop7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       8 loop8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7       9 loop9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      10 loop10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      11 loop11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      12 loop12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      13 loop13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      14 loop14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      15 loop15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      16 loop16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      17 loop17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      18 loop18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      19 loop19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      20 loop20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      21 loop21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      22 loop22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      23 loop23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      24 loop24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      25 loop25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      26 loop26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      27 loop27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      28 loop28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      29 loop29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      30 loop30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      31 loop31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      32 loop32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      33 loop33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      34 loop34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      35 loop35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      36 loop36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      37 loop37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      38 loop38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      39 loop39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      40 loop40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      41 loop41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      42 loop42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      43 loop43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      44 loop44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      45 loop45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      46 loop46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      47 loop47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      48 loop48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      49 loop49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      50 loop50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      51 loop51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      52 loop52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      53 loop53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      54 loop54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      55 loop55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      56 loop56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      57 loop57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      58 loop58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      59 loop59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      60 loop60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      61 loop61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      62 loop62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      63 loop63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      64 loop64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      65 loop65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      66 loop66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      67 loop67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      68 loop68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      69 loop69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      70 loop70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      71 loop71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      72 loop72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      73 loop73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      74 loop74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      75 loop75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      76 loop76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      77 loop77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      78 loop78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      79 loop79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      80 loop80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      81 loop81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      82 loop82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      83 loop83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      84 loop84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      85 loop85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      86 loop86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      87 loop87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      88 loop88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      89 loop89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      90 loop90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      91 loop91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      92 loop92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      93 loop93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      94 loop94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      95 loop95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      96 loop96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      97 loop97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      98 loop98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7      99 loop99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     100 loop100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     101 loop101 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     102 loop102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     103 loop103 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     104 loop104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     105 loop105 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     106 loop106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     107 loop107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     108 loop108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     109 loop109 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     110 loop110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     111 loop111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     112 loop112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     113 loop113 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     114 loop114 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     115 loop115 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     116 loop116 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     117 loop117 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     118 loop118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     119 loop119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     120 loop120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     121 loop121 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     122 loop122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     123 loop123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     124 loop124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     125 loop125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     126 loop126 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    7     127 loop127 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0";

    let procfs = TestProcfs::new();
    procfs.create_file_with_content("diskstats", diskstats);
    let reader = procfs.get_reader();
    let diskmap = reader
        .read_disk_stats_and_fsinfo()
        .expect("Failed to read diskstats file");
    let vda_stat = diskmap.get("vda").expect("Fail to get vda");
    assert_eq!(vda_stat.name, Some("vda".into()));
    assert_eq!(vda_stat.read_completed, Some(187_110_061));
    assert_eq!(vda_stat.read_merged, Some(6_006_969));
    assert_eq!(vda_stat.read_sectors, Some(23_225_661_674));
    assert_eq!(vda_stat.time_spend_read_ms, Some(128_112_391));
    assert_eq!(vda_stat.write_completed, Some(136_557_913));
    assert_eq!(vda_stat.write_merged, Some(12_023_946));
    assert_eq!(vda_stat.write_sectors, Some(28_151_760_010));
    assert_eq!(vda_stat.time_spend_write_ms, Some(615_065_070));
    assert_eq!(vda_stat.discard_completed, Some(1));
    assert_eq!(vda_stat.discard_merged, Some(2));
    assert_eq!(vda_stat.discard_sectors, Some(3));
    assert_eq!(vda_stat.time_spend_discard_ms, Some(4));

    let vda_stat = diskmap.get("vda1").expect("Fail to get vda1");
    assert_eq!(vda_stat.name, Some("vda1".into()));
    assert_eq!(vda_stat.read_completed, Some(15333));
    assert_eq!(vda_stat.read_merged, Some(522));
    assert_eq!(vda_stat.read_sectors, Some(288_946));
    assert_eq!(vda_stat.time_spend_read_ms, Some(4125));
    assert_eq!(vda_stat.write_completed, Some(1707));
    assert_eq!(vda_stat.write_merged, Some(2227));
    assert_eq!(vda_stat.write_sectors, Some(253_642));
    assert_eq!(vda_stat.time_spend_write_ms, Some(3073));
    assert_eq!(vda_stat.discard_completed, Some(0));
    assert_eq!(vda_stat.discard_merged, Some(0));
    assert_eq!(vda_stat.discard_sectors, Some(0));
    assert_eq!(vda_stat.time_spend_discard_ms, Some(0));

    let vda_stat = diskmap.get("vda2").expect("Fail to get vda2");
    assert_eq!(vda_stat.name, Some("vda2".into()));
    assert_eq!(vda_stat.read_completed, Some(1_183_986));
    assert_eq!(vda_stat.read_merged, Some(94095));
    assert_eq!(vda_stat.read_sectors, Some(10_301_816));
    assert_eq!(vda_stat.time_spend_read_ms, Some(266_679));
    assert_eq!(vda_stat.write_completed, Some(2_457_101));
    assert_eq!(vda_stat.write_merged, Some(1_248_583));
    assert_eq!(vda_stat.write_sectors, Some(29_645_480));
    assert_eq!(vda_stat.time_spend_write_ms, Some(3_253_603));
    assert_eq!(vda_stat.discard_completed, Some(0));
    assert_eq!(vda_stat.discard_merged, Some(0));
    assert_eq!(vda_stat.discard_sectors, Some(0));
    assert_eq!(vda_stat.time_spend_discard_ms, Some(0));

    let vda_stat = diskmap.get("vda3").expect("Fail to get vda3");
    assert_eq!(vda_stat.name, Some("vda3".into()));
    assert_eq!(vda_stat.read_completed, Some(185_910_515));
    assert_eq!(vda_stat.read_merged, Some(5_912_352));
    assert_eq!(vda_stat.read_sectors, Some(23_215_062_392));
    assert_eq!(vda_stat.time_spend_read_ms, Some(127_841_533));
    assert_eq!(vda_stat.write_completed, Some(132_254_952));
    assert_eq!(vda_stat.write_merged, Some(10_773_136));
    assert_eq!(vda_stat.write_sectors, Some(28_121_859_920));
    assert_eq!(vda_stat.time_spend_write_ms, Some(611_595_170));
    assert_eq!(vda_stat.discard_completed, Some(0));
    assert_eq!(vda_stat.discard_merged, Some(0));
    assert_eq!(vda_stat.discard_sectors, Some(0));
    assert_eq!(vda_stat.time_spend_discard_ms, Some(0));
}

#[test]
fn test_pid_stat() {
    let stat = b"74718 (((bash process)) D 44786 74718 74718 34820 3561868 4194304 31346884 614468259 3 23315 14474 10887 1967513 339861 20 0 1 0 102803 224440320 12725 18446744073709551615 93972706258944 93972707333076 140732465518320 0 0 0 65536 3670020 1266777851 0 0 0 17 12 0 0 7 0 0 93972709432552 93972709479876 93972709523456 140732465525073 140732465525079 140732465525079 140732465528814 0";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(74718, "stat", stat);
    let reader = procfs.get_reader();
    let pidstat = reader
        .read_pid_stat(74718)
        .expect("Failed to read pid stat file");

    assert_eq!(pidstat.pid, Some(74718));
    assert_eq!(pidstat.comm, Some("((bash process)".to_string()));
    assert_eq!(pidstat.state, Some(PidState::UninterruptibleSleep));
    assert_eq!(pidstat.ppid, Some(44786));
    assert_eq!(pidstat.pgrp, Some(74718));
    assert_eq!(pidstat.session, Some(74718));
    assert_eq!(pidstat.minflt, Some(31346884));
    assert_eq!(pidstat.majflt, Some(3));
    assert_eq!(pidstat.user_usecs, Some(144740000));
    assert_eq!(pidstat.system_usecs, Some(108870000));
    assert_eq!(pidstat.num_threads, Some(1));
    // uptime is used in running_secs, but uptime is not read from procfs, so we don't check it
    assert_eq!(pidstat.rss_bytes, Some(12725 * *PAGE_SIZE));
    assert_eq!(pidstat.processor, Some(12));
}

#[test]
fn test_pid_status() {
    let status = b"Name:	below
Umask:	0022
State:	S (sleeping)
Tgid:	93041
Ngid:	0
Pid:	93041
PPid:	1
TracerPid:	0
Uid:	0	0	0	0
Gid:	0	0	0	0
FDSize:	256
Groups:
NStgid:	93041
NSpid:	93041
NSpgid:	93041
NSsid:	93041
VmPeak:	 1381848 kB
VmSize:	 1381532 kB
VmLck:	       4 kB
VmPin:	    6240 kB
VmHWM:	  128092 kB
VmRSS:	  124404 kB
RssAnon:	   99284 kB
RssFile:	   25120 kB
RssShmem:	      12 kB
VmData:	 1236636 kB
VmStk:	     132 kB
VmExe:	   60652 kB
VmLib:	    9096 kB
VmPTE:	    1840 kB
VmSwap:	    8812 kB
HugetlbPages:	      13 kB
CoreDumping:	0
THP_enabled:	1
Threads:	147
SigQ:	5/228815
SigPnd:	0000000000000000
ShdPnd:	0000000000000000
SigBlk:	0000000000000000
SigIgn:	0000000000000000
SigCgt:	00000001840054ec
CapInh:	0000000000000000
CapPrm:	0000003fffffffff
CapEff:	0000003fffffffff
CapBnd:	0000003fffffffff
CapAmb:	0000000000000000
NoNewPrivs:	0
Seccomp:	0
Speculation_Store_Bypass:	vulnerable
Cpus_allowed:	ffffff
Cpus_allowed_list:	0-23
Mems_allowed:	01
Mems_allowed_list:	0
voluntary_ctxt_switches:	2144888
nonvoluntary_ctxt_switches:	37733";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(93041, "status", status);
    let reader = procfs.get_reader();
    let pidmem = reader
        .read_pid_mem(93041)
        .expect("Failed to read pid status file");

    assert_eq!(pidmem.ns_tgid, Some(vec![93041]));
    assert_eq!(pidmem.vm_size, Some(1_381_532 * 1024));
    assert_eq!(pidmem.lock, Some(4 * 1024));
    assert_eq!(pidmem.pin, Some(6240 * 1024));
    assert_eq!(pidmem.anon, Some(99_284 * 1024));
    assert_eq!(pidmem.file, Some(25_120 * 1024));
    assert_eq!(pidmem.shmem, Some(12 * 1024));
    assert_eq!(pidmem.pte, Some(1840 * 1024));
    assert_eq!(pidmem.swap, Some(8812 * 1024));
    assert_eq!(pidmem.huge_tlb, Some(13 * 1024));
}

#[test]
fn test_pid_io() {
    let io = b"rchar: 1065638765191
wchar: 330982500707
syscr: 138384532
syscw: 27652984
read_bytes: 22577841152
write_bytes: 284070445056
cancelled_write_bytes: 5431947264
";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(1024, "io", io);
    let reader = procfs.get_reader();
    let pidio = reader
        .read_pid_io(1024)
        .expect("Failed to read pid stat file");

    assert_eq!(pidio.rbytes, Some(22577841152));
    assert_eq!(pidio.wbytes, Some(284070445056));
}

#[test]
fn test_pid_cgroupv2() {
    let cgroup = b"0::/user.slice/user:with:colon.slice/session-3.scope
";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(1024, "cgroup", cgroup);
    let reader = procfs.get_reader();
    let cgroup = reader
        .read_pid_cgroup(1024)
        .expect("Failed to read pid cgroup file");

    assert_eq!(cgroup, "/user.slice/user:with:colon.slice/session-3.scope");
}

#[test]
fn test_pid_cgroupv1() {
    let cgroup = b"11:pids:/cgroup-path:colon
10:perf_event:/
9:hugetlb:/
8:cpu,cpuacct:/init.scope
7:blkio:/init.scope
6:freezer:/
5:cpuset:/
4:memory:/init.scope
3:devices:/init.scope
2:net_cls,net_prio:/
1:name=systemd:/init.scope";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(1024, "cgroup", cgroup);
    let reader = procfs.get_reader();
    let cgroup = reader
        .read_pid_cgroup(1024)
        .expect("Failed to read pid cgroup file");

    assert_eq!(cgroup, "/cgroup-path:colon");
}

#[test]
fn test_pid_cgroupv1and2() {
    let cgroup = b"11:pids:/cgroup-path:colon
10:perf_event:/
9:hugetlb:/
8:cpu,cpuacct:/init.scope
7:blkio:/init.scope
6:freezer:/
5:cpuset:/
4:memory:/init.scope
3:devices:/init.scope
2:net_cls,net_prio:/
1:name=systemd:/init.scope
0::/user.slice/user:with:colon.slice/session-3.scope";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(1024, "cgroup", cgroup);
    let reader = procfs.get_reader();
    let cgroup = reader
        .read_pid_cgroup(1024)
        .expect("Failed to read pid cgroup file");

    // When we see both cgroup v1 and v2, v2 takes precedence
    assert_eq!(cgroup, "/user.slice/user:with:colon.slice/session-3.scope");
}

#[test]
fn test_pid_cmdline() {
    // procfs cmdline format is nul bytes to separate with a trailing nul byte
    let cmdline = b"one\0--long-flag\0-f\0";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(123, "cmdline", cmdline);
    let reader = procfs.get_reader();
    let cmdline = reader
        .read_pid_cmdline(123)
        .expect("Failed to read pid cmdline file");

    assert_eq!(
        cmdline.expect("missing cmdline"),
        vec!["one", "--long-flag", "-f"]
    );
}

#[test]
fn test_pid_cmdline_loop() {
    // procfs cmdline format is nul bytes to separate with a trailing nul byte
    let cmdline = b"one\0--long-flag\0-f\0";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(123, "cmdline", cmdline);
    let reader = procfs.get_reader();
    for _ in 0..10000 {
        assert_eq!(
            reader
                .read_pid_cmdline(123)
                .expect("Failed to read pid cmdline file")
                .expect("missing cmdline"),
            vec!["one", "--long-flag", "-f"]
        );
    }
}

#[test]
fn test_read_all_pids() {
    let io = b"rchar: 1065638765191
wchar: 330982500707
syscr: 138384532
syscw: 27652984
read_bytes: 22577841152
write_bytes: 284070445056
cancelled_write_bytes: 5431947264
";

    let stat = b"74718 (bash) S 44786 74718 74718 34820 3561868 4194304 31346884 614468259 3 23315 14474 10887 1967513 339861 20 0 1 0 102803 224440320 12725 18446744073709551615 93972706258944 93972707333076 140732465518320 0 0 0 65536 3670020 1266777851 0 0 0 17 12 0 0 7 0 0 93972709432552 93972709479876 93972709523456 140732465525073 140732465525079 140732465525079 140732465528814 0";

    let cgroup = b"0::/user.slice/user-119756.slice/session-3.scope
";

    let status = b"Name:	below
Umask:	0022
State:	S (sleeping)
Tgid:	93041
Ngid:	0
Pid:	93041
PPid:	1
TracerPid:	0
Uid:	0	0	0	0
Gid:	0	0	0	0
FDSize:	256
Groups:
NStgid:	93041
NSpid:	93041
NSpgid:	93041
NSsid:	93041
VmPeak:	 1381848 kB
VmSize:	 1381532 kB
VmLck:	       4 kB
VmPin:	    6240 kB
VmHWM:	  128092 kB
VmRSS:	  124404 kB
RssAnon:	   99284 kB
RssFile:	   25120 kB
RssShmem:	      12 kB
VmData:	 1236636 kB
VmStk:	     132 kB
VmExe:	   60652 kB
VmLib:	    9096 kB
VmPTE:	    1840 kB
VmSwap:	    8812 kB
HugetlbPages:	      13 kB
CoreDumping:	0
THP_enabled:	1
Threads:	147
SigQ:	5/228815
SigPnd:	0000000000000000
ShdPnd:	0000000000000000
SigBlk:	0000000000000000
SigIgn:	0000000000000000
SigCgt:	00000001840054ec
CapInh:	0000000000000000
CapPrm:	0000003fffffffff
CapEff:	0000003fffffffff
CapBnd:	0000003fffffffff
CapAmb:	0000000000000000
NoNewPrivs:	0
Seccomp:	0
Speculation_Store_Bypass:	vulnerable
Cpus_allowed:	ffffff
Cpus_allowed_list:	0-23
Mems_allowed:	01
Mems_allowed_list:	0
voluntary_ctxt_switches:	2144888
nonvoluntary_ctxt_switches:	37733";

    // procfs cmdline format is nul bytes to separate with a trailing nul byte
    let cmdline = b"one\0two\0three\0";

    let procfs = TestProcfs::new();
    procfs.create_pid_file_with_content(1024, "stat", stat);
    procfs.create_pid_file_with_content(1024, "io", io);
    procfs.create_pid_file_with_content(1024, "status", status);
    procfs.create_pid_file_with_content(1024, "cgroup", cgroup);
    procfs.create_pid_file_with_content(1024, "cmdline", cmdline);
    procfs.create_pid_file_with_content(1025, "stat", stat);
    procfs.create_pid_file_with_content(1025, "status", status);
    procfs.create_pid_file_with_content(1025, "io", io);
    procfs.create_pid_file_with_content(1025, "cgroup", cgroup);
    procfs.create_pid_file_with_content(1025, "cmdline", cmdline);
    let reader = procfs.get_reader();

    let pidmap = reader.read_all_pids().expect("Failed to get all pids");

    assert_eq!(pidmap[&1024].stat.comm, Some("bash".to_string()));
    assert_eq!(
        pidmap[&1025].cgroup,
        "/user.slice/user-119756.slice/session-3.scope".to_string()
    );
    assert_eq!(
        pidmap[&1025]
            .cmdline_vec
            .as_ref()
            .expect("cmdline missing")
            .join(" "),
        "one two three"
    );
}

fn write_net_map(netsysfs: &TestProcfs) {
    for interface in &["enp1s0", "enp2s0"] {
        netsysfs.create_net_stat_file_with_content(interface, "collisions", 1);
        netsysfs.create_net_stat_file_with_content(interface, "multicast", 2);
        netsysfs.create_net_stat_file_with_content(interface, "rx_bytes", 2_087_593_014_826);
        netsysfs.create_net_stat_file_with_content(interface, "rx_compressed", 4);
        netsysfs.create_net_stat_file_with_content(interface, "rx_crc_errors", 5);
        netsysfs.create_net_stat_file_with_content(interface, "rx_dropped", 6);
        netsysfs.create_net_stat_file_with_content(interface, "rx_errors", 7);
        netsysfs.create_net_stat_file_with_content(interface, "rx_fifo_errors", 8);
        netsysfs.create_net_stat_file_with_content(interface, "rx_frame_errors", 9);
        netsysfs.create_net_stat_file_with_content(interface, "rx_length_errors", 10);
        netsysfs.create_net_stat_file_with_content(interface, "rx_missed_errors", 11);
        netsysfs.create_net_stat_file_with_content(interface, "rx_nohandler", 12);
        netsysfs.create_net_stat_file_with_content(interface, "rx_over_errors", 13);
        netsysfs.create_net_stat_file_with_content(interface, "rx_packets", 14);
        netsysfs.create_net_stat_file_with_content(interface, "tx_aborted_errors", 15);
        netsysfs.create_net_stat_file_with_content(interface, "tx_bytes", 1_401_221_862_430);
        netsysfs.create_net_stat_file_with_content(interface, "tx_carrier_errors", 17);
        netsysfs.create_net_stat_file_with_content(interface, "tx_compressed", 18);
        netsysfs.create_net_stat_file_with_content(interface, "tx_dropped", 19);
        netsysfs.create_net_stat_file_with_content(interface, "tx_errors", 20);
        netsysfs.create_net_stat_file_with_content(interface, "tx_fifo_errors", 21);
        netsysfs.create_net_stat_file_with_content(interface, "tx_heartbeat_errors", 22);
        netsysfs.create_net_stat_file_with_content(interface, "tx_packets", 23);
        netsysfs.create_net_stat_file_with_content(interface, "tx_window_errors", 24);
    }
}

fn write_net_snmp(netsysfs: &TestProcfs) {
    let snmp = b"Ip: Forwarding DefaultTTL InReceives InHdrErrors InAddrErrors ForwDatagrams InUnknownProtos InDiscards InDelivers OutRequests OutDiscards OutNoRoutes ReasmTimeout ReasmReqds ReasmOKs ReasmFails FragOKs FragFails FragCreates
Ip: 2 96 630036507 0 0 0 0 0 629963239 630016831 0 186411 0 0 0 0 0 0 0
Icmp: InMsgs InErrors InCsumErrors InDestUnreachs InTimeExcds InParmProbs InSrcQuenchs InRedirects InEchos InEchoReps InTimestamps InTimestampReps InAddrMasks InAddrMaskReps OutMsgs OutErrors OutDestUnreachs OutTimeExcds OutParmProbs OutSrcQuenchs OutRedirects OutEchos OutEchoReps OutTimestamps OutTimestampReps OutAddrMasks OutAddrMaskReps
Icmp: 31 31 0 31 0 0 0 0 0 0 0 0 0 0 31 0 31 0 0 0 0 0 0 0 0 0 0
IcmpMsg: InType3 OutType3
IcmpMsg: 31 31
Tcp: RtoAlgorithm RtoMin RtoMax MaxConn ActiveOpens PassiveOpens AttemptFails EstabResets CurrEstab InSegs OutSegs RetransSegs InErrs OutRsts InCsumErrors
Tcp: 1 200 120000 -1 54858563 40737307 4734320 5454512 820 2041813239 3258286962 2341081 955 16078320 39
Udp: InDatagrams NoPorts InErrors OutDatagrams RcvbufErrors SndbufErrors InCsumErrors IgnoredMulti
Udp: 51051 31 84 116484 84 0 0 19384
UdpLite: InDatagrams NoPorts InErrors OutDatagrams RcvbufErrors SndbufErrors InCsumErrors IgnoredMulti
UdpLite: 0 0 0 0 0 0 0 0";
    netsysfs.create_file_with_content("snmp", snmp);
}

fn write_net_snmp6(netsysfs: &TestProcfs) {
    let snmp6 = b"Ip6InReceives                   	1594971243
Ip6InHdrErrors                  	17032537
Ip6InTooBigErrors               	0
Ip6InNoRoutes                   	95
Ip6InAddrErrors                 	1333
Ip6InUnknownProtos              	0
Ip6InTruncatedPkts              	0
Ip6InDiscards                   	0
Ip6InDelivers                   	1500587362
Ip6OutForwDatagrams             	0
Ip6OutRequests                  	1495881793
Ip6OutDiscards                  	0
Ip6OutNoRoutes                  	626
Ip6ReasmTimeout                 	0
Ip6ReasmReqds                   	0
Ip6ReasmOKs                     	0
Ip6ReasmFails                   	0
Ip6FragOKs                      	0
Ip6FragFails                    	0
Ip6FragCreates                  	0
Ip6InMcastPkts                  	155122808
Ip6OutMcastPkts                 	1591270
Ip6InOctets                     	4493023649370
Ip6OutOctets                    	3622952718119
Ip6InMcastOctets                	19936651296
Ip6OutMcastOctets               	206033131
Ip6InBcastOctets                	0
Ip6OutBcastOctets               	0
Ip6InNoECTPkts                  	1594929854
Ip6InECT1Pkts                   	0
Ip6InECT0Pkts                   	207855
Ip6InCEPkts                     	0
Icmp6InMsgs                     	8121791
Icmp6InErrors                   	462
Icmp6OutMsgs                    	7763670
Icmp6OutErrors                  	0
Icmp6InCsumErrors               	0
Icmp6InDestUnreachs             	1251
Icmp6InPktTooBigs               	156
Icmp6InTimeExcds                	2
Icmp6InParmProblems             	0
Icmp6InEchos                    	24443
Icmp6InEchoReplies              	31691
Icmp6InGroupMembQueries         	0
Icmp6InGroupMembResponses       	0
Icmp6InGroupMembReductions      	0
Icmp6InRouterSolicits           	0
Icmp6InRouterAdvertisements     	549895
Icmp6InNeighborSolicits         	3742942
Icmp6InNeighborAdvertisements   	3771411
Icmp6InRedirects                	0
Icmp6InMLDv2Reports             	0
Icmp6OutDestUnreachs            	1266
Icmp6OutPktTooBigs              	0
Icmp6OutTimeExcds               	0
Icmp6OutParmProblems            	0
Icmp6OutEchos                   	31691
Icmp6OutEchoReplies             	24443
Icmp6OutGroupMembQueries        	0
Icmp6OutGroupMembResponses      	0
Icmp6OutGroupMembReductions     	0
Icmp6OutRouterSolicits          	1
Icmp6OutRouterAdvertisements    	0
Icmp6OutNeighborSolicits        	3963540
Icmp6OutNeighborAdvertisements  	3742708
Icmp6OutRedirects               	0
Icmp6OutMLDv2Reports            	21
Icmp6InType1                    	1251
Icmp6InType2                    	156
Icmp6InType3                    	2
Icmp6InType128                  	24443
Icmp6InType129                  	31691
Icmp6InType134                  	549895
Icmp6InType135                  	3742942
Icmp6InType136                  	3771411
Icmp6OutType1                   	1266
Icmp6OutType128                 	31691
Icmp6OutType129                 	24443
Icmp6OutType133                 	1
Icmp6OutType135                 	3963540
Icmp6OutType136                 	3742708
Icmp6OutType143                 	21
Udp6InDatagrams                 	159518170
Udp6NoPorts                     	47
Udp6InErrors                    	2163583
Udp6OutDatagrams                	3106145
Udp6RcvbufErrors                	2163583
Udp6SndbufErrors                	0
Udp6InCsumErrors                	0
Udp6IgnoredMulti                	0
UdpLite6InDatagrams             	0
UdpLite6NoPorts                 	0
UdpLite6InErrors                	0
UdpLite6OutDatagrams            	0
UdpLite6RcvbufErrors            	0
UdpLite6SndbufErrors            	0
UdpLite6InCsumErrors            	0";

    netsysfs.create_file_with_content("snmp6", snmp6);
}

fn write_net_netstat(netsysfs: &TestProcfs) {
    let netstat = b"TcpExt: SyncookiesSent SyncookiesRecv SyncookiesFailed EmbryonicRsts PruneCalled RcvPruned OfoPruned OutOfWindowIcmps LockDroppedIcmps ArpFilter TW TWRecycled TWKilled PAWSActive PAWSEstab DelayedACKs DelayedACKLocked DelayedACKLost ListenOverflows ListenDrops TCPHPHits TCPPureAcks TCPHPAcks TCPRenoRecovery TCPSackRecovery TCPSACKReneging TCPSACKReorder TCPRenoReorder TCPTSReorder TCPFullUndo TCPPartialUndo TCPDSACKUndo TCPLossUndo TCPLostRetransmit TCPRenoFailures TCPSackFailures TCPLossFailures TCPFastRetrans TCPSlowStartRetrans TCPTimeouts TCPLossProbes TCPLossProbeRecovery TCPRenoRecoveryFail TCPSackRecoveryFail TCPRcvCollapsed TCPBacklogCoalesce TCPDSACKOldSent TCPDSACKOfoSent TCPDSACKRecv TCPDSACKOfoRecv TCPAbortOnData TCPAbortOnClose TCPAbortOnMemory TCPAbortOnTimeout TCPAbortOnLinger TCPAbortFailed TCPMemoryPressures TCPMemoryPressuresChrono TCPSACKDiscard TCPDSACKIgnoredOld TCPDSACKIgnoredNoUndo TCPSpuriousRTOs TCPMD5NotFound TCPMD5Unexpected TCPMD5Failure TCPSackShifted TCPSackMerged TCPSackShiftFallback TCPBacklogDrop PFMemallocDrop TCPMinTTLDrop TCPDeferAcceptDrop IPReversePathFilter TCPTimeWaitOverflow TCPReqQFullDoCookies TCPReqQFullDrop TCPRetransFail TCPRcvCoalesce TCPOFOQueue TCPOFODrop TCPOFOMerge TCPChallengeACK TCPSYNChallenge TCPFastOpenActive TCPFastOpenActiveFail TCPFastOpenPassive TCPFastOpenPassiveFail TCPFastOpenListenOverflow TCPFastOpenCookieReqd TCPFastOpenBlackhole TCPSpuriousRtxHostQueues BusyPollRxPackets TCPAutoCorking TCPFromZeroWindowAdv TCPToZeroWindowAdv TCPWantZeroWindowAdv TCPSynRetrans TCPOrigDataSent TCPHystartTrainDetect TCPHystartTrainCwnd TCPHystartDelayDetect TCPHystartDelayCwnd TCPACKSkippedSynRecv TCPACKSkippedPAWS TCPACKSkippedSeq TCPACKSkippedFinWait2 TCPACKSkippedTimeWait TCPACKSkippedChallenge TCPWinProbe TCPKeepAlive TCPMTUPFail TCPMTUPSuccess TCPDelivered TCPDeliveredCE TCPAckCompressed TCPZeroWindowDrop TCPRcvQDrop TCPWqueueTooBig
TcpExt: 734 734 72186 207 32430 0 0 0 0 0 44799169 718071 0 0 477 13818919 85426 82837 36278 36278 648162608 229195403 644151467 5678 0 0 0 241 25 16 20 1 56568 56306 6714 0 9590 68973 1260322 424264 0 0 2979 0 0 10960020 0 0 0 0 4857068 1755828 0 129 0 0 0 0 0 0 0 1433 0 0 0 0 0 0 1 0 0 0 0 0 734 0 0 113000427 329930 0 49 2829 917 8328485 589326 0 0 0 0 965 956 0 26637 2478340 2478376 8121684 56007 2362573793 123903 4672843 604 50392 140 42 1981 0 36 53 17509 21875 0 136 2403045772 0 0 0 0 0
IpExt: InNoRoutes InTruncatedPkts InMcastPkts OutMcastPkts InBcastPkts OutBcastPkts InOctets OutOctets InMcastOctets OutMcastOctets InBcastOctets OutBcastOctets InCsumErrors InNoECTPkts InECT1Pkts InECT0Pkts InCEPkts ReasmOverlaps
IpExt: 0 0 72982 72982 26227 6841 3021953584043 3021942373821 11953543 11953543 12283455 1121095 0 630134902 0 0 0 0";

    netsysfs.create_file_with_content("netstat", netstat);
}

#[test]
fn test_read_net_stat() {
    let netsysfs = TestProcfs::new();
    write_net_snmp(&netsysfs);
    write_net_snmp6(&netsysfs);
    write_net_netstat(&netsysfs);
    write_net_map(&netsysfs);
    let netstat = netsysfs
        .get_net_reader()
        .read_netstat()
        .expect("Fail to get NetStat");
    verify_tcp(&netstat);
    verify_tcp_ext(&netstat);
    verify_ip(&netstat);
    verify_ip_ext(&netstat);
    verify_ip6(&netstat);
    verify_icmp(&netstat);
    verify_icmp6(&netstat);
    verify_udp(&netstat);
    verify_udp6(&netstat);
    verify_interfaces(&netstat);
}

#[test]
fn test_read_enoent() {
    let netsysfs = TestProcfs::new();
    write_net_map(&netsysfs);

    let netstat = netsysfs
        .get_net_reader()
        .read_netstat()
        .expect("Fail to get NetStat");
    verify_interfaces(&netstat);
    assert_eq!(netstat.tcp, None);
    assert_eq!(netstat.tcp_ext, None);
    assert_eq!(netstat.ip, None);
    assert_eq!(netstat.ip_ext, None);
    assert_eq!(netstat.ip6, None);
    assert_eq!(netstat.icmp, None);
    assert_eq!(netstat.icmp6, None);
    assert_eq!(netstat.udp, None);
    assert_eq!(netstat.udp6, None);
}

#[test]
fn test_read_bad_file() {
    let netsysfs = TestProcfs::new();
    write_net_map(&netsysfs);
    netsysfs.create_file_with_content("snmp", b"bad\nfile");

    let err = netsysfs.get_net_reader().read_netstat().unwrap_err();
    assert!(matches!(err, crate::Error::InvalidFileFormat(_)));
}

fn verify_tcp(netstat: &NetStat) {
    let tcp = netstat.tcp.as_ref().expect("Fail to collect tcp stats");
    assert_eq!(tcp.active_opens, Some(54_858_563));
    assert_eq!(tcp.passive_opens, Some(40_737_307));
    assert_eq!(tcp.attempt_fails, Some(4_734_320));
    assert_eq!(tcp.estab_resets, Some(5_454_512));
    assert_eq!(tcp.curr_estab, Some(820));
    assert_eq!(tcp.in_segs, Some(2_041_813_239));
    assert_eq!(tcp.out_segs, Some(3_258_286_962));
    assert_eq!(tcp.retrans_segs, Some(2_341_081));
    assert_eq!(tcp.in_errs, Some(955));
    assert_eq!(tcp.out_rsts, Some(16_078_320));
    assert_eq!(tcp.in_csum_errors, Some(39));
}

fn verify_tcp_ext(netstat: &NetStat) {
    let tcp_ext = netstat
        .tcp_ext
        .as_ref()
        .expect("Fail to collect TcpExt stats");
    assert_eq!(tcp_ext.syncookies_sent, Some(734));
    assert_eq!(tcp_ext.syncookies_recv, Some(734));
    assert_eq!(tcp_ext.syncookies_failed, Some(72186));
    assert_eq!(tcp_ext.embryonic_rsts, Some(207));
    assert_eq!(tcp_ext.prune_called, Some(32430));
    assert_eq!(tcp_ext.tw, Some(44_799_169));
    assert_eq!(tcp_ext.paws_estab, Some(477));
    assert_eq!(tcp_ext.delayed_acks, Some(13_818_919));
    assert_eq!(tcp_ext.delayed_ack_locked, Some(85426));
    assert_eq!(tcp_ext.delayed_ack_lost, Some(82837));
    assert_eq!(tcp_ext.listen_overflows, Some(36278));
    assert_eq!(tcp_ext.listen_drops, Some(36278));
    assert_eq!(tcp_ext.tcp_hp_hits, Some(648_162_608));
    assert_eq!(tcp_ext.tcp_pure_acks, Some(229_195_403));
    assert_eq!(tcp_ext.tcp_hp_acks, Some(644_151_467));
    assert_eq!(tcp_ext.tcp_reno_recovery, Some(5678));
    assert_eq!(tcp_ext.tcp_reno_reorder, Some(241));
    assert_eq!(tcp_ext.tcp_ts_reorder, Some(25));
    assert_eq!(tcp_ext.tcp_full_undo, Some(16));
    assert_eq!(tcp_ext.tcp_partial_undo, Some(20));
    assert_eq!(tcp_ext.tcp_dsack_undo, Some(1));
    assert_eq!(tcp_ext.tcp_loss_undo, Some(56568));
    assert_eq!(tcp_ext.tcp_lost_retransmit, Some(56306));
    assert_eq!(tcp_ext.tcp_reno_failures, Some(6714));
    assert_eq!(tcp_ext.tcp_loss_failures, Some(9590));
    assert_eq!(tcp_ext.tcp_fast_retrans, Some(68973));
    assert_eq!(tcp_ext.tcp_slow_start_retrans, Some(1_260_322));
    assert_eq!(tcp_ext.tcp_timeouts, Some(424_264));
}

fn verify_ip(netstat: &NetStat) {
    let ip = netstat.ip.as_ref().expect("Fail to collect ip stats");
    assert_eq!(ip.forwarding, Some(2));
    assert_eq!(ip.in_receives, Some(630_036_507));
    assert_eq!(ip.forw_datagrams, Some(0));
    assert_eq!(ip.in_discards, Some(0));
    assert_eq!(ip.in_delivers, Some(629_963_239));
    assert_eq!(ip.out_requests, Some(630_016_831));
    assert_eq!(ip.out_discards, Some(0));
    assert_eq!(ip.out_no_routes, Some(186_411));
}

fn verify_ip_ext(netstat: &NetStat) {
    let ip_ext = netstat
        .ip_ext
        .as_ref()
        .expect("Fail to collect IpExt stats");
    assert_eq!(ip_ext.in_mcast_pkts, Some(72982));
    assert_eq!(ip_ext.out_mcast_pkts, Some(72982));
    assert_eq!(ip_ext.in_bcast_pkts, Some(26227));
    assert_eq!(ip_ext.out_bcast_pkts, Some(6841));
    assert_eq!(ip_ext.in_octets, Some(3_021_953_584_043));
    assert_eq!(ip_ext.out_octets, Some(3_021_942_373_821));
    assert_eq!(ip_ext.in_mcast_octets, Some(11_953_543));
    assert_eq!(ip_ext.out_mcast_octets, Some(11_953_543));
    assert_eq!(ip_ext.in_bcast_octets, Some(12_283_455));
    assert_eq!(ip_ext.out_bcast_octets, Some(1_121_095));
    assert_eq!(ip_ext.in_no_ect_pkts, Some(630_134_902));
}

fn verify_ip6(netstat: &NetStat) {
    let ip6 = netstat.ip6.as_ref().expect("Fail to collect ip6 stats");
    assert_eq!(ip6.in_receives, Some(1_594_971_243));
    assert_eq!(ip6.in_hdr_errors, Some(17_032_537));
    assert_eq!(ip6.in_no_routes, Some(95));
    assert_eq!(ip6.in_addr_errors, Some(1333));
    assert_eq!(ip6.in_discards, Some(0));
    assert_eq!(ip6.in_delivers, Some(1_500_587_362));
    assert_eq!(ip6.out_forw_datagrams, Some(0));
    assert_eq!(ip6.out_requests, Some(1_495_881_793));
    assert_eq!(ip6.out_no_routes, Some(626));
    assert_eq!(ip6.in_mcast_pkts, Some(155_122_808));
    assert_eq!(ip6.out_mcast_pkts, Some(1_591_270));
    assert_eq!(ip6.in_octets, Some(4_493_023_649_370));
    assert_eq!(ip6.out_octets, Some(3_622_952_718_119));
    assert_eq!(ip6.in_mcast_octets, Some(19_936_651_296));
    assert_eq!(ip6.out_mcast_octets, Some(206_033_131));
    assert_eq!(ip6.in_bcast_octets, Some(0));
    assert_eq!(ip6.out_bcast_octets, Some(0));
}

fn verify_icmp(netstat: &NetStat) {
    let icmp = netstat.icmp.as_ref().expect("Fail to collect icmp stats");
    assert_eq!(icmp.in_msgs, Some(31));
    assert_eq!(icmp.in_errors, Some(31));
    assert_eq!(icmp.in_dest_unreachs, Some(31));
    assert_eq!(icmp.out_msgs, Some(31));
    assert_eq!(icmp.out_errors, Some(0));
    assert_eq!(icmp.out_dest_unreachs, Some(31));
}

fn verify_icmp6(netstat: &NetStat) {
    let icmp6 = netstat.icmp6.as_ref().expect("Fail to collect icmp6 stats");
    assert_eq!(icmp6.in_msgs, Some(812_1791));
    assert_eq!(icmp6.in_errors, Some(462));
    assert_eq!(icmp6.out_msgs, Some(7_763_670));
    assert_eq!(icmp6.out_errors, Some(0));
    assert_eq!(icmp6.in_dest_unreachs, Some(1251));
    assert_eq!(icmp6.out_dest_unreachs, Some(1266));
}

fn verify_udp(netstat: &NetStat) {
    let udp = netstat.udp.as_ref().expect("Fail to collect udp stats");
    assert_eq!(udp.in_datagrams, Some(51051));
    assert_eq!(udp.no_ports, Some(31));
    assert_eq!(udp.in_errors, Some(84));
    assert_eq!(udp.out_datagrams, Some(116_484));
    assert_eq!(udp.rcvbuf_errors, Some(84));
    assert_eq!(udp.sndbuf_errors, Some(0));
    assert_eq!(udp.ignored_multi, Some(19384));
}

fn verify_udp6(netstat: &NetStat) {
    let udp6 = netstat.udp6.as_ref().expect("Fail to collect udp6 stats");
    assert_eq!(udp6.in_datagrams, Some(159_518_170));
    assert_eq!(udp6.no_ports, Some(47));
    assert_eq!(udp6.in_errors, Some(2_163_583));
    assert_eq!(udp6.out_datagrams, Some(3_106_145));
    assert_eq!(udp6.rcvbuf_errors, Some(2_163_583));
    assert_eq!(udp6.sndbuf_errors, Some(0));
    assert_eq!(udp6.in_csum_errors, Some(0));
    assert_eq!(udp6.ignored_multi, Some(0));
}

fn verify_interfaces(netstat: &NetStat) {
    let netmap = netstat
        .interfaces
        .as_ref()
        .expect("Fail to collect interfaces stats");
    for interface in &["enp1s0", "enp2s0"] {
        let netstat = netmap.get(*interface).expect("Fail to find interface");
        assert_eq!(netstat.collisions, Some(1));
        assert_eq!(netstat.multicast, Some(2));
        assert_eq!(netstat.rx_bytes, Some(2_087_593_014_826));
        assert_eq!(netstat.rx_compressed, Some(4));
        assert_eq!(netstat.rx_crc_errors, Some(5));
        assert_eq!(netstat.rx_dropped, Some(6));
        assert_eq!(netstat.rx_errors, Some(7));
        assert_eq!(netstat.rx_fifo_errors, Some(8));
        assert_eq!(netstat.rx_frame_errors, Some(9));
        assert_eq!(netstat.rx_length_errors, Some(10));
        assert_eq!(netstat.rx_missed_errors, Some(11));
        assert_eq!(netstat.rx_nohandler, Some(12));
        assert_eq!(netstat.rx_over_errors, Some(13));
        assert_eq!(netstat.rx_packets, Some(14));
        assert_eq!(netstat.tx_aborted_errors, Some(15));
        assert_eq!(netstat.tx_bytes, Some(1_401_221_862_430));
        assert_eq!(netstat.tx_carrier_errors, Some(17));
        assert_eq!(netstat.tx_compressed, Some(18));
        assert_eq!(netstat.tx_dropped, Some(19));
        assert_eq!(netstat.tx_errors, Some(20));
        assert_eq!(netstat.tx_fifo_errors, Some(21));
        assert_eq!(netstat.tx_heartbeat_errors, Some(22));
        assert_eq!(netstat.tx_packets, Some(23));
        assert_eq!(netstat.tx_window_errors, Some(24));
    }
}

#[test]
fn test_read_pid_exec() {
    let procfs = TestProcfs::new();
    let res = procfs.create_pid_file_with_link(1234, "exe_path", "exe");
    let reader = procfs.get_reader();
    let exe_path = reader
        .read_pid_exe_path(1234)
        .expect("Failed to read pid exe file");

    assert_eq!(exe_path, res);
}

#[test]
fn test_read_mountinfo() {
    let mountinfo = b"
    56 1 0:26 / / rw,relatime shared:1 - btrfs /dev/vda3 rw,compress-force=zstd:3,discard,space_cache,subvolid=5,subvol=/
    31 20 0:7 / /sys/kernel/debug rw,relatime shared:15 - debugfs debugfs rw,mode=755
    36 56 253:1 / /boot rw,relatime shared:20 - ext4 /dev/vda1 rw";

    let procfs = TestProcfs::new();
    procfs.create_dir("self");
    procfs.create_file_with_content("self/mountinfo", mountinfo);

    let reader = procfs.get_reader();
    let mount_info_map = reader
        .read_mount_info_map()
        .expect("Failed to read mount info file");

    let mount_info_vda3 = mount_info_map
        .get("/dev/vda3")
        .expect("Mount Info Map does not contain vda3");
    assert_eq!(mount_info_vda3.mnt_id, Some(56));
    assert_eq!(mount_info_vda3.parent_mnt_id, Some(1));
    assert_eq!(
        mount_info_vda3
            .majmin
            .as_ref()
            .expect("Unable to obtain majmin"),
        "0:26"
    );
    assert_eq!(
        mount_info_vda3
            .root
            .as_ref()
            .expect("Unable to obtain root"),
        "/"
    );
    assert_eq!(
        mount_info_vda3
            .mount_point
            .as_ref()
            .expect("Unable to obtain mount_point"),
        "/"
    );
    assert_eq!(
        mount_info_vda3
            .mount_options
            .as_ref()
            .expect("Unable to obtain mount_options"),
        "rw,relatime"
    );
    assert_eq!(
        mount_info_vda3
            .fs_type
            .as_ref()
            .expect("Unable to obtain fs_type"),
        "btrfs"
    );
    assert_eq!(
        mount_info_vda3
            .mount_source
            .as_ref()
            .expect("Unable to obtain mount_source"),
        "/dev/vda3"
    );

    let mount_info_debugfs = mount_info_map
        .get("debugfs")
        .expect("Mount Info Map does not contain debugfs");
    assert_eq!(mount_info_debugfs.mnt_id, Some(31));
    assert_eq!(mount_info_debugfs.parent_mnt_id, Some(20));
    assert_eq!(
        mount_info_debugfs
            .majmin
            .as_ref()
            .expect("Unable to obtain majmin"),
        "0:7"
    );
    assert_eq!(
        mount_info_debugfs
            .root
            .as_ref()
            .expect("Unable to obtain root"),
        "/"
    );
    assert_eq!(
        mount_info_debugfs
            .mount_point
            .as_ref()
            .expect("Unable to obtain mount_point"),
        "/sys/kernel/debug"
    );
    assert_eq!(
        mount_info_debugfs
            .mount_options
            .as_ref()
            .expect("Unable to obtain mount_options"),
        "rw,relatime"
    );
    assert_eq!(
        mount_info_debugfs
            .fs_type
            .as_ref()
            .expect("Unable to obtain fs_type"),
        "debugfs"
    );
    assert_eq!(
        mount_info_debugfs
            .mount_source
            .as_ref()
            .expect("Unable to obtain mount_source"),
        "debugfs"
    );

    let mount_info_vda1 = mount_info_map
        .get("/dev/vda1")
        .expect("Mount Info Map does not contain vda1");
    assert_eq!(mount_info_vda1.mnt_id, Some(36));
    assert_eq!(mount_info_vda1.parent_mnt_id, Some(56));
    assert_eq!(
        mount_info_vda1
            .majmin
            .as_ref()
            .expect("Unable to obtain majmin"),
        "253:1"
    );
    assert_eq!(
        mount_info_vda1
            .root
            .as_ref()
            .expect("Unable to obtain root"),
        "/"
    );
    assert_eq!(
        mount_info_vda1
            .mount_point
            .as_ref()
            .expect("Unable to obtain mount_point"),
        "/boot"
    );
    assert_eq!(
        mount_info_vda1
            .mount_options
            .as_ref()
            .expect("Unable to obtain mount_options"),
        "rw,relatime"
    );
    assert_eq!(
        mount_info_vda1
            .fs_type
            .as_ref()
            .expect("Unable to obtain fs_type"),
        "ext4"
    );
    assert_eq!(
        mount_info_vda1
            .mount_source
            .as_ref()
            .expect("Unable to obtain mount_source"),
        "/dev/vda1"
    );
}