rust/tests/compile-test.rs

173 lines
5.3 KiB
Rust
Raw Normal View History

#![feature(test)]
2018-12-29 17:46:25 +01:00
use compiletest_rs as compiletest;
extern crate tester as test;
2015-04-13 19:58:18 +02:00
2018-06-07 19:16:50 +02:00
use std::env::{set_var, var};
use std::ffi::OsStr;
use std::fs;
2018-06-07 19:16:50 +02:00
use std::io;
2018-05-22 10:21:42 +02:00
use std::path::{Path, PathBuf};
2015-04-13 19:58:18 +02:00
#[must_use]
2017-09-18 12:47:33 +02:00
fn clippy_driver_path() -> PathBuf {
if let Some(path) = option_env!("CLIPPY_DRIVER_PATH") {
PathBuf::from(path)
} else {
PathBuf::from(concat!("target/", env!("PROFILE"), "/clippy-driver"))
}
}
#[must_use]
fn host_libs() -> PathBuf {
if let Some(path) = option_env!("HOST_LIBS") {
PathBuf::from(path)
} else {
Path::new("target").join(env!("PROFILE"))
}
}
#[must_use]
fn target_libs() -> Option<PathBuf> {
option_env!("TARGET_LIBS").map(PathBuf::from)
}
#[must_use]
fn rustc_test_suite() -> Option<PathBuf> {
option_env!("RUSTC_TEST_SUITE").map(PathBuf::from)
}
#[must_use]
fn rustc_lib_path() -> PathBuf {
option_env!("RUSTC_LIB_PATH").unwrap().into()
}
fn config(mode: &str, dir: PathBuf) -> compiletest::Config {
2017-08-02 18:07:05 +02:00
let mut config = compiletest::Config::default();
2016-08-17 18:35:25 +02:00
let cfg_mode = mode.parse().expect("Invalid mode");
if let Ok(name) = var::<&str>("TESTNAME") {
2019-09-16 17:50:36 +02:00
config.filter = Some(name)
}
2015-04-13 19:58:18 +02:00
if rustc_test_suite().is_some() {
config.run_lib_path = rustc_lib_path();
config.compile_lib_path = rustc_lib_path();
}
// When we'll want to use `extern crate ..` for a dependency that is used
// both by the crate and the compiler itself, we can't simply pass -L flags
// as we'll get a duplicate matching versions. Instead, disambiguate with
// `--extern dep=path`.
// See https://github.com/rust-lang/rust-clippy/issues/4015.
let needs_disambiguation = ["serde", "regex", "clippy_lints"];
// This assumes that deps are compiled (they are for Cargo integration tests).
let deps = fs::read_dir(target_libs().unwrap_or_else(host_libs).join("deps")).unwrap();
let disambiguated = deps
.filter_map(|dep| {
let path = dep.ok()?.path();
let name = path.file_name()?.to_string_lossy();
// NOTE: This only handles a single dep
// https://github.com/laumann/compiletest-rs/issues/101
needs_disambiguation.iter().find_map(|dep| {
if name.starts_with(&format!("lib{}-", dep)) && name.ends_with(".rlib") {
Some(format!("--extern {}={}", dep, path.display()))
} else {
None
}
})
})
.collect::<Vec<_>>();
2018-12-27 16:57:23 +01:00
config.target_rustcflags = Some(format!(
"-L {0} -L {0}/deps {1} -Dwarnings -Zui-testing {2}",
host_libs().display(),
target_libs().map_or_else(String::new, |path| format!("-L {0} -L {0}/deps", path.display())),
disambiguated.join(" ")
2018-12-27 16:57:23 +01:00
));
2015-04-13 19:58:18 +02:00
config.mode = cfg_mode;
2018-01-16 17:06:27 +01:00
config.build_base = if rustc_test_suite().is_some() {
// we don't need access to the stderr files on travis
let mut path = PathBuf::from(env!("OUT_DIR"));
path.push("test_build_base");
path
2018-01-16 17:06:27 +01:00
} else {
2017-11-09 06:47:14 +01:00
let mut path = std::env::current_dir().unwrap();
path.push("target/debug/test_build_base");
path
};
config.src_base = dir;
2017-09-18 12:47:33 +02:00
config.rustc_path = clippy_driver_path();
config
}
2015-04-13 19:58:18 +02:00
fn run_mode(mode: &str, dir: PathBuf) {
let cfg = config(mode, dir);
compiletest::run_tests(&cfg);
}
#[allow(clippy::identity_conversion)]
fn run_ui_toml_tests(config: &compiletest::Config, mut tests: Vec<test::TestDescAndFn>) -> Result<bool, io::Error> {
let mut result = true;
let opts = compiletest::test_opts(config);
for dir in fs::read_dir(&config.src_base)? {
let dir = dir?;
if !dir.file_type()?.is_dir() {
continue;
}
let dir_path = dir.path();
set_var("CARGO_MANIFEST_DIR", &dir_path);
for file in fs::read_dir(&dir_path)? {
let file = file?;
let file_path = file.path();
2020-01-04 04:24:09 +01:00
if file.file_type()?.is_dir() {
continue;
}
if file_path.extension() != Some(OsStr::new("rs")) {
continue;
}
let paths = compiletest::common::TestPaths {
file: file_path,
base: config.src_base.clone(),
relative_dir: dir_path.file_name().unwrap().into(),
};
let test_name = compiletest::make_test_name(&config, &paths);
2018-06-07 19:16:50 +02:00
let index = tests
.iter()
.position(|test| test.desc.name == test_name)
.expect("The test should be in there");
result &= test::run_tests_console(&opts, vec![tests.swap_remove(index)])?;
}
}
Ok(result)
}
fn run_ui_toml() {
let path = PathBuf::from("tests/ui-toml").canonicalize().unwrap();
let config = config("ui", path);
let tests = compiletest::make_tests(&config);
let res = run_ui_toml_tests(&config, tests);
match res {
2018-06-07 19:16:50 +02:00
Ok(true) => {},
Ok(false) => panic!("Some tests failed"),
Err(e) => {
println!("I/O failure during tests: {:?}", e);
2018-06-07 19:16:50 +02:00
},
}
2015-04-13 19:58:18 +02:00
}
fn prepare_env() {
2017-09-01 10:29:49 +02:00
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
2017-09-18 12:47:33 +02:00
set_var("CLIPPY_TESTS", "true");
2018-03-13 15:02:40 +01:00
//set_var("RUST_BACKTRACE", "0");
}
2015-04-13 19:58:18 +02:00
#[test]
fn compile_test() {
prepare_env();
run_mode("ui", "tests/ui".into());
run_ui_toml();
2015-04-13 19:58:18 +02:00
}