diff options
Diffstat (limited to 'xtask/tests')
-rw-r--r-- | xtask/tests/tidy-tests/cli.rs | 32 | ||||
-rw-r--r-- | xtask/tests/tidy.rs (renamed from xtask/tests/tidy-tests/main.rs) | 39 |
2 files changed, 34 insertions, 37 deletions
diff --git a/xtask/tests/tidy-tests/cli.rs b/xtask/tests/tidy-tests/cli.rs deleted file mode 100644 index f5b00a8b8..000000000 --- a/xtask/tests/tidy-tests/cli.rs +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | use xtask::{ | ||
2 | codegen::{self, Mode}, | ||
3 | run_rustfmt, | ||
4 | }; | ||
5 | |||
6 | #[test] | ||
7 | fn generated_grammar_is_fresh() { | ||
8 | if let Err(error) = codegen::generate_syntax(Mode::Verify) { | ||
9 | panic!("{}. Please update it by running `cargo xtask codegen`", error); | ||
10 | } | ||
11 | } | ||
12 | |||
13 | #[test] | ||
14 | fn generated_tests_are_fresh() { | ||
15 | if let Err(error) = codegen::generate_parser_tests(Mode::Verify) { | ||
16 | panic!("{}. Please update tests by running `cargo xtask codegen`", error); | ||
17 | } | ||
18 | } | ||
19 | |||
20 | #[test] | ||
21 | fn generated_assists_are_fresh() { | ||
22 | if let Err(error) = codegen::generate_assists_docs(Mode::Verify) { | ||
23 | panic!("{}. Please update assists by running `cargo xtask codegen`", error); | ||
24 | } | ||
25 | } | ||
26 | |||
27 | #[test] | ||
28 | fn check_code_formatting() { | ||
29 | if let Err(error) = run_rustfmt(Mode::Verify) { | ||
30 | panic!("{}. Please format the code by running `cargo format`", error); | ||
31 | } | ||
32 | } | ||
diff --git a/xtask/tests/tidy-tests/main.rs b/xtask/tests/tidy.rs index 3213c4dfa..b8e8860ba 100644 --- a/xtask/tests/tidy-tests/main.rs +++ b/xtask/tests/tidy.rs | |||
@@ -1,11 +1,41 @@ | |||
1 | mod cli; | ||
2 | |||
3 | use std::{ | 1 | use std::{ |
4 | collections::HashMap, | 2 | collections::HashMap, |
5 | path::{Path, PathBuf}, | 3 | path::{Path, PathBuf}, |
6 | }; | 4 | }; |
7 | 5 | ||
8 | use xtask::{not_bash::fs2, project_root, rust_files}; | 6 | use xtask::{ |
7 | codegen::{self, Mode}, | ||
8 | not_bash::fs2, | ||
9 | project_root, run_rustfmt, rust_files, | ||
10 | }; | ||
11 | |||
12 | #[test] | ||
13 | fn generated_grammar_is_fresh() { | ||
14 | if let Err(error) = codegen::generate_syntax(Mode::Verify) { | ||
15 | panic!("{}. Please update it by running `cargo xtask codegen`", error); | ||
16 | } | ||
17 | } | ||
18 | |||
19 | #[test] | ||
20 | fn generated_tests_are_fresh() { | ||
21 | if let Err(error) = codegen::generate_parser_tests(Mode::Verify) { | ||
22 | panic!("{}. Please update tests by running `cargo xtask codegen`", error); | ||
23 | } | ||
24 | } | ||
25 | |||
26 | #[test] | ||
27 | fn generated_assists_are_fresh() { | ||
28 | if let Err(error) = codegen::generate_assists_docs(Mode::Verify) { | ||
29 | panic!("{}. Please update assists by running `cargo xtask codegen`", error); | ||
30 | } | ||
31 | } | ||
32 | |||
33 | #[test] | ||
34 | fn check_code_formatting() { | ||
35 | if let Err(error) = run_rustfmt(Mode::Verify) { | ||
36 | panic!("{}. Please format the code by running `cargo format`", error); | ||
37 | } | ||
38 | } | ||
9 | 39 | ||
10 | #[test] | 40 | #[test] |
11 | fn rust_files_are_tidy() { | 41 | fn rust_files_are_tidy() { |
@@ -24,7 +54,7 @@ fn check_todo(path: &Path, text: &str) { | |||
24 | // This file itself is whitelisted since this test itself contains matches. | 54 | // This file itself is whitelisted since this test itself contains matches. |
25 | "tests/cli.rs", | 55 | "tests/cli.rs", |
26 | // Some of our assists generate `todo!()` so those files are whitelisted. | 56 | // Some of our assists generate `todo!()` so those files are whitelisted. |
27 | "doc_tests/generated.rs", | 57 | "tests/generated.rs", |
28 | "handlers/add_missing_impl_members.rs", | 58 | "handlers/add_missing_impl_members.rs", |
29 | "handlers/add_function.rs", | 59 | "handlers/add_function.rs", |
30 | // To support generating `todo!()` in assists, we have `expr_todo()` in ast::make. | 60 | // To support generating `todo!()` in assists, we have `expr_todo()` in ast::make. |
@@ -106,7 +136,6 @@ impl TidyDocs { | |||
106 | } | 136 | } |
107 | 137 | ||
108 | let whitelist = [ | 138 | let whitelist = [ |
109 | "ra_db", | ||
110 | "ra_hir", | 139 | "ra_hir", |
111 | "ra_hir_expand", | 140 | "ra_hir_expand", |
112 | "ra_ide", | 141 | "ra_ide", |