]> git.lizzy.rs Git - rust.git/blob - tests/compile-test.rs
Auto merge of #7165 - camsteffen:question-mark, r=Manishearth
[rust.git] / tests / compile-test.rs
1 #![feature(test)] // compiletest_rs requires this attribute
2 #![feature(once_cell)]
3
4 use compiletest_rs as compiletest;
5 use compiletest_rs::common::Mode as TestMode;
6
7 use std::env::{self, set_var, var};
8 use std::ffi::OsStr;
9 use std::fs;
10 use std::io;
11 use std::path::{Path, PathBuf};
12
13 mod cargo;
14
15 // whether to run internal tests or not
16 const RUN_INTERNAL_TESTS: bool = cfg!(feature = "internal-lints");
17
18 fn host_lib() -> PathBuf {
19     option_env!("HOST_LIBS").map_or(cargo::CARGO_TARGET_DIR.join(env!("PROFILE")), PathBuf::from)
20 }
21
22 fn clippy_driver_path() -> PathBuf {
23     option_env!("CLIPPY_DRIVER_PATH").map_or(cargo::TARGET_LIB.join("clippy-driver"), PathBuf::from)
24 }
25
26 // When we'll want to use `extern crate ..` for a dependency that is used
27 // both by the crate and the compiler itself, we can't simply pass -L flags
28 // as we'll get a duplicate matching versions. Instead, disambiguate with
29 // `--extern dep=path`.
30 // See https://github.com/rust-lang/rust-clippy/issues/4015.
31 //
32 // FIXME: We cannot use `cargo build --message-format=json` to resolve to dependency files.
33 //        Because it would force-rebuild if the options passed to `build` command is not the same
34 //        as what we manually pass to `cargo` invocation
35 fn third_party_crates() -> String {
36     use std::collections::HashMap;
37     static CRATES: &[&str] = &["serde", "serde_derive", "regex", "clippy_lints", "syn", "quote"];
38     let dep_dir = cargo::TARGET_LIB.join("deps");
39     let mut crates: HashMap<&str, PathBuf> = HashMap::with_capacity(CRATES.len());
40     for entry in fs::read_dir(dep_dir).unwrap() {
41         let path = match entry {
42             Ok(entry) => entry.path(),
43             Err(_) => continue,
44         };
45         if let Some(name) = path.file_name().and_then(OsStr::to_str) {
46             for dep in CRATES {
47                 if name.starts_with(&format!("lib{}-", dep))
48                     && name.rsplit('.').next().map(|ext| ext.eq_ignore_ascii_case("rlib")) == Some(true)
49                 {
50                     if let Some(old) = crates.insert(dep, path.clone()) {
51                         panic!("Found multiple rlibs for crate `{}`: `{:?}` and `{:?}", dep, old, path);
52                     }
53                     break;
54                 }
55             }
56         }
57     }
58
59     let v: Vec<_> = crates
60         .into_iter()
61         .map(|(dep, path)| format!("--extern {}={}", dep, path.display()))
62         .collect();
63     v.join(" ")
64 }
65
66 fn default_config() -> compiletest::Config {
67     let mut config = compiletest::Config::default();
68
69     if let Ok(filters) = env::var("TESTNAME") {
70         config.filters = filters.split(',').map(std::string::ToString::to_string).collect();
71     }
72
73     if let Some(path) = option_env!("RUSTC_LIB_PATH") {
74         let path = PathBuf::from(path);
75         config.run_lib_path = path.clone();
76         config.compile_lib_path = path;
77     }
78
79     config.target_rustcflags = Some(format!(
80         "--emit=metadata -L {0} -L {1} -Dwarnings -Zui-testing {2}",
81         host_lib().join("deps").display(),
82         cargo::TARGET_LIB.join("deps").display(),
83         third_party_crates(),
84     ));
85
86     config.build_base = host_lib().join("test_build_base");
87     config.rustc_path = clippy_driver_path();
88     config
89 }
90
91 fn run_mode(cfg: &mut compiletest::Config) {
92     cfg.mode = TestMode::Ui;
93     cfg.src_base = Path::new("tests").join("ui");
94     compiletest::run_tests(cfg);
95 }
96
97 fn run_internal_tests(cfg: &mut compiletest::Config) {
98     // only run internal tests with the internal-tests feature
99     if !RUN_INTERNAL_TESTS {
100         return;
101     }
102     cfg.mode = TestMode::Ui;
103     cfg.src_base = Path::new("tests").join("ui-internal");
104     compiletest::run_tests(cfg);
105 }
106
107 fn run_ui_toml(config: &mut compiletest::Config) {
108     fn run_tests(config: &compiletest::Config, mut tests: Vec<tester::TestDescAndFn>) -> Result<bool, io::Error> {
109         let mut result = true;
110         let opts = compiletest::test_opts(config);
111         for dir in fs::read_dir(&config.src_base)? {
112             let dir = dir?;
113             if !dir.file_type()?.is_dir() {
114                 continue;
115             }
116             let dir_path = dir.path();
117             set_var("CARGO_MANIFEST_DIR", &dir_path);
118             for file in fs::read_dir(&dir_path)? {
119                 let file = file?;
120                 let file_path = file.path();
121                 if file.file_type()?.is_dir() {
122                     continue;
123                 }
124                 if file_path.extension() != Some(OsStr::new("rs")) {
125                     continue;
126                 }
127                 let paths = compiletest::common::TestPaths {
128                     file: file_path,
129                     base: config.src_base.clone(),
130                     relative_dir: dir_path.file_name().unwrap().into(),
131                 };
132                 let test_name = compiletest::make_test_name(config, &paths);
133                 let index = tests
134                     .iter()
135                     .position(|test| test.desc.name == test_name)
136                     .expect("The test should be in there");
137                 result &= tester::run_tests_console(&opts, vec![tests.swap_remove(index)])?;
138             }
139         }
140         Ok(result)
141     }
142
143     config.mode = TestMode::Ui;
144     config.src_base = Path::new("tests").join("ui-toml").canonicalize().unwrap();
145
146     let tests = compiletest::make_tests(config);
147
148     let manifest_dir = var("CARGO_MANIFEST_DIR").unwrap_or_default();
149     let res = run_tests(config, tests);
150     set_var("CARGO_MANIFEST_DIR", &manifest_dir);
151     match res {
152         Ok(true) => {},
153         Ok(false) => panic!("Some tests failed"),
154         Err(e) => {
155             panic!("I/O failure during tests: {:?}", e);
156         },
157     }
158 }
159
160 fn run_ui_cargo(config: &mut compiletest::Config) {
161     fn run_tests(
162         config: &compiletest::Config,
163         filters: &[String],
164         mut tests: Vec<tester::TestDescAndFn>,
165     ) -> Result<bool, io::Error> {
166         let mut result = true;
167         let opts = compiletest::test_opts(config);
168
169         for dir in fs::read_dir(&config.src_base)? {
170             let dir = dir?;
171             if !dir.file_type()?.is_dir() {
172                 continue;
173             }
174
175             // Use the filter if provided
176             let dir_path = dir.path();
177             for filter in filters {
178                 if !dir_path.ends_with(filter) {
179                     continue;
180                 }
181             }
182
183             for case in fs::read_dir(&dir_path)? {
184                 let case = case?;
185                 if !case.file_type()?.is_dir() {
186                     continue;
187                 }
188
189                 let src_path = case.path().join("src");
190
191                 // When switching between branches, if the previous branch had a test
192                 // that the current branch does not have, the directory is not removed
193                 // because an ignored Cargo.lock file exists.
194                 if !src_path.exists() {
195                     continue;
196                 }
197
198                 env::set_current_dir(&src_path)?;
199                 for file in fs::read_dir(&src_path)? {
200                     let file = file?;
201                     if file.file_type()?.is_dir() {
202                         continue;
203                     }
204
205                     // Search for the main file to avoid running a test for each file in the project
206                     let file_path = file.path();
207                     match file_path.file_name().and_then(OsStr::to_str) {
208                         Some("main.rs") => {},
209                         _ => continue,
210                     }
211                     set_var("CLIPPY_CONF_DIR", case.path());
212                     let paths = compiletest::common::TestPaths {
213                         file: file_path,
214                         base: config.src_base.clone(),
215                         relative_dir: src_path.strip_prefix(&config.src_base).unwrap().into(),
216                     };
217                     let test_name = compiletest::make_test_name(config, &paths);
218                     let index = tests
219                         .iter()
220                         .position(|test| test.desc.name == test_name)
221                         .expect("The test should be in there");
222                     result &= tester::run_tests_console(&opts, vec![tests.swap_remove(index)])?;
223                 }
224             }
225         }
226         Ok(result)
227     }
228
229     if cargo::is_rustc_test_suite() {
230         return;
231     }
232
233     config.mode = TestMode::Ui;
234     config.src_base = Path::new("tests").join("ui-cargo").canonicalize().unwrap();
235
236     let tests = compiletest::make_tests(config);
237
238     let current_dir = env::current_dir().unwrap();
239     let conf_dir = var("CLIPPY_CONF_DIR").unwrap_or_default();
240     let res = run_tests(config, &config.filters, tests);
241     env::set_current_dir(current_dir).unwrap();
242     set_var("CLIPPY_CONF_DIR", conf_dir);
243
244     match res {
245         Ok(true) => {},
246         Ok(false) => panic!("Some tests failed"),
247         Err(e) => {
248             panic!("I/O failure during tests: {:?}", e);
249         },
250     }
251 }
252
253 fn prepare_env() {
254     set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
255     set_var("__CLIPPY_INTERNAL_TESTS", "true");
256     //set_var("RUST_BACKTRACE", "0");
257 }
258
259 #[test]
260 fn compile_test() {
261     prepare_env();
262     let mut config = default_config();
263     run_mode(&mut config);
264     run_ui_toml(&mut config);
265     run_ui_cargo(&mut config);
266     run_internal_tests(&mut config);
267 }