]> git.lizzy.rs Git - rust.git/blob - tests/compile-test.rs
Rollup merge of #5425 - xiongmao86:issue5367, r=flip1995
[rust.git] / tests / compile-test.rs
1 #![feature(test)] // compiletest_rs requires this attribute
2
3 use compiletest_rs as compiletest;
4 use compiletest_rs::common::Mode as TestMode;
5
6 use std::env::{self, set_var};
7 use std::ffi::OsStr;
8 use std::fs;
9 use std::io;
10 use std::path::{Path, PathBuf};
11
12 mod cargo;
13
14 fn host_lib() -> PathBuf {
15     if let Some(path) = option_env!("HOST_LIBS") {
16         PathBuf::from(path)
17     } else {
18         cargo::CARGO_TARGET_DIR.join(env!("PROFILE"))
19     }
20 }
21
22 fn clippy_driver_path() -> PathBuf {
23     if let Some(path) = option_env!("CLIPPY_DRIVER_PATH") {
24         PathBuf::from(path)
25     } else {
26         cargo::TARGET_LIB.join("clippy-driver")
27     }
28 }
29
30 // When we'll want to use `extern crate ..` for a dependency that is used
31 // both by the crate and the compiler itself, we can't simply pass -L flags
32 // as we'll get a duplicate matching versions. Instead, disambiguate with
33 // `--extern dep=path`.
34 // See https://github.com/rust-lang/rust-clippy/issues/4015.
35 //
36 // FIXME: We cannot use `cargo build --message-format=json` to resolve to dependency files.
37 //        Because it would force-rebuild if the options passed to `build` command is not the same
38 //        as what we manually pass to `cargo` invocation
39 fn third_party_crates() -> String {
40     use std::collections::HashMap;
41     static CRATES: &[&str] = &["serde", "serde_derive", "regex", "clippy_lints"];
42     let dep_dir = cargo::TARGET_LIB.join("deps");
43     let mut crates: HashMap<&str, PathBuf> = HashMap::with_capacity(CRATES.len());
44     for entry in fs::read_dir(dep_dir).unwrap() {
45         let path = match entry {
46             Ok(entry) => entry.path(),
47             _ => continue,
48         };
49         if let Some(name) = path.file_name().and_then(OsStr::to_str) {
50             for dep in CRATES {
51                 if name.starts_with(&format!("lib{}-", dep)) && name.ends_with(".rlib") {
52                     crates.entry(dep).or_insert(path);
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(name) = env::var("TESTNAME") {
70         config.filter = Some(name);
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         "-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 = if cargo::is_rustc_test_suite() {
87         // This make the stderr files go to clippy OUT_DIR on rustc repo build dir
88         let mut path = PathBuf::from(env!("OUT_DIR"));
89         path.push("test_build_base");
90         path
91     } else {
92         host_lib().join("test_build_base")
93     };
94     config.rustc_path = clippy_driver_path();
95     config
96 }
97
98 fn run_mode(cfg: &mut compiletest::Config) {
99     cfg.mode = TestMode::Ui;
100     cfg.src_base = Path::new("tests").join("ui");
101     compiletest::run_tests(&cfg);
102 }
103
104 #[allow(clippy::identity_conversion)]
105 fn run_ui_toml_tests(config: &compiletest::Config, mut tests: Vec<tester::TestDescAndFn>) -> Result<bool, io::Error> {
106     let mut result = true;
107     let opts = compiletest::test_opts(config);
108     for dir in fs::read_dir(&config.src_base)? {
109         let dir = dir?;
110         if !dir.file_type()?.is_dir() {
111             continue;
112         }
113         let dir_path = dir.path();
114         set_var("CARGO_MANIFEST_DIR", &dir_path);
115         for file in fs::read_dir(&dir_path)? {
116             let file = file?;
117             let file_path = file.path();
118             if file.file_type()?.is_dir() {
119                 continue;
120             }
121             if file_path.extension() != Some(OsStr::new("rs")) {
122                 continue;
123             }
124             let paths = compiletest::common::TestPaths {
125                 file: file_path,
126                 base: config.src_base.clone(),
127                 relative_dir: dir_path.file_name().unwrap().into(),
128             };
129             let test_name = compiletest::make_test_name(&config, &paths);
130             let index = tests
131                 .iter()
132                 .position(|test| test.desc.name == test_name)
133                 .expect("The test should be in there");
134             result &= tester::run_tests_console(&opts, vec![tests.swap_remove(index)])?;
135         }
136     }
137     Ok(result)
138 }
139
140 fn run_ui_toml(config: &mut compiletest::Config) {
141     config.mode = TestMode::Ui;
142     config.src_base = Path::new("tests").join("ui-toml").canonicalize().unwrap();
143
144     let tests = compiletest::make_tests(&config);
145
146     let res = run_ui_toml_tests(&config, tests);
147     match res {
148         Ok(true) => {},
149         Ok(false) => panic!("Some tests failed"),
150         Err(e) => {
151             println!("I/O failure during tests: {:?}", e);
152         },
153     }
154 }
155
156 fn prepare_env() {
157     set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
158     set_var("CLIPPY_TESTS", "true");
159     //set_var("RUST_BACKTRACE", "0");
160 }
161
162 #[test]
163 fn compile_test() {
164     prepare_env();
165     let mut config = default_config();
166     run_mode(&mut config);
167     run_ui_toml(&mut config);
168 }