2020-03-17 04:26:29 -05:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
|
|
|
path::{Path, PathBuf},
|
|
|
|
};
|
|
|
|
|
2020-05-06 03:25:25 -05:00
|
|
|
use xtask::{
|
|
|
|
codegen::{self, Mode},
|
|
|
|
not_bash::fs2,
|
|
|
|
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 11:22:05 -05:00
|
|
|
if let Err(error) = codegen::generate_assists_tests(Mode::Verify) {
|
2020-05-06 03:25:25 -05: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 04:26:29 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rust_files_are_tidy() {
|
|
|
|
let mut tidy_docs = TidyDocs::default();
|
2020-03-21 10:04:28 -05:00
|
|
|
for path in rust_files(&project_root().join("crates")) {
|
2020-03-17 04:26:29 -05:00
|
|
|
let text = fs2::read_to_string(&path).unwrap();
|
|
|
|
check_todo(&path, &text);
|
2020-03-17 04:46:46 -05:00
|
|
|
check_trailing_ws(&path, &text);
|
2020-03-17 04:26:29 -05:00
|
|
|
tidy_docs.visit(&path, &text);
|
|
|
|
}
|
|
|
|
tidy_docs.finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_todo(path: &Path, text: &str) {
|
2020-04-10 15:41:11 -05:00
|
|
|
let whitelist = &[
|
|
|
|
// This file itself is whitelisted since this test itself contains matches.
|
|
|
|
"tests/cli.rs",
|
|
|
|
// Some of our assists generate `todo!()` so those files are whitelisted.
|
2020-05-06 03:21:35 -05:00
|
|
|
"tests/generated.rs",
|
2020-04-10 15:41:11 -05:00
|
|
|
"handlers/add_missing_impl_members.rs",
|
2020-05-19 17:07:00 -05:00
|
|
|
"handlers/add_turbo_fish.rs",
|
2020-07-03 11:15:03 -05:00
|
|
|
"handlers/generate_function.rs",
|
2020-04-10 15:41:11 -05:00
|
|
|
// To support generating `todo!()` in assists, we have `expr_todo()` in ast::make.
|
|
|
|
"ast/make.rs",
|
|
|
|
];
|
|
|
|
if whitelist.iter().any(|p| path.ends_with(p)) {
|
2020-03-17 04:26:29 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if text.contains("TODO") || text.contains("TOOD") || text.contains("todo!") {
|
|
|
|
panic!(
|
2020-04-17 03:32:12 -05:00
|
|
|
"\nTODO markers or todo! macros should not be committed to the master branch,\n\
|
2020-03-17 04:26:29 -05:00
|
|
|
use FIXME instead\n\
|
|
|
|
{}\n",
|
|
|
|
path.display(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-17 04:46:46 -05:00
|
|
|
fn check_trailing_ws(path: &Path, text: &str) {
|
|
|
|
if is_exclude_dir(path, &["test_data"]) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-17 03:32:12 -05:00
|
|
|
for (line_number, line) in text.lines().enumerate() {
|
2020-03-17 04:46:46 -05:00
|
|
|
if line.chars().last().map(char::is_whitespace) == Some(true) {
|
2020-04-17 03:32:12 -05:00
|
|
|
panic!("Trailing whitespace in {} at line {}", path.display(), line_number)
|
2020-03-17 04:46:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-17 04:26:29 -05:00
|
|
|
#[derive(Default)]
|
|
|
|
struct TidyDocs {
|
|
|
|
missing_docs: Vec<String>,
|
|
|
|
contains_fixme: Vec<PathBuf>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TidyDocs {
|
|
|
|
fn visit(&mut self, path: &Path, text: &str) {
|
2020-03-17 04:46:46 -05:00
|
|
|
// Test hopefully don't really need comments, and for assists we already
|
|
|
|
// have special comments which are source of doc tests and user docs.
|
2020-05-31 02:59:38 -05:00
|
|
|
if is_exclude_dir(path, &["tests", "test_data"]) {
|
2020-03-17 04:46:46 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_exclude_file(path) {
|
2020-03-17 04:26:29 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let first_line = match text.lines().next() {
|
|
|
|
Some(it) => it,
|
|
|
|
None => return,
|
|
|
|
};
|
|
|
|
|
|
|
|
if first_line.starts_with("//!") {
|
|
|
|
if first_line.contains("FIXME") {
|
2020-05-31 02:59:38 -05:00
|
|
|
self.contains_fixme.push(path.to_path_buf());
|
2020-03-17 04:26:29 -05:00
|
|
|
}
|
|
|
|
} else {
|
2020-05-31 02:59:38 -05:00
|
|
|
if text.contains("// Feature:") || text.contains("// Assist:") {
|
|
|
|
return;
|
|
|
|
}
|
2020-03-17 04:26:29 -05: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")
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
let whitelist = [
|
|
|
|
"ra_hir",
|
|
|
|
"ra_hir_expand",
|
|
|
|
"ra_ide",
|
|
|
|
"ra_mbe",
|
|
|
|
"ra_parser",
|
|
|
|
"ra_prof",
|
|
|
|
"ra_project_model",
|
|
|
|
"ra_syntax",
|
|
|
|
"ra_tt",
|
|
|
|
"ra_hir_ty",
|
|
|
|
];
|
|
|
|
|
|
|
|
let mut has_fixmes =
|
|
|
|
whitelist.iter().map(|it| (*it, false)).collect::<HashMap<&str, bool>>();
|
|
|
|
'outer: for path in self.contains_fixme {
|
|
|
|
for krate in whitelist.iter() {
|
|
|
|
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 {
|
|
|
|
panic!("crate {} is fully documented, remove it from the white list", krate)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-17 04:46:46 -05:00
|
|
|
fn is_exclude_dir(p: &Path, dirs_to_exclude: &[&str]) -> bool {
|
2020-06-02 15:15:23 -05:00
|
|
|
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))
|
2020-03-17 04:46:46 -05:00
|
|
|
}
|