2020-03-17 04:26:29 -05:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
|
|
|
path::{Path, PathBuf},
|
|
|
|
};
|
|
|
|
|
2020-10-16 12:46:03 -05:00
|
|
|
use xshell::{cmd, read_file};
|
2020-05-06 03:25:25 -05:00
|
|
|
use xtask::{
|
|
|
|
codegen::{self, Mode},
|
|
|
|
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
|
|
|
|
2020-10-06 08:17:16 -05:00
|
|
|
#[test]
|
|
|
|
fn smoke_test_docs_generation() {
|
|
|
|
// We don't commit docs to the repo, so we can just overwrite in tests.
|
|
|
|
codegen::generate_assists_docs(Mode::Overwrite).unwrap();
|
|
|
|
codegen::generate_feature_docs(Mode::Overwrite).unwrap();
|
2020-10-19 13:07:40 -05:00
|
|
|
codegen::generate_diagnostic_docs(Mode::Overwrite).unwrap();
|
2020-10-06 08:17:16 -05:00
|
|
|
}
|
|
|
|
|
2020-10-14 06:30:06 -05:00
|
|
|
#[test]
|
|
|
|
fn check_lsp_extensions_docs() {
|
|
|
|
let expected_hash = {
|
|
|
|
let lsp_ext_rs =
|
2020-10-16 12:46:03 -05:00
|
|
|
read_file(project_root().join("crates/rust-analyzer/src/lsp_ext.rs")).unwrap();
|
2020-10-14 06:30:06 -05:00
|
|
|
stable_hash(lsp_ext_rs.as_str())
|
|
|
|
};
|
|
|
|
|
|
|
|
let actual_hash = {
|
|
|
|
let lsp_extensions_md =
|
2020-10-16 12:46:03 -05:00
|
|
|
read_file(project_root().join("docs/dev/lsp-extensions.md")).unwrap();
|
2020-10-14 06:30:06 -05:00
|
|
|
let text = lsp_extensions_md
|
|
|
|
.lines()
|
|
|
|
.find_map(|line| line.strip_prefix("lsp_ext.rs hash:"))
|
|
|
|
.unwrap()
|
|
|
|
.trim();
|
|
|
|
u64::from_str_radix(text, 16).unwrap()
|
|
|
|
};
|
|
|
|
|
|
|
|
if actual_hash != expected_hash {
|
|
|
|
panic!(
|
|
|
|
"
|
|
|
|
lsp_ext.rs was changed without touching lsp-extensions.md.
|
|
|
|
|
|
|
|
Expected hash: {:x}
|
|
|
|
Actual hash: {:x}
|
|
|
|
|
|
|
|
Please adjust docs/dev/lsp-extensions.md.
|
|
|
|
",
|
|
|
|
expected_hash, actual_hash
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-10-16 12:46:03 -05:00
|
|
|
let text = read_file(&path).unwrap();
|
2020-03-17 04:26:29 -05:00
|
|
|
check_todo(&path, &text);
|
2020-03-17 04:46:46 -05:00
|
|
|
check_trailing_ws(&path, &text);
|
2020-08-12 05:45:38 -05:00
|
|
|
deny_clippy(&path, &text);
|
2020-03-17 04:26:29 -05:00
|
|
|
tidy_docs.visit(&path, &text);
|
|
|
|
}
|
|
|
|
tidy_docs.finish();
|
|
|
|
}
|
|
|
|
|
2020-08-24 16:17:00 -05:00
|
|
|
#[test]
|
|
|
|
fn check_merge_commits() {
|
2020-10-16 12:46:03 -05:00
|
|
|
let stdout =
|
|
|
|
dbg!(cmd!("git rev-list --merges --invert-grep --author 'bors\\[bot\\]' HEAD~19.."))
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2020-09-01 02:38:17 -05:00
|
|
|
if !stdout.is_empty() {
|
|
|
|
panic!(
|
|
|
|
"
|
|
|
|
Merge commits are not allowed in the history.
|
|
|
|
|
|
|
|
When updating a pull-request, please rebase your feature branch
|
|
|
|
on top of master by running `git rebase master`. If rebase fails,
|
|
|
|
you can re-apply your changes like this:
|
|
|
|
|
|
|
|
# Abort in-progress rebase, if any.
|
|
|
|
$ git rebase --abort
|
|
|
|
|
|
|
|
# Make the branch point to the latest commit from master,
|
|
|
|
# while maintaining your local changes uncommited.
|
|
|
|
$ git reset --soft origin/master
|
|
|
|
|
|
|
|
# Commit all changes in a single batch.
|
|
|
|
$ git commit -am'My changes'
|
|
|
|
|
|
|
|
# Push the changes. We did a rebase, so we need `--force` option.
|
|
|
|
# `--force-with-lease` is a more safe (Rusty) version of `--force`.
|
|
|
|
$ git push --force-with-lease
|
|
|
|
|
|
|
|
And don't fear to mess something up during a rebase -- you can
|
|
|
|
always restore the previous state using `git ref-log`:
|
|
|
|
|
|
|
|
https://github.blog/2015-06-08-how-to-undo-almost-anything-with-git/#redo-after-undo-local
|
|
|
|
"
|
|
|
|
);
|
2020-08-24 16:17:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 05:45:38 -05:00
|
|
|
fn deny_clippy(path: &PathBuf, text: &String) {
|
2020-10-20 14:29:31 -05:00
|
|
|
let ignore = &[
|
|
|
|
// The documentation in string literals may contain anything for its own purposes
|
|
|
|
"completion/src/generated_lint_completions.rs",
|
|
|
|
];
|
|
|
|
if ignore.iter().any(|p| path.ends_with(p)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-12 05:45:38 -05:00
|
|
|
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 06:03:43 -05:00
|
|
|
See https://github.com/rust-lang/rust-clippy/issues/5537 for discussion.
|
2020-08-12 05:45:38 -05:00
|
|
|
|
|
|
|
",
|
|
|
|
path.display()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-14 10:14:00 -05:00
|
|
|
#[test]
|
|
|
|
fn check_licenses() {
|
|
|
|
let expected = "
|
|
|
|
0BSD OR MIT OR Apache-2.0
|
2020-07-31 19:55:04 -05:00
|
|
|
Apache-2.0
|
2020-07-14 10:14:00 -05:00
|
|
|
Apache-2.0 OR BSL-1.0
|
|
|
|
Apache-2.0 OR MIT
|
2020-08-27 11:55:42 -05:00
|
|
|
Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
|
2020-07-14 10:14:00 -05:00
|
|
|
Apache-2.0/MIT
|
|
|
|
BSD-2-Clause
|
|
|
|
BSD-3-Clause
|
|
|
|
CC0-1.0
|
|
|
|
ISC
|
|
|
|
MIT
|
|
|
|
MIT / Apache-2.0
|
|
|
|
MIT OR Apache-2.0
|
2020-10-08 08:43:00 -05:00
|
|
|
MIT OR Zlib OR Apache-2.0
|
2020-07-14 10:14:00 -05:00
|
|
|
MIT/Apache-2.0
|
|
|
|
Unlicense OR MIT
|
|
|
|
Unlicense/MIT
|
2020-08-18 03:49:18 -05:00
|
|
|
Zlib OR Apache-2.0 OR MIT
|
2020-07-14 10:14:00 -05:00
|
|
|
"
|
|
|
|
.lines()
|
|
|
|
.filter(|it| !it.is_empty())
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
2020-10-16 12:46:03 -05:00
|
|
|
let meta = cmd!("cargo metadata --format-version 1").read().unwrap();
|
2020-07-14 10:14:00 -05:00
|
|
|
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();
|
2020-10-16 12:46:03 -05:00
|
|
|
if licenses != expected {
|
|
|
|
let mut diff = String::new();
|
|
|
|
|
|
|
|
diff += &format!("New Licenses:\n");
|
|
|
|
for &l in licenses.iter() {
|
|
|
|
if !expected.contains(&l) {
|
|
|
|
diff += &format!(" {}\n", l)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diff += &format!("\nMissing Licenses:\n");
|
|
|
|
for &l in expected.iter() {
|
|
|
|
if !licenses.contains(&l) {
|
|
|
|
diff += &format!(" {}\n", l)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
panic!("different set of licenses!\n{}", diff);
|
|
|
|
}
|
2020-07-31 18:52:24 -05:00
|
|
|
assert_eq!(licenses, expected);
|
2020-07-14 10:14:00 -05:00
|
|
|
}
|
|
|
|
|
2020-03-17 04:26:29 -05:00
|
|
|
fn check_todo(path: &Path, text: &str) {
|
2020-07-08 15:47:50 -05:00
|
|
|
let need_todo = &[
|
|
|
|
// This file itself obviously needs to use todo (<- like this!).
|
2020-04-10 15:41:11 -05:00
|
|
|
"tests/cli.rs",
|
2020-07-08 15:47:50 -05:00
|
|
|
// Some of our assists generate `todo!()`.
|
2020-05-06 03:21:35 -05:00
|
|
|
"tests/generated.rs",
|
2020-11-05 16:34:50 -06:00
|
|
|
"handlers/add_custom_impl.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-07-08 15:47:50 -05:00
|
|
|
// To support generating `todo!()` in assists, we have `expr_todo()` in
|
|
|
|
// `ast::make`.
|
2020-04-10 15:41:11 -05:00
|
|
|
"ast/make.rs",
|
2020-08-09 12:35:42 -05:00
|
|
|
// The documentation in string literals may contain anything for its own purposes
|
2020-10-20 14:29:31 -05:00
|
|
|
"completion/src/generated_lint_completions.rs",
|
2020-04-10 15:41:11 -05:00
|
|
|
];
|
2020-07-08 15:47:50 -05:00
|
|
|
if need_todo.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")
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-07-08 15:47:50 -05:00
|
|
|
let poorly_documented = [
|
2020-08-13 09:36:55 -05:00
|
|
|
"hir",
|
2020-08-13 09:26:29 -05:00
|
|
|
"hir_expand",
|
2020-08-13 10:42:52 -05:00
|
|
|
"ide",
|
2020-08-13 03:08:11 -05:00
|
|
|
"mbe",
|
2020-08-12 10:06:49 -05:00
|
|
|
"parser",
|
2020-08-12 09:32:36 -05:00
|
|
|
"profile",
|
2020-08-13 05:05:30 -05:00
|
|
|
"project_model",
|
2020-08-12 11:26:51 -05:00
|
|
|
"syntax",
|
2020-08-12 09:46:20 -05:00
|
|
|
"tt",
|
2020-08-13 09:35:29 -05:00
|
|
|
"hir_ty",
|
2020-03-17 04:26:29 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
let mut has_fixmes =
|
2020-07-08 15:47:50 -05:00
|
|
|
poorly_documented.iter().map(|it| (*it, false)).collect::<HashMap<&str, bool>>();
|
2020-03-17 04:26:29 -05:00
|
|
|
'outer: for path in self.contains_fixme {
|
2020-07-08 15:47:50 -05:00
|
|
|
for krate in poorly_documented.iter() {
|
2020-03-17 04:26:29 -05: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 15:47:50 -05:00
|
|
|
panic!("crate {} is fully documented :tada:, remove it from the list of poorly documented crates", krate)
|
2020-03-17 04:26:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2020-10-14 06:30:06 -05:00
|
|
|
|
|
|
|
#[allow(deprecated)]
|
|
|
|
fn stable_hash(text: &str) -> u64 {
|
|
|
|
use std::hash::{Hash, Hasher, SipHasher};
|
|
|
|
|
|
|
|
let text = text.replace('\r', "");
|
|
|
|
let mut hasher = SipHasher::default();
|
|
|
|
text.hash(&mut hasher);
|
|
|
|
hasher.finish()
|
|
|
|
}
|