depdive 0.1.0

Rust dependency analysis tool
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
//! This module abstracts analyses for dependency update review.

use crate::cratesio::CratesioAnalyzer;
use anyhow::{anyhow, Result};
use geiger::RsFileMetrics;
use git2::{build::CheckoutBuilder, Delta, Diff};
use guppy::graph::{
    cargo::{CargoOptions, CargoResolverVersion},
    feature::{FeatureFilter, StandardFeatures},
    summaries::{
        diff::{SummaryDiff, SummaryDiffStatus},
        Summary, SummaryId,
    },
    BuildTargetId, PackageGraph,
};
use semver::Version;
use serde::{Deserialize, Serialize};
use std::{
    cell::RefCell,
    collections::{HashMap, HashSet},
    ops::Sub,
    path::PathBuf,
};
use url::Url;

use crate::advisory::AdvisoryLookup;
use crate::diff::{CrateSourceDiffReport, DiffAnalyzer, HeadCommitNotFoundError, VersionDiffInfo};
use crate::guppy_wrapper::get_direct_dependencies;

#[derive(Debug, Clone)]
pub enum DependencyType {
    Host,
    Target,
}

#[derive(Debug, Clone)]
pub struct DependencyChangeInfo {
    pub name: String,
    pub dep_type: DependencyType,
    pub old_version_info: Option<VersionSourceInfo>, // None when a dep is added
    pub new_version_info: Option<VersionSourceInfo>, // None when a dep is removed
}

#[derive(Debug, Clone)]
pub struct VersionSourceInfo {
    // TODO: accomodate to specify source and commits here for cases like
    // crate_a updating from commit_a to commit_b from repo_a
    pub version: Version,
    pub repository: Option<String>,
    pub build_script_paths: HashSet<String>,
}

#[derive(Debug, Clone)]
pub struct UpdateReviewReport {
    pub dep_update_review_reports: Vec<DepUpdateReviewReport>,
    pub version_conflicts: Vec<VersionConflict>,
}

#[derive(Debug, Clone)]
pub struct DepUpdateReviewReport {
    pub name: String,
    pub prior_version: VersionInfo,
    pub updated_version: VersionInfo,
    pub diff_stats: Option<VersionDiffStats>,
}

#[derive(Debug, Clone)]
pub struct VersionInfo {
    pub name: String,
    pub version: Version,
    pub downloads: u64,
    pub crate_source_diff_report: Option<CrateSourceDiffReport>, // We can optionally present this report
    // based on the use case
    pub known_advisories: Vec<CrateVersionRustSecAdvisory>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct CrateVersionRustSecAdvisory {
    pub id: String,
    pub title: String,
    pub url: Option<Url>,
}

pub struct VersionChangeInfo {
    pub old_version: Option<Version>, // None when a dep is added
    pub new_version: Option<Version>, // None when a dep is removed
}

#[derive(Debug, Clone)]
pub struct VersionDiffStats {
    pub files_changed: HashSet<String>,
    pub rust_files_changed: u64,
    pub insertions: u64,
    pub deletions: u64,
    pub modified_build_scripts: HashSet<String>, // Empty indicates no change in build scripts
    pub unsafe_file_changed: Vec<FileUnsafeChangeStats>,
}

#[derive(Debug, Clone)]
pub enum VersionConflict {
    // Case 1: A dep has two copies of different version
    //         as a direct and a transitive dep in the graph
    DirectTransitiveVersionConflict {
        name: String,
        direct_dep_version: Version,
        transitive_dep_version: Version,
    },
}

#[derive(Debug, Clone, PartialEq)]
pub enum FileUnsafeCodeChangeStatus {
    UnsafeCounterModified, // when we have a delta in unsafe counter
    NoUnsafeCode,          // changed file(s) contained no unsafe code before and after change
    AllUnsafeCodeRemoved,  // there was unsafe code before the change that all got removed
    Uncertain,             // changed files contain unsafe code,
                           // TODO: our tool isn't that smart yet to verify if unsafe code lines have been changed
}

#[derive(Debug, Clone)]
pub struct FileUnsafeChangeStats {
    pub file: String,
    pub change_type: Delta,
    pub unsafe_change_status: FileUnsafeCodeChangeStatus,
    pub unsafe_delta: UnsafeDelta, // Delta in Unsafe counter:
    // Unsafe Delta cannot detect the case where a line is modified
    // in which case the unsafe counter before and after will be the same
    // TODO: detect if unsafe code has been modified in a diff

    // Below field indicate the post state of an added/modified file
    // and will be None in case of a deleted file
    pub unsafe_status: Option<RsFileMetrics>,
}

#[derive(Serialize, Deserialize, Debug, Default, Clone)]
pub struct UnsafeDelta {
    pub functions: i64,
    pub expressions: i64,
    pub impls: i64,
    pub traits: i64,
    pub methods: i64,
}

impl UnsafeDelta {
    pub fn has_no_change(&self) -> bool {
        self.expressions == 0
            && self.functions == 0
            && self.impls == 0
            && self.traits == 0
            && self.methods == 0
    }
}

impl Sub for UnsafeDelta {
    type Output = Self;

    fn sub(self, rhs: Self) -> Self {
        Self {
            functions: self.functions - rhs.functions,
            expressions: self.expressions - rhs.expressions,
            impls: self.impls - rhs.impls,
            traits: self.traits - rhs.traits,
            methods: self.methods - rhs.methods,
        }
    }
}

pub struct UpdateAnalyzer {
    // the key will be crate name, old version, and updated version
    cache: RefCell<HashMap<(String, Version, Version), DepUpdateReviewReport>>,
}

impl UpdateAnalyzer {
    pub fn new() -> Self {
        Self {
            cache: RefCell::new(HashMap::new()),
        }
    }

    /// Given two guppy graph
    /// determines the updated dependencies
    /// and provides a update review report
    pub fn analyze_updates(
        self,
        prior_graph: &PackageGraph,
        post_graph: &PackageGraph,
    ) -> Result<UpdateReviewReport> {
        // Analyzing with default options
        self.analyze_updates_with_options(
            prior_graph,
            post_graph,
            &Self::get_default_cargo_options(),
            StandardFeatures::All,
        )
    }

    pub fn analyze_updates_with_options<'a>(
        self,
        prior_graph: &'a PackageGraph,
        post_graph: &'a PackageGraph,
        cargo_opts: &CargoOptions,
        feature_filter: impl FeatureFilter<'a>,
    ) -> Result<UpdateReviewReport> {
        // Get the changed dependency stats
        let dep_change_infos =
            Self::compare_pacakge_graphs(prior_graph, post_graph, cargo_opts, feature_filter)?;

        // Filter version updates
        let updated_deps: Vec<DependencyChangeInfo> = dep_change_infos
            .iter()
            .filter(
                |dep| match (dep.old_version_info.as_ref(), dep.new_version_info.as_ref()) {
                    (Some(old), Some(new)) => new.version > old.version,
                    _ => false,
                },
            )
            .cloned()
            .collect();
        // TODO: add reporting for version downgrades, add, and remove

        // clean cache if there's anything in a weird scenario
        // And store all the distinct update review in the cache
        self.cache.borrow_mut().clear();
        for dep in &updated_deps {
            self.get_update_review(dep)?;
        }
        let dep_update_review_reports: Vec<DepUpdateReviewReport> =
            self.cache.borrow_mut().drain().map(|(_k, v)| v).collect();

        let version_conflicts: Vec<VersionConflict> =
            Self::determine_version_conflict(&updated_deps, post_graph);

        Ok(UpdateReviewReport {
            dep_update_review_reports,
            version_conflicts,
        })
    }

    fn determine_version_conflict(
        dep_change_infos: &[DependencyChangeInfo],
        graph: &PackageGraph,
    ) -> Vec<VersionConflict> {
        let mut conflicts: Vec<VersionConflict> = Vec::new();

        // Check for direct-transitive version conflict
        let direct_dependencies = get_direct_dependencies(graph);
        for dep_change_info in dep_change_infos {
            if let (Some(package), Some(new_version_info)) = (
                direct_dependencies
                    .iter()
                    .find(|dep| dep.name() == dep_change_info.name),
                dep_change_info.new_version_info.clone(),
            ) {
                if *package.version() != new_version_info.version {
                    conflicts.push(VersionConflict::DirectTransitiveVersionConflict {
                        name: package.name().to_string(),
                        direct_dep_version: package.version().clone(),
                        transitive_dep_version: new_version_info.version,
                    })
                }
            }
        }

        conflicts
    }

    fn get_default_cargo_options() -> CargoOptions<'static> {
        let mut cargo_opts = CargoOptions::new();
        cargo_opts.set_version(CargoResolverVersion::V2);
        cargo_opts.set_include_dev(true);
        cargo_opts
    }

    fn compare_pacakge_graphs<'a>(
        prior_graph: &'a PackageGraph,
        post_graph: &'a PackageGraph,
        cargo_opts: &CargoOptions,
        mut feature_filter: impl FeatureFilter<'a>,
    ) -> Result<Vec<DependencyChangeInfo>> {
        let prior_summary = Self::get_summary(prior_graph, &mut feature_filter, cargo_opts)?;
        let post_summary = Self::get_summary(post_graph, &mut feature_filter, cargo_opts)?;
        let diff = SummaryDiff::new(&prior_summary, &post_summary);

        let mut dep_change_infos: Vec<DependencyChangeInfo> = Vec::new();

        for (summary_id, summary_diff_status) in diff.host_packages.changed.iter() {
            dep_change_infos.push(Self::get_dependency_change_info(
                prior_graph,
                post_graph,
                summary_id,
                summary_diff_status,
                DependencyType::Host,
            )?);
        }

        for (summary_id, summary_diff_status) in diff.target_packages.changed.iter() {
            dep_change_infos.push(Self::get_dependency_change_info(
                prior_graph,
                post_graph,
                summary_id,
                summary_diff_status,
                DependencyType::Target,
            )?);
        }

        Ok(dep_change_infos)
    }

    fn get_summary<'a>(
        graph: &'a PackageGraph,
        feature_filter: impl FeatureFilter<'a>,
        cargo_opts: &CargoOptions,
    ) -> Result<Summary> {
        let summary = graph
            .resolve_all()
            .to_feature_set(feature_filter)
            .into_cargo_set(cargo_opts)?
            .to_summary(cargo_opts)?;
        Ok(summary)
    }

    fn get_dependency_change_info(
        prior_graph: &PackageGraph,
        post_graph: &PackageGraph,
        summary_id: &SummaryId,
        summary_diff_status: &SummaryDiffStatus,
        dep_type: DependencyType,
    ) -> Result<DependencyChangeInfo> {
        let name = summary_id.name.clone();
        let version_change_info =
            Self::get_version_change_info_from_summarydiff(summary_id, summary_diff_status);

        let mut old_version_info: Option<VersionSourceInfo> = None;
        if let Some(old_version) = version_change_info.old_version {
            let repository = Self::get_repository_from_graph(prior_graph, &name);
            let mut build_script_paths: HashSet<String> = HashSet::new();
            Self::get_build_script_paths(prior_graph, &name)?
                .into_iter()
                .for_each(|x| {
                    build_script_paths.insert(x);
                });

            old_version_info = Some(VersionSourceInfo {
                version: old_version,
                repository,
                build_script_paths,
            });
        }

        let mut new_version_info: Option<VersionSourceInfo> = None;
        if let Some(new_version) = version_change_info.new_version {
            let repository = Self::get_repository_from_graph(post_graph, &name);

            let mut build_script_paths: HashSet<String> = HashSet::new();
            Self::get_build_script_paths(post_graph, &name)?
                .into_iter()
                .for_each(|x| {
                    build_script_paths.insert(x);
                });

            new_version_info = Some(VersionSourceInfo {
                version: new_version,
                repository,
                build_script_paths,
            })
        }

        Ok(DependencyChangeInfo {
            name,
            dep_type,
            old_version_info,
            new_version_info,
        })
    }

    fn get_build_script_paths(graph: &PackageGraph, crate_name: &str) -> Result<HashSet<String>> {
        let package = graph
            .packages()
            .find(|p| p.name() == crate_name)
            .ok_or_else(|| anyhow!("crate not present in package graph"))?;

        let package_path = package
            .manifest_path()
            .parent()
            .ok_or_else(|| anyhow!("invalid Cargo.toml path"))?;

        let build_script_paths: Result<HashSet<String>> = package
            .build_targets()
            .filter(|b| b.id() == BuildTargetId::BuildScript)
            .map(|b| Ok(b.path().strip_prefix(package_path)?.as_str().to_string()))
            .collect();

        build_script_paths
    }

    fn get_version_change_info_from_summarydiff(
        summary_id: &SummaryId,
        summary_diff_status: &SummaryDiffStatus,
    ) -> VersionChangeInfo {
        let mut old_version: Option<Version> = None;
        let mut new_version: Option<Version> = None;

        match summary_diff_status {
            SummaryDiffStatus::Added { .. } => {
                new_version = Some(summary_id.version.clone());
            }
            SummaryDiffStatus::Modified {
                old_version: version,
                ..
            } => {
                new_version = Some(summary_id.version.clone());
                if version.is_some() {
                    old_version = Some(version.unwrap().clone());
                }
            }
            SummaryDiffStatus::Removed { .. } => {
                old_version = Some(summary_id.version.clone());
            }
        }

        VersionChangeInfo {
            old_version,
            new_version,
        }
    }

    fn get_repository_from_graph(graph: &PackageGraph, crate_name: &str) -> Option<String> {
        let package = graph.packages().find(|p| p.name() == crate_name)?;
        let repository = package.repository()?.to_string();
        Some(repository)
    }

    fn get_update_review(
        &self,
        dep_change_info: &DependencyChangeInfo,
    ) -> Result<DepUpdateReviewReport> {
        if let (Some(old_version_info), Some(new_version_info)) = (
            dep_change_info.old_version_info.as_ref(),
            dep_change_info.new_version_info.as_ref(),
        ) {
            let new_version = &new_version_info.version;
            let old_version = &old_version_info.version;

            if new_version < old_version {
                return Err(anyhow!("dependency change is a downgrade - not update "));
            }

            let name = &dep_change_info.name;
            let key = (name.clone(), old_version.clone(), new_version.clone());

            if let Some(report) = self.get_update_review_report_from_cache(&key) {
                return Ok(report);
            }

            let cratesio_analyzer = CratesioAnalyzer::new()?;
            let advisory_lookup = AdvisoryLookup::new()?;

            let prior_version = VersionInfo {
                name: name.clone(),
                version: old_version.clone(),
                downloads: cratesio_analyzer.get_version_downloads(name, old_version)?,
                crate_source_diff_report: None, // We do not need to do this heavy calculation
                // for the old_version in the update report
                known_advisories: advisory_lookup
                    .get_crate_version_advisories(name, &old_version.to_string())?
                    .iter()
                    .filter(|advisory| advisory.metadata.withdrawn.is_none())
                    .map(|advisory| Self::get_crate_version_rustsec_advisory(advisory))
                    .collect(),
            };

            let updated_version = VersionInfo {
                name: name.clone(),
                version: new_version.clone(),
                downloads: cratesio_analyzer.get_version_downloads(name, new_version)?,
                crate_source_diff_report: Some(DiffAnalyzer::new()?.analyze_crate_source_diff(
                    name,
                    &new_version.to_string(),
                    new_version_info.repository.as_deref(),
                )?),
                known_advisories: advisory_lookup
                    .get_crate_version_advisories(name, &new_version.to_string())?
                    .iter()
                    .filter(|advisory| advisory.metadata.withdrawn.is_none())
                    .map(|advisory| Self::get_crate_version_rustsec_advisory(advisory))
                    .collect(),
            };

            let diff_stats = Self::analyze_version_diff(dep_change_info)?;

            let report = DepUpdateReviewReport {
                name: dep_change_info.name.clone(),
                prior_version,
                updated_version,
                diff_stats,
            };
            self.cache.borrow_mut().insert(key.clone(), report);
            self.get_update_review_report_from_cache(&key)
                .ok_or_else(|| anyhow!("fatal cache error for update analyzer"))
        } else {
            Err(anyhow!(
                "dependency change is either an addition or removal - not update"
            ))
        }
    }

    fn get_crate_version_rustsec_advisory(
        advisory: &rustsec::advisory::Advisory,
    ) -> CrateVersionRustSecAdvisory {
        CrateVersionRustSecAdvisory {
            id: advisory.id().as_str().to_string(),
            title: advisory.metadata.title.clone(),
            url: advisory.metadata.url.clone(),
        }
    }

    fn analyze_version_diff(
        dep_change_info: &DependencyChangeInfo,
    ) -> Result<Option<VersionDiffStats>> {
        if let (name, Some(old_version_info), Some(new_version_info)) = (
            &dep_change_info.name,
            &dep_change_info.old_version_info,
            &dep_change_info.new_version_info,
        ) {
            let new_version = &new_version_info.version;
            let old_version = &old_version_info.version;
            let diff_analyzer = DiffAnalyzer::new()?;

            if let (Ok(repo_old_version), Ok(repo_new_version)) = (
                diff_analyzer.get_git_repo_for_cratesio_version(name, &old_version.to_string()),
                diff_analyzer.get_git_repo_for_cratesio_version(name, &new_version.to_string()),
            ) {
                // Get version diff info from crates.io if avalaiable on crates.io
                let version_diff_info = diff_analyzer
                    .get_version_diff_info_between_repos(&repo_old_version, &repo_new_version)?;
                Ok(Some(Self::get_version_diff_stats(
                    dep_change_info,
                    &version_diff_info,
                )?))
            } else if let Some(repository) = &new_version_info.repository {
                // Get version diff info from git source if avaialbe
                // We take here the repo for the new version as the latest source
                let repo = diff_analyzer.get_git_repo(name, repository)?;
                let version_diff_info = match diff_analyzer.get_git_source_version_diff_info(
                    name,
                    &repo,
                    old_version,
                    new_version,
                ) {
                    Ok(info) => info,
                    Err(error) => {
                        match error.root_cause().downcast_ref::<HeadCommitNotFoundError>() {
                            Some(_err) => return Ok(None),
                            None => return Err(anyhow!("fatal error in fetching head commit")),
                        }
                    }
                };
                Ok(Some(Self::get_version_diff_stats(
                    dep_change_info,
                    &version_diff_info,
                )?))
            } else {
                Ok(None)
            }
        } else {
            // If old version, or new version is none, there is no update diff
            Ok(None)
        }
    }

    fn get_version_diff_stats(
        dep_change_info: &DependencyChangeInfo,
        version_diff_info: &VersionDiffInfo,
    ) -> Result<VersionDiffStats> {
        let mut files_changed: HashSet<String> = HashSet::new();
        for diff_delta in version_diff_info.diff.deltas() {
            files_changed.insert(
                diff_delta
                    .new_file()
                    .path()
                    .or_else(|| diff_delta.old_file().path())
                    .and_then(|path| path.to_str())
                    .ok_or_else(|| anyhow!("fatal error: diff contains no files"))?
                    .to_string(),
            );
        }

        let mut build_script_paths: HashSet<String> = HashSet::new();
        if let Some(info) = &dep_change_info.old_version_info {
            info.build_script_paths.iter().for_each(|p| {
                build_script_paths.insert(p.clone());
            });
        }
        if let Some(info) = &dep_change_info.new_version_info {
            info.build_script_paths.iter().for_each(|p| {
                build_script_paths.insert(p.clone());
            });
        }

        let modified_build_scripts: HashSet<String> = build_script_paths
            .iter()
            .filter(|path| Self::is_file_modified(path, &version_diff_info.diff))
            .map(|path| path.to_string())
            .collect();

        let files_unsafe_change_stats = Self::analyze_unsafe_changes_in_diff(version_diff_info)?;

        Ok(VersionDiffStats {
            files_changed,
            rust_files_changed: files_unsafe_change_stats.len() as u64,
            insertions: version_diff_info.diff.stats()?.insertions() as u64,
            deletions: version_diff_info.diff.stats()?.deletions() as u64,
            modified_build_scripts,
            unsafe_file_changed: files_unsafe_change_stats
                .into_iter()
                .filter(|report| {
                    report.unsafe_change_status != FileUnsafeCodeChangeStatus::NoUnsafeCode
                })
                .collect(),
        })
    }

    fn is_file_modified(path: &str, diff: &Diff) -> bool {
        let mut modified_file_paths: HashSet<&str> = HashSet::new();

        for diff_delta in diff.deltas() {
            let path: Option<&str> = diff_delta.old_file().path().and_then(|path| path.to_str());
            if let Some(p) = path {
                modified_file_paths.insert(p);
            }

            let path: Option<&str> = diff_delta.new_file().path().and_then(|path| path.to_str());
            if let Some(p) = path {
                modified_file_paths.insert(p);
            }
        }

        modified_file_paths.contains(path)
    }

    fn get_file_unsafe_change_status(
        rs_file_metrics: &Option<RsFileMetrics>,
        unsafe_delta: &UnsafeDelta,
    ) -> FileUnsafeCodeChangeStatus {
        if let Some(rs_file_metrics) = rs_file_metrics {
            match (
                unsafe_delta.has_no_change(),
                rs_file_metrics.counters.has_unsafe(),
            ) {
                (true, true) => FileUnsafeCodeChangeStatus::Uncertain,
                (true, false) => FileUnsafeCodeChangeStatus::NoUnsafeCode,
                (false, true) => FileUnsafeCodeChangeStatus::UnsafeCounterModified,
                (false, false) => FileUnsafeCodeChangeStatus::AllUnsafeCodeRemoved,
            }
        } else {
            // File deleted
            match unsafe_delta.has_no_change() {
                true => FileUnsafeCodeChangeStatus::NoUnsafeCode,
                false => FileUnsafeCodeChangeStatus::AllUnsafeCodeRemoved,
            }
        }
    }

    fn analyze_unsafe_changes_in_diff(
        version_diff_info: &VersionDiffInfo,
    ) -> Result<Vec<FileUnsafeChangeStats>> {
        let repo_path = version_diff_info
            .repo
            .path()
            .parent()
            .ok_or_else(|| anyhow!("error evaluating local repository path"))?;

        let starter_commit = version_diff_info.repo.head()?.peel_to_commit()?;
        let mut checkout_builder = CheckoutBuilder::new();
        checkout_builder.force();

        // Checkout repo at prior commit and get unsafe stats for diff files
        let mut old_files_unsafe_stats: HashMap<PathBuf, Option<RsFileMetrics>> = HashMap::new();
        version_diff_info.repo.checkout_tree(
            &version_diff_info
                .repo
                .find_object(version_diff_info.commit_a, None)?,
            Some(&mut checkout_builder),
        )?;
        for diff_delta in version_diff_info.diff.deltas() {
            if let Some(path) = diff_delta.old_file().path() {
                let old_file_unsafe_stats = geiger::find::find_unsafe_in_file(
                    &repo_path.join(path),
                    geiger::IncludeTests::No,
                )
                .ok();
                old_files_unsafe_stats.insert(path.to_path_buf(), old_file_unsafe_stats);
            }
        }

        // Checkout repo at post commit and get unsafe stats for diff files
        let mut new_files_unsafe_stats: HashMap<PathBuf, Option<RsFileMetrics>> = HashMap::new();
        version_diff_info.repo.checkout_tree(
            &version_diff_info
                .repo
                .find_object(version_diff_info.commit_b, None)?,
            Some(&mut checkout_builder),
        )?;
        for diff_delta in version_diff_info.diff.deltas() {
            if let Some(path) = diff_delta.new_file().path() {
                let new_file_unsafe_stats = geiger::find::find_unsafe_in_file(
                    &repo_path.join(path),
                    geiger::IncludeTests::No,
                )
                .ok();
                new_files_unsafe_stats.insert(path.to_path_buf(), new_file_unsafe_stats);
            }
        }

        // Calculate changes in unsafe counter for each file
        let mut files_unsafe_change_stats: Vec<FileUnsafeChangeStats> = Vec::new();
        for diff_delta in version_diff_info.diff.deltas() {
            let old_file_unsafe_stats = diff_delta
                .old_file()
                .path()
                .and_then(|path| old_files_unsafe_stats.get(path))
                .and_then(|path| path.clone());
            let new_file_unsafe_stats = diff_delta
                .new_file()
                .path()
                .and_then(|path| new_files_unsafe_stats.get(path))
                .and_then(|path| path.clone());

            if old_file_unsafe_stats.is_none() && new_file_unsafe_stats.is_none() {
                // Not a rust file
                continue;
            }

            let unsafe_delta = Self::get_unsafe_delta_from_rs_file_metrics(&new_file_unsafe_stats)
                - Self::get_unsafe_delta_from_rs_file_metrics(&old_file_unsafe_stats);
            let unsafe_status = new_file_unsafe_stats;
            files_unsafe_change_stats.push(FileUnsafeChangeStats {
                file: diff_delta
                    .new_file()
                    .path()
                    .or_else(|| diff_delta.old_file().path())
                    .and_then(|path| path.to_str())
                    .ok_or_else(|| anyhow!("fatal error: diff contains no files"))?
                    .to_string(),
                change_type: diff_delta.status(),
                // while unsafe_change_status can be computed from the rest of the two fields,
                // it makes sure the caller would not have to worry about this
                unsafe_change_status: Self::get_file_unsafe_change_status(
                    &unsafe_status,
                    &unsafe_delta,
                ),
                unsafe_delta,
                unsafe_status,
            })
        }

        version_diff_info
            .repo
            .checkout_tree(starter_commit.as_object(), Some(&mut checkout_builder))?;
        Ok(files_unsafe_change_stats)
    }

    fn get_unsafe_delta_from_rs_file_metrics(
        rs_file_metrics: &Option<RsFileMetrics>,
    ) -> UnsafeDelta {
        match rs_file_metrics {
            Some(rfm) => UnsafeDelta {
                functions: rfm.counters.functions.unsafe_ as i64,
                expressions: rfm.counters.exprs.unsafe_ as i64,
                impls: rfm.counters.item_impls.unsafe_ as i64,
                traits: rfm.counters.item_traits.unsafe_ as i64,
                methods: rfm.counters.methods.unsafe_ as i64,
            },
            None => UnsafeDelta::default(),
        }
    }

    fn get_update_review_report_from_cache(
        &self,
        key: &(String, Version, Version),
    ) -> Option<DepUpdateReviewReport> {
        self.cache.borrow().get(key).cloned()
    }
}

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

#[cfg(test)]
mod test {
    use super::{
        DependencyType, DiffAnalyzer, FileUnsafeCodeChangeStatus, PackageGraph, StandardFeatures,
        UpdateAnalyzer, VersionConflict::DirectTransitiveVersionConflict,
    };
    use crate::diff::trim_remote_url;
    use guppy::{CargoMetadata, MetadataCommand};
    use once_cell::sync::Lazy;
    use semver::Version;
    use serial_test::serial;
    use std::path::PathBuf;
    use std::sync::Once;

    struct PackageGraphPair {
        prior: PackageGraph,
        post: PackageGraph,
    }

    static DIFF_ANALYZER: Lazy<DiffAnalyzer> = Lazy::new(|| DiffAnalyzer::new().unwrap());

    static INIT_GIT_REPOS: Once = Once::new();
    pub fn setup_git_repos() {
        // Multiple tests work with common git repos.
        // As git2::Repositroy mutable reference is not thread safe,
        // we'd need to run those tests serially.
        // However, in this function, we clone those common repos
        // to avoid redundant set up within the tests
        INIT_GIT_REPOS.call_once(|| {
            let name = "test_unsafe";
            let url = "https://github.com/nasifimtiazohi/test-version-tag";
            DIFF_ANALYZER.get_git_repo(name, url).unwrap();
        });
    }

    fn get_test_graph_pair_guppy() -> PackageGraphPair {
        let metadata = CargoMetadata::parse_json(include_str!(
            "../resources/test/prior_guppy_change_metadata.json"
        ))
        .unwrap();
        let prior = metadata.build_graph().unwrap();

        let metadata = CargoMetadata::parse_json(include_str!(
            "../resources/test/post_guppy_change_metadata.json"
        ))
        .unwrap();
        let post = metadata.build_graph().unwrap();

        PackageGraphPair { prior, post }
    }

    fn get_test_graph_pair_libc() -> PackageGraphPair {
        let metadata = CargoMetadata::parse_json(include_str!(
            "../resources/test/prior_libc_change_metadata.json"
        ))
        .unwrap();
        let prior = metadata.build_graph().unwrap();

        let metadata = CargoMetadata::parse_json(include_str!(
            "../resources/test/post_libc_change_metadata.json"
        ))
        .unwrap();
        let post = metadata.build_graph().unwrap();

        PackageGraphPair { prior, post }
    }

    fn get_test_graph_pair_conflict() -> PackageGraphPair {
        let metadata = CargoMetadata::parse_json(include_str!(
            "../resources/test/prior_conflict_metadata.json"
        ))
        .unwrap();
        let prior = metadata.build_graph().unwrap();

        let metadata = CargoMetadata::parse_json(include_str!(
            "../resources/test/post_conflict_metadata.json"
        ))
        .unwrap();
        let post = metadata.build_graph().unwrap();

        PackageGraphPair { prior, post }
    }

    fn get_test_graph_pair_rustsec() -> PackageGraphPair {
        let metadata = CargoMetadata::parse_json(include_str!(
            "../resources/test/prior_rustsec_metadata.json"
        ))
        .unwrap();
        let prior = metadata.build_graph().unwrap();

        let metadata =
            CargoMetadata::parse_json(include_str!("../resources/test/post_rustsec_metadata.json"))
                .unwrap();
        let post = metadata.build_graph().unwrap();

        PackageGraphPair { prior, post }
    }

    fn get_test_update_analyzer() -> UpdateAnalyzer {
        UpdateAnalyzer::new()
    }

    #[test]
    fn test_update_compare_package_graph() {
        let package_graph_pair = get_test_graph_pair_guppy();

        let dep_change_infos = UpdateAnalyzer::compare_pacakge_graphs(
            &package_graph_pair.prior,
            &package_graph_pair.post,
            &UpdateAnalyzer::get_default_cargo_options(),
            StandardFeatures::All,
        )
        .unwrap();

        // Total changes
        assert_eq!(20, dep_change_infos.len());

        // Host deps
        assert_eq!(
            5,
            dep_change_infos
                .iter()
                .filter(|dep| matches!(dep.dep_type, DependencyType::Host))
                .count()
        );

        // Target deps
        assert_eq!(
            15,
            dep_change_infos
                .iter()
                .filter(|dep| matches!(dep.dep_type, DependencyType::Target))
                .count()
        );

        // Deps added
        assert_eq!(
            8,
            dep_change_infos
                .iter()
                .filter(|dep| dep.old_version_info.is_none() && dep.new_version_info.is_some())
                .count()
        );

        // Deps removed
        assert_eq!(
            10,
            dep_change_infos
                .iter()
                .filter(|dep| dep.old_version_info.is_some() && dep.new_version_info.is_none())
                .count()
        );

        // Deps version changed
        assert_eq!(
            2,
            dep_change_infos
                .iter()
                .filter(|dep| dep.old_version_info.is_some() && dep.new_version_info.is_some())
                .count()
        );
    }

    #[test]
    fn test_update_get_repository_from_graph() {
        let package_graph_pair = get_test_graph_pair_guppy();

        assert_eq!(
            "https://github.com/facebookincubator/cargo-guppy",
            trim_remote_url(
                &UpdateAnalyzer::get_repository_from_graph(&package_graph_pair.prior, "guppy")
                    .unwrap()
            )
            .unwrap()
        );

        assert_eq!(
            "https://github.com/rust-lang/git2-rs",
            trim_remote_url(
                &UpdateAnalyzer::get_repository_from_graph(&package_graph_pair.post, "git2")
                    .unwrap()
            )
            .unwrap()
        );
    }

    #[test]
    fn test_update_review_report_guppy() {
        let package_graph_pair = get_test_graph_pair_guppy();
        let update_analyzer = get_test_update_analyzer();
        let update_review_reports = update_analyzer
            .analyze_updates(&package_graph_pair.prior, &package_graph_pair.post)
            .unwrap();
        assert_eq!(update_review_reports.dep_update_review_reports.len(), 2);
        for report in &update_review_reports.dep_update_review_reports {
            if report.name == "guppy" {
                assert_eq!(
                    report.prior_version.version,
                    Version::parse("0.8.0").unwrap()
                );
                assert_eq!(
                    report.updated_version.version,
                    Version::parse("0.9.0").unwrap()
                );
                assert_eq!(report.diff_stats.as_ref().unwrap().files_changed.len(), 9);
                assert_eq!(report.diff_stats.as_ref().unwrap().rust_files_changed, 4);
                assert_eq!(report.diff_stats.as_ref().unwrap().insertions, 244);
                assert_eq!(report.diff_stats.as_ref().unwrap().deletions, 179);
                assert!(report
                    .diff_stats
                    .as_ref()
                    .unwrap()
                    .modified_build_scripts
                    .is_empty());
                assert_eq!(
                    report
                        .diff_stats
                        .as_ref()
                        .unwrap()
                        .unsafe_file_changed
                        .len(),
                    0
                );
            }
        }
        println!("{:?}", update_review_reports);
    }

    #[test]
    fn test_update_review_report_libc() {
        let package_graph_pair = get_test_graph_pair_libc();
        let update_analyzer = get_test_update_analyzer();
        let update_review_reports = update_analyzer
            .analyze_updates(&package_graph_pair.prior, &package_graph_pair.post)
            .unwrap();
        assert_eq!(update_review_reports.dep_update_review_reports.len(), 1);
        let report = update_review_reports
            .dep_update_review_reports
            .get(0)
            .unwrap();
        assert_eq!(report.prior_version.name, report.name);
        assert_eq!(report.prior_version.name, report.updated_version.name);
        assert_eq!(
            report.prior_version.version,
            Version::parse("0.2.92").unwrap()
        );
        assert_eq!(
            report.updated_version.version,
            Version::parse("0.2.93").unwrap()
        );
        // downloads for old 0.2.92 and 0.2.93 with an order of magnitude of difference
        // to be the exact same is very low, equal stats is likely a bug
        assert_ne!(
            report.prior_version.downloads,
            report.updated_version.downloads
        );
        assert_eq!(report.diff_stats.as_ref().unwrap().files_changed.len(), 78);
        assert_eq!(report.diff_stats.as_ref().unwrap().rust_files_changed, 73);
        assert_eq!(report.diff_stats.as_ref().unwrap().insertions, 1333);
        assert_eq!(report.diff_stats.as_ref().unwrap().deletions, 4942);
        let build_scripts = &report.diff_stats.as_ref().unwrap().modified_build_scripts;
        assert_eq!(build_scripts.len(), 1);
        assert_eq!(build_scripts.iter().next().unwrap(), "build.rs");
        assert_eq!(
            report
                .diff_stats
                .as_ref()
                .unwrap()
                .unsafe_file_changed
                .len(),
            12
        );

        let build_scripts = &report.diff_stats.as_ref().unwrap().modified_build_scripts;
        assert_eq!(build_scripts.len(), 1);
        assert_eq!(build_scripts.iter().next().unwrap(), "build.rs");
    }

    #[test]
    fn test_update_build_script_paths() {
        let graph = MetadataCommand::new()
            .current_dir(PathBuf::from("resources/test/valid_dep"))
            .build_graph()
            .unwrap();

        let build_script_paths = UpdateAnalyzer::get_build_script_paths(&graph, "libc").unwrap();
        assert_eq!(build_script_paths.len(), 1);
        assert_eq!(build_script_paths.iter().next().unwrap(), "build.rs");

        let graph = MetadataCommand::new()
            .current_dir(PathBuf::from("resources/test/valid_dep"))
            .build_graph()
            .unwrap();
        let build_script_paths =
            UpdateAnalyzer::get_build_script_paths(&graph, "valid_dep").unwrap();
        // TODO: there is another file build/custom_build.rs that is called
        // from the build script which won't be available from guppy
        // we need to add functionaliyt for that.
        assert_eq!(build_script_paths.len(), 1);
        assert_eq!(build_script_paths.iter().next().unwrap(), "build/main.rs");
    }

    #[test]
    fn test_update_version_conflict() {
        let package_graph_pair = get_test_graph_pair_conflict();
        let dep_change_infos = UpdateAnalyzer::compare_pacakge_graphs(
            &package_graph_pair.prior,
            &package_graph_pair.post,
            &UpdateAnalyzer::get_default_cargo_options(),
            StandardFeatures::All,
        )
        .unwrap();

        let version_conflicts =
            UpdateAnalyzer::determine_version_conflict(&dep_change_infos, &package_graph_pair.post);
        assert_eq!(version_conflicts.len(), 1);

        let conflict = version_conflicts.get(0).unwrap();
        match conflict {
            DirectTransitiveVersionConflict { name, .. } => {
                assert_eq!(name, "target-spec");
            }
        }
    }

    #[test]
    fn test_update_rustsec() {
        let package_graph_pair = get_test_graph_pair_rustsec();
        let update_analyzer = get_test_update_analyzer();
        let reports = update_analyzer
            .analyze_updates(&package_graph_pair.prior, &package_graph_pair.post)
            .unwrap();
        let report = reports
            .dep_update_review_reports
            .iter()
            .find(|report| report.name == "tokio")
            .unwrap();

        assert!(report
            .prior_version
            .known_advisories
            .iter()
            .any(|adv| adv.id == "RUSTSEC-2021-0072"));
        assert!(!report
            .updated_version
            .known_advisories
            .iter()
            .any(|adv| adv.id == "RUSTSEC-2021-0072"));
    }

    #[test]
    #[serial]
    fn test_update_geiger_file_scanning() {
        setup_git_repos();

        let name = "test_unsafe";
        let repository = "https://github.com/nasifimtiazohi/test-version-tag";
        let repo = DIFF_ANALYZER.get_git_repo(name, repository).unwrap();

        let version_diff_info = DIFF_ANALYZER
            .get_git_source_version_diff_info(
                name,
                &repo,
                &Version::parse("2.0.0").unwrap(),
                &Version::parse("2.1.0").unwrap(),
            )
            .unwrap();
        let files_unsafe_change_stats =
            UpdateAnalyzer::analyze_unsafe_changes_in_diff(&version_diff_info).unwrap();
        let file = files_unsafe_change_stats
            .iter()
            .find(|stat| stat.file == "src/main.rs")
            .unwrap();
        assert_eq!(file.unsafe_delta.functions, 1);
        assert_eq!(file.unsafe_delta.methods, 1);
        assert_eq!(file.unsafe_delta.traits, 1);
        assert_eq!(file.unsafe_delta.impls, 0);
        assert_eq!(file.unsafe_delta.expressions, 4);
        let file = files_unsafe_change_stats
            .iter()
            .find(|stat| stat.file == "src/newanother.rs")
            .unwrap();
        assert_eq!(file.unsafe_delta.functions, 0);
        assert_eq!(file.unsafe_delta.methods, 0);
        assert_eq!(file.unsafe_delta.traits, 0);
        assert_eq!(file.unsafe_delta.impls, 0);
        assert_eq!(file.unsafe_delta.expressions, 0);

        let version_diff_info = DIFF_ANALYZER
            .get_git_source_version_diff_info(
                name,
                &repo,
                &Version::parse("2.1.0").unwrap(),
                &Version::parse("2.4.0").unwrap(),
            )
            .unwrap();
        let files_unsafe_change_stats =
            UpdateAnalyzer::analyze_unsafe_changes_in_diff(&version_diff_info).unwrap();
        println!("{:?}", files_unsafe_change_stats);

        let file = files_unsafe_change_stats
            .iter()
            .find(|stat| stat.file == "src/main.rs")
            .unwrap();
        assert_eq!(file.unsafe_delta.functions, -1);
        assert_eq!(file.unsafe_delta.methods, -1);
        assert_eq!(file.unsafe_delta.traits, -1);
        assert_eq!(file.unsafe_delta.impls, 0);
        assert_eq!(file.unsafe_delta.expressions, -2);
        let file = files_unsafe_change_stats
            .iter()
            .find(|stat| stat.file == "src/newanother.rs")
            .unwrap();
        assert_eq!(file.unsafe_delta.functions, 1);
        assert_eq!(file.unsafe_delta.methods, 1);
        assert_eq!(file.unsafe_delta.traits, 1);
        assert_eq!(file.unsafe_delta.impls, 0);
        assert_eq!(file.unsafe_delta.expressions, 2);

        let version_diff_info = DIFF_ANALYZER
            .get_git_source_version_diff_info(
                name,
                &repo,
                &Version::parse("2.4.0").unwrap(),
                &Version::parse("2.5.0").unwrap(),
            )
            .unwrap();
        let files_unsafe_change_stats =
            UpdateAnalyzer::analyze_unsafe_changes_in_diff(&version_diff_info).unwrap();
        println!("{:?}", files_unsafe_change_stats);

        let file = files_unsafe_change_stats
            .iter()
            .find(|stat| stat.file == "src/main.rs")
            .unwrap();
        // A line has changes withing unsafe block
        // but the total counter remains same
        // TODO: how to detect such changes?
        assert_eq!(file.unsafe_delta.expressions, 0);
    }

    #[test]
    #[serial]
    fn test_update_unsafe_change_status() {
        setup_git_repos();

        let name = "test_unsafe";
        let repository = "https://github.com/nasifimtiazohi/test-version-tag";
        let repo = DIFF_ANALYZER.get_git_repo(name, repository).unwrap();

        let version_diff_info = DIFF_ANALYZER
            .get_git_source_version_diff_info(
                name,
                &repo,
                &Version::parse("2.6.0").unwrap(),
                &Version::parse("3.1.0").unwrap(),
            )
            .unwrap();
        let files_unsafe_change_stats =
            UpdateAnalyzer::analyze_unsafe_changes_in_diff(&version_diff_info).unwrap();

        println!("{:?}", files_unsafe_change_stats);

        for report in &files_unsafe_change_stats {
            if report.file == "src/main.rs" {
                assert_eq!(
                    report.unsafe_change_status,
                    FileUnsafeCodeChangeStatus::Uncertain
                );
            }
            if report.file == "src/newanother.rs" {
                assert_eq!(
                    report.unsafe_change_status,
                    FileUnsafeCodeChangeStatus::UnsafeCounterModified
                );
            }
            if report.file == "src/unsafefiletoremove.rs" {
                assert_eq!(
                    report.unsafe_change_status,
                    FileUnsafeCodeChangeStatus::AllUnsafeCodeRemoved
                );
            }
            if report.file == "src/unsafetoremove.rs" {
                assert_eq!(
                    report.unsafe_change_status,
                    FileUnsafeCodeChangeStatus::AllUnsafeCodeRemoved
                );
            }
            if report.file == "src/nounsafe.rs" {
                assert_eq!(
                    report.unsafe_change_status,
                    FileUnsafeCodeChangeStatus::NoUnsafeCode
                );
            }
        }
    }
}