2020-02-09 05:00:49 +00:00
|
|
|
#![feature(test)] // compiletest_rs requires this attribute
|
2022-12-12 05:42:45 +00:00
|
|
|
#![feature(lazy_cell)]
|
2022-06-04 11:34:07 +00:00
|
|
|
#![feature(is_sorted)]
|
2021-09-08 14:31:47 +00:00
|
|
|
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
|
|
|
|
#![warn(rust_2018_idioms, unused_lifetimes)]
|
2017-11-14 13:56:00 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
use compiletest::{status_emitter, CommandBuilder};
|
|
|
|
use ui_test as compiletest;
|
|
|
|
use ui_test::Mode as TestMode;
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2021-06-03 06:41:37 +00:00
|
|
|
use std::env::{self, remove_var, set_var, var_os};
|
|
|
|
use std::ffi::{OsStr, OsString};
|
2018-05-30 18:29:00 +00:00
|
|
|
use std::fs;
|
2018-05-22 08:21:42 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2022-01-13 12:18:19 +00:00
|
|
|
use test_utils::IS_RUSTC_TEST_SUITE;
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2022-01-13 12:18:19 +00:00
|
|
|
mod test_utils;
|
2019-11-07 07:01:25 +00:00
|
|
|
|
2020-12-06 14:01:03 +00:00
|
|
|
// whether to run internal tests or not
|
2022-01-13 12:18:19 +00:00
|
|
|
const RUN_INTERNAL_TESTS: bool = cfg!(feature = "internal");
|
2020-12-06 14:01:03 +00:00
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
fn base_config(test_dir: &str) -> compiletest::Config {
|
2021-11-04 12:52:36 +00:00
|
|
|
let mut config = compiletest::Config {
|
2023-02-28 16:12:10 +00:00
|
|
|
mode: TestMode::Yolo,
|
|
|
|
stderr_filters: vec![],
|
|
|
|
stdout_filters: vec![],
|
|
|
|
output_conflict_handling: if std::env::args().any(|arg| arg == "--bless") {
|
|
|
|
compiletest::OutputConflictHandling::Bless
|
|
|
|
} else {
|
|
|
|
compiletest::OutputConflictHandling::Error("cargo test -- -- --bless".into())
|
|
|
|
},
|
|
|
|
dependencies_crate_manifest_path: Some("clippy_test_deps/Cargo.toml".into()),
|
|
|
|
target: None,
|
|
|
|
out_dir: "target/ui_test".into(),
|
|
|
|
..compiletest::Config::rustc(Path::new("tests").join(test_dir))
|
2021-11-04 12:52:36 +00:00
|
|
|
};
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
if let Some(_path) = option_env!("RUSTC_LIB_PATH") {
|
|
|
|
//let path = PathBuf::from(path);
|
|
|
|
//config.run_lib_path = path.clone();
|
|
|
|
//config.compile_lib_path = path;
|
2017-11-14 13:56:00 +00:00
|
|
|
}
|
2022-02-10 17:40:06 +00:00
|
|
|
let current_exe_path = env::current_exe().unwrap();
|
2021-09-28 17:03:12 +00:00
|
|
|
let deps_path = current_exe_path.parent().unwrap();
|
|
|
|
let profile_path = deps_path.parent().unwrap();
|
2019-04-22 13:04:48 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
config.program.args.push("--emit=metadata".into());
|
|
|
|
config.program.args.push("-Aunused".into());
|
|
|
|
config.program.args.push("-Zui-testing".into());
|
|
|
|
config.program.args.push("-Dwarnings".into());
|
|
|
|
|
|
|
|
// Normalize away slashes in windows paths.
|
2023-06-15 19:15:10 +00:00
|
|
|
config.stderr_filter(r"\\", "/");
|
2023-02-28 16:12:10 +00:00
|
|
|
|
|
|
|
//config.build_base = profile_path.join("test").join(test_dir);
|
|
|
|
config.program.program = profile_path.join(if cfg!(windows) {
|
2021-09-28 17:03:12 +00:00
|
|
|
"clippy-driver.exe"
|
|
|
|
} else {
|
|
|
|
"clippy-driver"
|
|
|
|
});
|
2017-11-14 13:56:00 +00:00
|
|
|
config
|
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
fn test_filter() -> Box<dyn Sync + Fn(&Path) -> bool> {
|
|
|
|
if let Ok(filters) = env::var("TESTNAME") {
|
|
|
|
let filters: Vec<_> = filters.split(',').map(ToString::to_string).collect();
|
2023-06-27 20:36:05 +00:00
|
|
|
Box::new(move |path| filters.iter().any(|f| path.to_string_lossy().contains(f)))
|
2023-02-28 16:12:10 +00:00
|
|
|
} else {
|
|
|
|
Box::new(|_| true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
fn run_ui() {
|
2023-02-28 16:12:10 +00:00
|
|
|
let config = base_config("ui");
|
|
|
|
//config.rustfix_coverage = true;
|
2021-06-03 06:41:37 +00:00
|
|
|
// use tests/clippy.toml
|
2022-02-10 17:40:06 +00:00
|
|
|
let _g = VarGuard::set("CARGO_MANIFEST_DIR", fs::canonicalize("tests").unwrap());
|
2022-02-26 13:26:21 +00:00
|
|
|
let _threads = VarGuard::set(
|
|
|
|
"RUST_TEST_THREADS",
|
|
|
|
// if RUST_TEST_THREADS is set, adhere to it, otherwise override it
|
2022-03-14 11:02:53 +00:00
|
|
|
env::var("RUST_TEST_THREADS").unwrap_or_else(|_| {
|
|
|
|
std::thread::available_parallelism()
|
|
|
|
.map_or(1, std::num::NonZeroUsize::get)
|
|
|
|
.to_string()
|
|
|
|
}),
|
2022-02-26 13:26:21 +00:00
|
|
|
);
|
2023-02-28 16:12:10 +00:00
|
|
|
eprintln!(" Compiler: {}", config.program.display());
|
|
|
|
|
|
|
|
let name = config.root_dir.display().to_string();
|
|
|
|
|
|
|
|
let test_filter = test_filter();
|
|
|
|
|
|
|
|
compiletest::run_tests_generic(
|
|
|
|
config,
|
|
|
|
move |path| compiletest::default_file_filter(path) && test_filter(path),
|
|
|
|
compiletest::default_per_file_config,
|
|
|
|
(status_emitter::Text, status_emitter::Gha::<true> { name }),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2022-06-04 11:34:07 +00:00
|
|
|
check_rustfix_coverage();
|
2021-10-21 11:11:36 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
fn run_internal_tests() {
|
2020-12-06 14:01:03 +00:00
|
|
|
// only run internal tests with the internal-tests feature
|
|
|
|
if !RUN_INTERNAL_TESTS {
|
|
|
|
return;
|
|
|
|
}
|
2023-02-28 16:12:10 +00:00
|
|
|
let mut config = base_config("ui-internal");
|
|
|
|
config.dependency_builder.args.push("--features".into());
|
|
|
|
config.dependency_builder.args.push("internal".into());
|
|
|
|
compiletest::run_tests(config).unwrap();
|
2020-12-06 14:01:03 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
fn run_ui_toml() {
|
|
|
|
let mut config = base_config("ui-toml");
|
2020-02-01 10:04:04 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
config.stderr_filter(
|
|
|
|
®ex::escape(
|
|
|
|
&std::path::Path::new(file!())
|
|
|
|
.parent()
|
|
|
|
.unwrap()
|
|
|
|
.canonicalize()
|
|
|
|
.unwrap()
|
|
|
|
.parent()
|
|
|
|
.unwrap()
|
|
|
|
.display()
|
|
|
|
.to_string()
|
|
|
|
.replace('\\', "/"),
|
|
|
|
),
|
|
|
|
"$$DIR",
|
|
|
|
);
|
|
|
|
|
|
|
|
let name = config.root_dir.display().to_string();
|
|
|
|
|
|
|
|
let test_filter = test_filter();
|
2018-05-30 19:26:09 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
ui_test::run_tests_generic(
|
|
|
|
config,
|
|
|
|
|path| test_filter(path) && path.extension() == Some("rs".as_ref()),
|
|
|
|
|config, path| {
|
|
|
|
let mut config = config.clone();
|
|
|
|
config
|
|
|
|
.program
|
|
|
|
.envs
|
|
|
|
.push(("CLIPPY_CONF_DIR".into(), Some(path.parent().unwrap().into())));
|
|
|
|
Some(config)
|
2020-05-28 13:45:24 +00:00
|
|
|
},
|
2023-02-28 16:12:10 +00:00
|
|
|
(status_emitter::Text, status_emitter::Gha::<true> { name }),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-05-28 13:45:24 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
fn run_ui_cargo() {
|
2022-01-13 12:18:19 +00:00
|
|
|
if IS_RUSTC_TEST_SUITE {
|
2020-08-11 13:43:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
let mut config = base_config("ui-cargo");
|
2023-06-26 14:30:19 +00:00
|
|
|
config.program.input_file_flag = CommandBuilder::cargo().input_file_flag;
|
|
|
|
config.program.out_dir_flag = CommandBuilder::cargo().out_dir_flag;
|
2023-02-28 16:12:10 +00:00
|
|
|
config.program.args = vec!["clippy".into(), "--color".into(), "never".into(), "--quiet".into()];
|
|
|
|
config
|
|
|
|
.program
|
|
|
|
.envs
|
|
|
|
.push(("RUSTFLAGS".into(), Some("-Dwarnings".into())));
|
|
|
|
// We need to do this while we still have a rustc in the `program` field.
|
|
|
|
config.fill_host_and_target().unwrap();
|
|
|
|
config.dependencies_crate_manifest_path = None;
|
|
|
|
config.program.program.set_file_name(if cfg!(windows) {
|
|
|
|
"cargo-clippy.exe"
|
|
|
|
} else {
|
|
|
|
"cargo-clippy"
|
|
|
|
});
|
|
|
|
config.edition = None;
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
config.stderr_filter(
|
|
|
|
®ex::escape(
|
|
|
|
&std::path::Path::new(file!())
|
|
|
|
.parent()
|
|
|
|
.unwrap()
|
|
|
|
.canonicalize()
|
|
|
|
.unwrap()
|
|
|
|
.parent()
|
|
|
|
.unwrap()
|
|
|
|
.display()
|
|
|
|
.to_string()
|
|
|
|
.replace('\\', "/"),
|
|
|
|
),
|
|
|
|
"$$DIR",
|
|
|
|
);
|
|
|
|
|
|
|
|
let name = config.root_dir.display().to_string();
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
let test_filter = test_filter();
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
ui_test::run_tests_generic(
|
|
|
|
config,
|
|
|
|
|path| test_filter(path) && path.ends_with("Cargo.toml"),
|
|
|
|
|config, path| {
|
|
|
|
let mut config = config.clone();
|
|
|
|
config.out_dir = PathBuf::from("target/ui_test_cargo/").join(path.parent().unwrap());
|
|
|
|
Some(config)
|
2018-06-07 17:16:50 +00:00
|
|
|
},
|
2023-02-28 16:12:10 +00:00
|
|
|
(status_emitter::Text, status_emitter::Gha::<true> { name }),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|
|
|
|
|
2023-02-28 16:12:10 +00:00
|
|
|
fn main() {
|
2023-06-27 18:25:35 +00:00
|
|
|
// Support being run by cargo nextest - https://nexte.st/book/custom-test-harnesses.html
|
|
|
|
if env::args().any(|arg| arg == "--list") {
|
|
|
|
if !env::args().any(|arg| arg == "--ignored") {
|
|
|
|
println!("compile_test: test");
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-27 14:12:45 +00:00
|
|
|
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
|
2022-02-10 17:40:06 +00:00
|
|
|
run_ui();
|
|
|
|
run_ui_toml();
|
|
|
|
run_ui_cargo();
|
|
|
|
run_internal_tests();
|
2023-02-28 16:12:10 +00:00
|
|
|
rustfix_coverage_known_exceptions_accuracy();
|
|
|
|
ui_cargo_toml_metadata();
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|
2021-06-03 06:41:37 +00:00
|
|
|
|
2022-06-04 11:34:07 +00:00
|
|
|
const RUSTFIX_COVERAGE_KNOWN_EXCEPTIONS: &[&str] = &[
|
|
|
|
"assign_ops2.rs",
|
|
|
|
"borrow_deref_ref_unfixable.rs",
|
|
|
|
"cast_size_32bit.rs",
|
|
|
|
"char_lit_as_u8.rs",
|
|
|
|
"cmp_owned/without_suggestion.rs",
|
|
|
|
"dbg_macro.rs",
|
|
|
|
"deref_addrof_double_trigger.rs",
|
|
|
|
"doc/unbalanced_ticks.rs",
|
|
|
|
"eprint_with_newline.rs",
|
|
|
|
"explicit_counter_loop.rs",
|
|
|
|
"iter_skip_next_unfixable.rs",
|
|
|
|
"let_and_return.rs",
|
|
|
|
"literals.rs",
|
|
|
|
"map_flatten.rs",
|
|
|
|
"map_unwrap_or.rs",
|
|
|
|
"match_bool.rs",
|
|
|
|
"mem_replace_macro.rs",
|
|
|
|
"needless_arbitrary_self_type_unfixable.rs",
|
|
|
|
"needless_borrow_pat.rs",
|
|
|
|
"needless_for_each_unfixable.rs",
|
|
|
|
"nonminimal_bool.rs",
|
|
|
|
"print_literal.rs",
|
|
|
|
"redundant_static_lifetimes_multiple.rs",
|
|
|
|
"ref_binding_to_reference.rs",
|
|
|
|
"repl_uninit.rs",
|
|
|
|
"result_map_unit_fn_unfixable.rs",
|
|
|
|
"search_is_some.rs",
|
|
|
|
"single_component_path_imports_nested_first.rs",
|
|
|
|
"string_add.rs",
|
2022-08-31 13:24:45 +00:00
|
|
|
"suspicious_to_owned.rs",
|
2022-06-04 11:34:07 +00:00
|
|
|
"toplevel_ref_arg_non_rustfix.rs",
|
|
|
|
"unit_arg.rs",
|
|
|
|
"unnecessary_clone.rs",
|
|
|
|
"unnecessary_lazy_eval_unfixable.rs",
|
|
|
|
"write_literal.rs",
|
|
|
|
"write_literal_2.rs",
|
|
|
|
];
|
|
|
|
|
|
|
|
fn check_rustfix_coverage() {
|
2022-08-31 13:24:45 +00:00
|
|
|
let missing_coverage_path = Path::new("debug/test/ui/rustfix_missing_coverage.txt");
|
|
|
|
let missing_coverage_path = if let Ok(target_dir) = std::env::var("CARGO_TARGET_DIR") {
|
|
|
|
PathBuf::from(target_dir).join(missing_coverage_path)
|
|
|
|
} else {
|
|
|
|
missing_coverage_path.to_path_buf()
|
|
|
|
};
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
if let Ok(missing_coverage_contents) = std::fs::read_to_string(missing_coverage_path) {
|
|
|
|
assert!(RUSTFIX_COVERAGE_KNOWN_EXCEPTIONS.iter().is_sorted_by_key(Path::new));
|
|
|
|
|
2022-08-31 13:24:45 +00:00
|
|
|
for rs_file in missing_coverage_contents.lines() {
|
|
|
|
let rs_path = Path::new(rs_file);
|
|
|
|
if rs_path.starts_with("tests/ui/crashes") {
|
2022-06-04 11:34:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
2022-10-06 07:44:38 +00:00
|
|
|
assert!(rs_path.starts_with("tests/ui/"), "{rs_file:?}");
|
2022-08-31 13:24:45 +00:00
|
|
|
let filename = rs_path.strip_prefix("tests/ui/").unwrap();
|
2022-06-04 11:34:07 +00:00
|
|
|
assert!(
|
|
|
|
RUSTFIX_COVERAGE_KNOWN_EXCEPTIONS
|
|
|
|
.binary_search_by_key(&filename, Path::new)
|
|
|
|
.is_ok(),
|
2022-10-06 07:44:38 +00:00
|
|
|
"`{rs_file}` runs `MachineApplicable` diagnostics but is missing a `run-rustfix` annotation. \
|
2023-04-20 14:37:15 +00:00
|
|
|
Please either add `//@run-rustfix` at the top of the file or add the file to \
|
2022-06-04 11:34:07 +00:00
|
|
|
`RUSTFIX_COVERAGE_KNOWN_EXCEPTIONS` in `tests/compile-test.rs`.",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rustfix_coverage_known_exceptions_accuracy() {
|
|
|
|
for filename in RUSTFIX_COVERAGE_KNOWN_EXCEPTIONS {
|
|
|
|
let rs_path = Path::new("tests/ui").join(filename);
|
2023-02-28 16:12:10 +00:00
|
|
|
assert!(rs_path.exists(), "`{}` does not exist", rs_path.display());
|
2022-06-04 11:34:07 +00:00
|
|
|
let fixed_path = rs_path.with_extension("fixed");
|
2023-02-28 16:12:10 +00:00
|
|
|
println!("{}", fixed_path.display());
|
|
|
|
assert!(!fixed_path.exists(), "`{}` exists", fixed_path.display());
|
2022-06-04 11:34:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-28 17:08:22 +00:00
|
|
|
fn ui_cargo_toml_metadata() {
|
|
|
|
let ui_cargo_path = Path::new("tests/ui-cargo");
|
|
|
|
let cargo_common_metadata_path = ui_cargo_path.join("cargo_common_metadata");
|
|
|
|
let publish_exceptions =
|
|
|
|
["fail_publish", "fail_publish_true", "pass_publish_empty"].map(|path| cargo_common_metadata_path.join(path));
|
|
|
|
|
|
|
|
for entry in walkdir::WalkDir::new(ui_cargo_path) {
|
|
|
|
let entry = entry.unwrap();
|
|
|
|
let path = entry.path();
|
|
|
|
if path.file_name() != Some(OsStr::new("Cargo.toml")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let toml = fs::read_to_string(path).unwrap().parse::<toml::Value>().unwrap();
|
|
|
|
|
|
|
|
let package = toml.as_table().unwrap().get("package").unwrap().as_table().unwrap();
|
|
|
|
|
|
|
|
let name = package.get("name").unwrap().as_str().unwrap().replace('-', "_");
|
|
|
|
assert!(
|
|
|
|
path.parent()
|
|
|
|
.unwrap()
|
|
|
|
.components()
|
|
|
|
.map(|component| component.as_os_str().to_string_lossy().replace('-', "_"))
|
|
|
|
.any(|s| *s == name)
|
|
|
|
|| path.starts_with(&cargo_common_metadata_path),
|
2022-10-06 07:44:38 +00:00
|
|
|
"{path:?} has incorrect package name"
|
2022-07-28 17:08:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
let publish = package.get("publish").and_then(toml::Value::as_bool).unwrap_or(true);
|
|
|
|
assert!(
|
|
|
|
!publish || publish_exceptions.contains(&path.parent().unwrap().to_path_buf()),
|
2022-10-06 07:44:38 +00:00
|
|
|
"{path:?} lacks `publish = false`"
|
2022-07-28 17:08:22 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-03 06:41:37 +00:00
|
|
|
/// Restores an env var on drop
|
|
|
|
#[must_use]
|
|
|
|
struct VarGuard {
|
|
|
|
key: &'static str,
|
|
|
|
value: Option<OsString>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VarGuard {
|
|
|
|
fn set(key: &'static str, val: impl AsRef<OsStr>) -> Self {
|
|
|
|
let value = var_os(key);
|
|
|
|
set_var(key, val);
|
|
|
|
Self { key, value }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for VarGuard {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
match self.value.as_deref() {
|
|
|
|
None => remove_var(self.key),
|
|
|
|
Some(value) => set_var(self.key, value),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|