rust/xtask/tests/tidy-tests/cli.rs

49 lines
1.3 KiB
Rust
Raw Normal View History

use walkdir::WalkDir;
2019-10-23 17:13:40 +02:00
use xtask::{
codegen::{self, Mode},
project_root, run_rustfmt,
};
#[test]
fn generated_grammar_is_fresh() {
2019-10-23 17:13:40 +02:00
if let Err(error) = codegen::generate_syntax(Mode::Verify) {
2019-10-17 22:01:53 +02:00
panic!("{}. Please update it by running `cargo xtask codegen`", error);
}
}
#[test]
fn generated_tests_are_fresh() {
2019-10-23 17:13:40 +02:00
if let Err(error) = codegen::generate_parser_tests(Mode::Verify) {
2019-10-17 22:01:53 +02:00
panic!("{}. Please update tests by running `cargo xtask gen-tests`", error);
}
}
#[test]
fn check_code_formatting() {
2019-10-23 17:13:40 +02:00
if let Err(error) = run_rustfmt(Mode::Verify) {
2019-02-08 12:49:43 +01:00
panic!("{}. Please format the code by running `cargo format`", error);
}
}
2019-03-17 22:25:54 +01:00
#[test]
fn no_todo() {
WalkDir::new(project_root().join("crates")).into_iter().for_each(|e| {
let e = e.unwrap();
if e.path().extension().map(|it| it != "rs").unwrap_or(true) {
return;
}
if e.path().ends_with("tests/cli.rs") {
return;
}
let text = std::fs::read_to_string(e.path()).unwrap();
2019-09-22 22:43:23 +02:00
if text.contains("TODO") || text.contains("TOOD") {
2019-03-17 22:25:54 +01:00
panic!(
"\nTODO markers should not be committed to the master branch,\n\
2019-03-17 22:25:54 +01:00
use FIXME instead\n\
{}\n",
e.path().display(),
)
}
})
}