]> git.lizzy.rs Git - rust.git/blob - tests/missing-test-files.rs
Rustup to rust-lang/rust#66931
[rust.git] / tests / missing-test-files.rs
1 #![allow(clippy::assertions_on_constants)]
2
3 use std::fs::{self, DirEntry};
4 use std::path::Path;
5
6 #[test]
7 fn test_missing_tests() {
8     let missing_files = explore_directory(Path::new("./tests"));
9     if !missing_files.is_empty() {
10         assert!(
11             false,
12             format!(
13                 "Didn't see a test file for the following files:\n\n{}\n",
14                 missing_files
15                     .iter()
16                     .map(|s| format!("\t{}", s))
17                     .collect::<Vec<_>>()
18                     .join("\n")
19             )
20         );
21     }
22 }
23
24 /*
25 Test for missing files.
26
27 Since rs files are alphabetically before stderr/stdout, we can sort by the full name
28 and iter in that order. If we've seen the file stem for the first time and it's not
29 a rust file, it means the rust file has to be missing.
30 */
31 fn explore_directory(dir: &Path) -> Vec<String> {
32     let mut missing_files: Vec<String> = Vec::new();
33     let mut current_file = String::new();
34     let mut files: Vec<DirEntry> = fs::read_dir(dir).unwrap().filter_map(Result::ok).collect();
35     files.sort_by_key(std::fs::DirEntry::path);
36     for entry in &files {
37         let path = entry.path();
38         if path.is_dir() {
39             missing_files.extend(explore_directory(&path));
40         } else {
41             let file_stem = path.file_stem().unwrap().to_str().unwrap().to_string();
42             if let Some(ext) = path.extension() {
43                 match ext.to_str().unwrap() {
44                     "rs" => current_file = file_stem.clone(),
45                     "stderr" | "stdout" => {
46                         if file_stem != current_file {
47                             missing_files.push(path.to_str().unwrap().to_string());
48                         }
49                     },
50                     _ => continue,
51                 };
52             }
53         }
54     }
55     missing_files
56 }