// Dogfood cannot run on Windows #![cfg(not(windows))] #![feature(once_cell)] use std::lazy::SyncLazy; use std::path::{Path, PathBuf}; use std::process::Command; mod cargo; static CLIPPY_PATH: SyncLazy = SyncLazy::new(|| cargo::TARGET_LIB.join("cargo-clippy")); #[test] fn dogfood_clippy() { // run clippy on itself and fail the test if lint warnings are reported if cargo::is_rustc_test_suite() { return; } let root_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); let mut command = Command::new(&*CLIPPY_PATH); command .current_dir(root_dir) .env("CLIPPY_DOGFOOD", "1") .env("CARGO_INCREMENTAL", "0") .arg("clippy-preview") .arg("--all-targets") .arg("--all-features") .arg("--") .args(&["-D", "clippy::all"]) .args(&["-D", "clippy::pedantic"]) .arg("-Cdebuginfo=0"); // disable debuginfo to generate less data in the target dir // internal lints only exist if we build with the internal-lints feature if cfg!(feature = "internal-lints") { command.args(&["-D", "clippy::internal"]); } let output = command.output().unwrap(); println!("status: {}", output.status); println!("stdout: {}", String::from_utf8_lossy(&output.stdout)); println!("stderr: {}", String::from_utf8_lossy(&output.stderr)); assert!(output.status.success()); } #[test] fn dogfood_subprojects() { fn test_no_deps_ignores_path_deps_in_workspaces() { fn clean(cwd: &Path, target_dir: &Path) { Command::new("cargo") .current_dir(cwd) .env("CARGO_TARGET_DIR", target_dir) .arg("clean") .args(&["-p", "subcrate"]) .args(&["-p", "path_dep"]) .output() .unwrap(); } if cargo::is_rustc_test_suite() { return; } let root = PathBuf::from(env!("CARGO_MANIFEST_DIR")); let target_dir = root.join("target").join("dogfood"); let cwd = root.join("clippy_workspace_tests"); // Make sure we start with a clean state clean(&cwd, &target_dir); // `path_dep` is a path dependency of `subcrate` that would trigger a denied lint. // Make sure that with the `--no-deps` argument Clippy does not run on `path_dep`. let output = Command::new(&*CLIPPY_PATH) .current_dir(&cwd) .env("CLIPPY_DOGFOOD", "1") .env("CARGO_INCREMENTAL", "0") .arg("clippy") .args(&["-p", "subcrate"]) .arg("--") .arg("--no-deps") .arg("-Cdebuginfo=0") // disable debuginfo to generate less data in the target dir .args(&["--cfg", r#"feature="primary_package_test""#]) .output() .unwrap(); println!("status: {}", output.status); println!("stdout: {}", String::from_utf8_lossy(&output.stdout)); println!("stderr: {}", String::from_utf8_lossy(&output.stderr)); assert!(output.status.success()); // Make sure we start with a clean state clean(&cwd, &target_dir); // Test that without the `--no-deps` argument, `path_dep` is linted. let output = Command::new(&*CLIPPY_PATH) .current_dir(&cwd) .env("CLIPPY_DOGFOOD", "1") .env("CARGO_INCREMENTAL", "0") .arg("clippy") .args(&["-p", "subcrate"]) .arg("--") .arg("-Cdebuginfo=0") // disable debuginfo to generate less data in the target dir .args(&["--cfg", r#"feature="primary_package_test""#]) .output() .unwrap(); println!("status: {}", output.status); println!("stdout: {}", String::from_utf8_lossy(&output.stdout)); println!("stderr: {}", String::from_utf8_lossy(&output.stderr)); assert!(!output.status.success()); } // run clippy on remaining subprojects and fail the test if lint warnings are reported if cargo::is_rustc_test_suite() { return; } let root_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); // NOTE: `path_dep` crate is omitted on purpose here for d in &[ "clippy_workspace_tests", "clippy_workspace_tests/src", "clippy_workspace_tests/subcrate", "clippy_workspace_tests/subcrate/src", "clippy_dev", "rustc_tools_util", ] { let output = Command::new(&*CLIPPY_PATH) .current_dir(root_dir.join(d)) .env("CLIPPY_DOGFOOD", "1") .env("CARGO_INCREMENTAL", "0") .arg("clippy") .arg("--") .args(&["-D", "clippy::all"]) .args(&["-D", "clippy::pedantic"]) .arg("-Cdebuginfo=0") // disable debuginfo to generate less data in the target dir .output() .unwrap(); println!("status: {}", output.status); println!("stdout: {}", String::from_utf8_lossy(&output.stdout)); println!("stderr: {}", String::from_utf8_lossy(&output.stderr)); assert!(output.status.success()); } // NOTE: Since tests run in parallel we can't run cargo commands on the same workspace at the // same time, so we test this immediately after the dogfood for workspaces. test_no_deps_ignores_path_deps_in_workspaces(); }