rust/xtask/tests/tidy.rs

236 lines
6.4 KiB
Rust
Raw Normal View History

2020-03-17 10:26:29 +01:00
use std::{
collections::HashMap,
path::{Path, PathBuf},
};
2020-05-06 10:25:25 +02:00
use xtask::{
codegen::{self, Mode},
2020-07-14 17:14:00 +02:00
not_bash::{fs2, run},
2020-05-06 10:25:25 +02:00
project_root, run_rustfmt, rust_files,
};
#[test]
fn generated_grammar_is_fresh() {
if let Err(error) = codegen::generate_syntax(Mode::Verify) {
panic!("{}. Please update it by running `cargo xtask codegen`", error);
}
}
#[test]
fn generated_tests_are_fresh() {
if let Err(error) = codegen::generate_parser_tests(Mode::Verify) {
panic!("{}. Please update tests by running `cargo xtask codegen`", error);
}
}
#[test]
fn generated_assists_are_fresh() {
2020-06-03 18:22:05 +02:00
if let Err(error) = codegen::generate_assists_tests(Mode::Verify) {
2020-05-06 10:25:25 +02:00
panic!("{}. Please update assists by running `cargo xtask codegen`", error);
}
}
#[test]
fn check_code_formatting() {
if let Err(error) = run_rustfmt(Mode::Verify) {
panic!("{}. Please format the code by running `cargo format`", error);
}
}
2020-03-17 10:26:29 +01:00
#[test]
fn rust_files_are_tidy() {
let mut tidy_docs = TidyDocs::default();
2020-03-21 16:04:28 +01:00
for path in rust_files(&project_root().join("crates")) {
2020-03-17 10:26:29 +01:00
let text = fs2::read_to_string(&path).unwrap();
check_todo(&path, &text);
check_trailing_ws(&path, &text);
2020-08-12 12:45:38 +02:00
deny_clippy(&path, &text);
2020-03-17 10:26:29 +01:00
tidy_docs.visit(&path, &text);
}
tidy_docs.finish();
}
2020-08-12 12:45:38 +02:00
fn deny_clippy(path: &PathBuf, text: &String) {
if text.contains("[\u{61}llow(clippy") {
panic!(
"\n\nallowing lints is forbidden: {}.
rust-analyzer intentionally doesn't check clippy on CI.
You can allow lint globally via `xtask clippy`.
2020-08-12 13:03:43 +02:00
See https://github.com/rust-lang/rust-clippy/issues/5537 for discussion.
2020-08-12 12:45:38 +02:00
",
path.display()
)
}
}
2020-07-14 17:14:00 +02:00
#[test]
fn check_licenses() {
let expected = "
0BSD OR MIT OR Apache-2.0
Apache-2.0 OR BSL-1.0
Apache-2.0 OR MIT
Apache-2.0/MIT
BSD-2-Clause
BSD-3-Clause
CC0-1.0
ISC
MIT
MIT / Apache-2.0
MIT OR Apache-2.0
MIT/Apache-2.0
MIT/Apache-2.0 AND BSD-2-Clause
Unlicense OR MIT
Unlicense/MIT
Zlib
"
.lines()
.filter(|it| !it.is_empty())
.collect::<Vec<_>>();
let meta = run!("cargo metadata --format-version 1"; echo = false).unwrap();
let mut licenses = meta
.split(|c| c == ',' || c == '{' || c == '}')
.filter(|it| it.contains(r#""license""#))
.map(|it| it.trim())
.map(|it| it[r#""license":"#.len()..].trim_matches('"'))
.collect::<Vec<_>>();
licenses.sort();
licenses.dedup();
assert_eq!(licenses, expected);
}
2020-03-17 10:26:29 +01:00
fn check_todo(path: &Path, text: &str) {
2020-07-08 22:47:50 +02:00
let need_todo = &[
// This file itself obviously needs to use todo (<- like this!).
"tests/cli.rs",
2020-07-08 22:47:50 +02:00
// Some of our assists generate `todo!()`.
2020-05-06 10:21:35 +02:00
"tests/generated.rs",
"handlers/add_missing_impl_members.rs",
2020-05-20 00:07:00 +02:00
"handlers/add_turbo_fish.rs",
2020-07-03 18:15:03 +02:00
"handlers/generate_function.rs",
2020-07-08 22:47:50 +02:00
// To support generating `todo!()` in assists, we have `expr_todo()` in
// `ast::make`.
"ast/make.rs",
];
2020-07-08 22:47:50 +02:00
if need_todo.iter().any(|p| path.ends_with(p)) {
2020-03-17 10:26:29 +01:00
return;
}
if text.contains("TODO") || text.contains("TOOD") || text.contains("todo!") {
panic!(
"\nTODO markers or todo! macros should not be committed to the master branch,\n\
2020-03-17 10:26:29 +01:00
use FIXME instead\n\
{}\n",
path.display(),
)
}
}
fn check_trailing_ws(path: &Path, text: &str) {
if is_exclude_dir(path, &["test_data"]) {
return;
}
for (line_number, line) in text.lines().enumerate() {
if line.chars().last().map(char::is_whitespace) == Some(true) {
panic!("Trailing whitespace in {} at line {}", path.display(), line_number)
}
}
}
2020-03-17 10:26:29 +01:00
#[derive(Default)]
struct TidyDocs {
missing_docs: Vec<String>,
contains_fixme: Vec<PathBuf>,
}
impl TidyDocs {
fn visit(&mut self, path: &Path, text: &str) {
// Test hopefully don't really need comments, and for assists we already
// have special comments which are source of doc tests and user docs.
if is_exclude_dir(path, &["tests", "test_data"]) {
return;
}
if is_exclude_file(path) {
2020-03-17 10:26:29 +01:00
return;
}
let first_line = match text.lines().next() {
Some(it) => it,
None => return,
};
if first_line.starts_with("//!") {
if first_line.contains("FIXME") {
self.contains_fixme.push(path.to_path_buf());
2020-03-17 10:26:29 +01:00
}
} else {
if text.contains("// Feature:") || text.contains("// Assist:") {
return;
}
2020-03-17 10:26:29 +01:00
self.missing_docs.push(path.display().to_string());
}
fn is_exclude_file(d: &Path) -> bool {
let file_names = ["tests.rs"];
d.file_name()
.unwrap_or_default()
.to_str()
.map(|f_n| file_names.iter().any(|name| *name == f_n))
.unwrap_or(false)
}
}
fn finish(self) {
if !self.missing_docs.is_empty() {
panic!(
"\nMissing docs strings\n\n\
modules:\n{}\n\n",
self.missing_docs.join("\n")
)
}
2020-07-08 22:47:50 +02:00
let poorly_documented = [
2020-03-17 10:26:29 +01:00
"ra_hir",
"ra_hir_expand",
"ra_ide",
2020-08-13 10:08:11 +02:00
"mbe",
2020-08-12 17:06:49 +02:00
"parser",
2020-08-12 16:32:36 +02:00
"profile",
2020-03-17 10:26:29 +01:00
"ra_project_model",
2020-08-12 18:26:51 +02:00
"syntax",
2020-08-12 16:46:20 +02:00
"tt",
2020-03-17 10:26:29 +01:00
"ra_hir_ty",
];
let mut has_fixmes =
2020-07-08 22:47:50 +02:00
poorly_documented.iter().map(|it| (*it, false)).collect::<HashMap<&str, bool>>();
2020-03-17 10:26:29 +01:00
'outer: for path in self.contains_fixme {
2020-07-08 22:47:50 +02:00
for krate in poorly_documented.iter() {
2020-03-17 10:26:29 +01:00
if path.components().any(|it| it.as_os_str() == *krate) {
has_fixmes.insert(krate, true);
continue 'outer;
}
}
panic!("FIXME doc in a fully-documented crate: {}", path.display())
}
for (krate, has_fixme) in has_fixmes.iter() {
if !has_fixme {
2020-07-08 22:47:50 +02:00
panic!("crate {} is fully documented :tada:, remove it from the list of poorly documented crates", krate)
2020-03-17 10:26:29 +01:00
}
}
}
}
fn is_exclude_dir(p: &Path, dirs_to_exclude: &[&str]) -> bool {
p.strip_prefix(project_root())
.unwrap()
.components()
.rev()
.skip(1)
.filter_map(|it| it.as_os_str().to_str())
.any(|it| dirs_to_exclude.contains(&it))
}