clippy cargo dev: fix checking of crates

This commit is contained in:
Matthias Krüger 2020-12-18 17:25:07 +01:00
parent e69147486e
commit 69c0757334

View file

@ -50,21 +50,30 @@ impl KrateSource {
let ungz_tar = flate2::read::GzDecoder::new(dl);
// extract the tar archive
let mut archiv = tar::Archive::new(ungz_tar);
let extract_path = extract_dir.join(format!("{}-{}/", self.name, self.version));
let extract_path = extract_dir.clone();
archiv.unpack(&extract_path).expect("Failed to extract!");
// extracted
dbg!(&extract_path);
Krate {
version: self.version.clone(),
name: self.name.clone(),
path: extract_path,
path: extract_dir.join(format!("{}-{}/", self.name, self.version))
}
}
}
impl Krate {
fn run_clippy_lints(&self) -> String {
todo!();
fn run_clippy_lints(&self, cargo_clippy_path: &PathBuf) -> String {
let cargo_clippy_path = std::fs::canonicalize(cargo_clippy_path).unwrap();
let project_root = &self.path;
dbg!(&cargo_clippy_path);
dbg!(&project_root);
let output = std::process::Command::new(cargo_clippy_path).current_dir(project_root).output();
dbg!(&output);
let output = String::from_utf8_lossy(&output.unwrap().stderr).into_owned();
dbg!(&output);
output
}
}
@ -81,7 +90,7 @@ pub fn run() {
let clippy_driver_path: PathBuf = PathBuf::from("target/debug/clippy-driver");
// crates we want to check:
let krates: Vec<KrateSource> = vec![KrateSource::new("cargo", "0.49.0"), KrateSource::new("regex", "1.4.2")];
let krates: Vec<KrateSource> = vec![KrateSource::new("regex", "1.4.2"), KrateSource::new("cargo", "0.49.0"), ];
println!("Compiling clippy...");
build_clippy();
@ -103,6 +112,6 @@ pub fn run() {
let _clippy_lint_results: Vec<String> = krates
.into_iter()
.map(|krate| krate.download_and_extract())
.map(|krate| krate.run_clippy_lints())
.map(|krate| krate.run_clippy_lints(&cargo_clippy_path))
.collect::<Vec<String>>();
}