Change parser tests dir to inline/ok and inline/err

This commit is contained in:
DJMcNab 2018-12-20 15:09:22 +00:00
parent e2a7e94518
commit 63ca8bc91a
3 changed files with 57 additions and 34 deletions

View File

@ -24,7 +24,7 @@ fn lexer_tests() {
#[test] #[test]
fn parser_tests() { fn parser_tests() {
dir_tests(&["parser/inline", "parser/ok"], |text, path| { dir_tests(&["parser/inline/ok", "parser/ok"], |text, path| {
let file = SourceFileNode::parse(text); let file = SourceFileNode::parse(text);
let errors = file.errors(); let errors = file.errors();
assert_eq!( assert_eq!(
@ -35,7 +35,7 @@ fn parser_tests() {
); );
dump_tree(file.syntax()) dump_tree(file.syntax())
}); });
dir_tests(&["parser/err"], |text, path| { dir_tests(&["parser/err", "parser/inline/err"], |text, path| {
let file = SourceFileNode::parse(text); let file = SourceFileNode::parse(text);
let errors = file.errors(); let errors = file.errors();
assert_ne!( assert_ne!(

View File

@ -21,6 +21,7 @@ const TOOLCHAIN: &str = "1.31.0";
pub struct Test { pub struct Test {
pub name: String, pub name: String,
pub text: String, pub text: String,
pub ok: bool,
} }
pub fn collect_tests(s: &str) -> Vec<(usize, Test)> { pub fn collect_tests(s: &str) -> Vec<(usize, Test)> {
@ -38,11 +39,16 @@ pub fn collect_tests(s: &str) -> Vec<(usize, Test)> {
} }
let mut block = block.map(|(idx, line)| (idx, &line[prefix.len()..])); let mut block = block.map(|(idx, line)| (idx, &line[prefix.len()..]));
let mut ok = true;
let (start_line, name) = loop { let (start_line, name) = loop {
match block.next() { match block.next() {
Some((idx, line)) if line.starts_with("test ") => { Some((idx, line)) if line.starts_with("test ") => {
break (idx, line["test ".len()..].to_string()); break (idx, line["test ".len()..].to_string());
} }
Some((idx, line)) if line.starts_with("test_fail ") => {
ok = false;
break (idx, line["test_fail ".len()..].to_string());
}
Some(_) => (), Some(_) => (),
None => continue 'outer, None => continue 'outer,
} }
@ -52,7 +58,7 @@ pub fn collect_tests(s: &str) -> Vec<(usize, Test)> {
"\n", "\n",
); );
assert!(!text.trim().is_empty() && text.ends_with('\n')); assert!(!text.trim().is_empty() && text.ends_with('\n'));
res.push((start_line, Test { name, text })) res.push((start_line, Test { name, text, ok }))
} }
res res
} }

View File

@ -7,10 +7,11 @@ use std::{
use clap::{App, Arg, SubCommand}; use clap::{App, Arg, SubCommand};
use failure::bail; use failure::bail;
use tools::{collect_tests, generate, install_format_hook, run, run_rustfmt, Mode, Overwrite, Result, Test, Verify}; use tools::{collect_tests, generate, install_format_hook, run, run_rustfmt, Mode, Overwrite, Result, Test, Verify, project_root};
const GRAMMAR_DIR: &str = "./crates/ra_syntax/src/grammar"; const GRAMMAR_DIR: &str = "crates/ra_syntax/src/grammar";
const INLINE_TESTS_DIR: &str = "./crates/ra_syntax/tests/data/parser/inline"; const OK_INLINE_TESTS_DIR: &str = "crates/ra_syntax/tests/data/parser/inline/ok";
const ERR_INLINE_TESTS_DIR: &str = "crates/ra_syntax/tests/data/parser/inline/err";
fn main() -> Result<()> { fn main() -> Result<()> {
let matches = App::new("tasks") let matches = App::new("tasks")
@ -48,34 +49,43 @@ fn main() -> Result<()> {
fn gen_tests(mode: Mode) -> Result<()> { fn gen_tests(mode: Mode) -> Result<()> {
let tests = tests_from_dir(Path::new(GRAMMAR_DIR))?; let tests = tests_from_dir(Path::new(GRAMMAR_DIR))?;
fn install_tests(tests: &HashMap<String, Test>, into: &str, mode: Mode) -> Result<()> {
let inline_tests_dir = Path::new(INLINE_TESTS_DIR); let tests_dir = project_root().join(into);
if !inline_tests_dir.is_dir() { if !tests_dir.is_dir() {
fs::create_dir_all(inline_tests_dir)?; fs::create_dir_all(&tests_dir)?;
} }
let existing = existing_tests(inline_tests_dir)?; // ok is never is actually read, but it needs to be specified to create a Test in existing_tests
let existing = existing_tests(&tests_dir, true)?;
for t in existing.keys().filter(|&t| !tests.contains_key(t)) { for t in existing.keys().filter(|&t| !tests.contains_key(t)) {
panic!("Test is deleted: {}", t); panic!("Test is deleted: {}", t);
} }
let mut new_idx = existing.len() + 2; let mut new_idx = existing.len() + 2;
for (name, test) in tests { for (name, test) in tests {
let path = match existing.get(&name) { let path = match existing.get(name) {
Some((path, _test)) => path.clone(), Some((path, _test)) => path.clone(),
None => { None => {
let file_name = format!("{:04}_{}.rs", new_idx, name); let file_name = format!("{:04}_{}.rs", new_idx, name);
new_idx += 1; new_idx += 1;
inline_tests_dir.join(file_name) tests_dir.join(file_name)
} }
}; };
teraron::update(&path, &test.text, mode)?; teraron::update(&path, &test.text, mode)?;
} }
Ok(()) Ok(())
} }
install_tests(&tests.ok, OK_INLINE_TESTS_DIR, mode)?;
install_tests(&tests.err, ERR_INLINE_TESTS_DIR, mode)
}
fn tests_from_dir(dir: &Path) -> Result<HashMap<String, Test>> { #[derive(Default, Debug)]
let mut res = HashMap::new(); struct Tests {
pub ok: HashMap<String, Test>,
pub err: HashMap<String, Test>,
}
fn tests_from_dir(dir: &Path) -> Result<Tests> {
let mut res = Tests::default();
for entry in ::walkdir::WalkDir::new(dir) { for entry in ::walkdir::WalkDir::new(dir) {
let entry = entry.unwrap(); let entry = entry.unwrap();
if !entry.file_type().is_file() { if !entry.file_type().is_file() {
@ -89,19 +99,25 @@ fn tests_from_dir(dir: &Path) -> Result<HashMap<String, Test>> {
let grammar_rs = dir.parent().unwrap().join("grammar.rs"); let grammar_rs = dir.parent().unwrap().join("grammar.rs");
process_file(&mut res, &grammar_rs)?; process_file(&mut res, &grammar_rs)?;
return Ok(res); return Ok(res);
fn process_file(res: &mut HashMap<String, Test>, path: &Path) -> Result<()> { fn process_file(res: &mut Tests, path: &Path) -> Result<()> {
let text = fs::read_to_string(path)?; let text = fs::read_to_string(path)?;
for (_, test) in collect_tests(&text) { for (_, test) in collect_tests(&text) {
if let Some(old_test) = res.insert(test.name.clone(), test) { if test.ok {
if let Some(old_test) = res.ok.insert(test.name.clone(), test) {
bail!("Duplicate test: {}", old_test.name) bail!("Duplicate test: {}", old_test.name)
} }
} else {
if let Some(old_test) = res.err.insert(test.name.clone(), test) {
bail!("Duplicate test: {}", old_test.name)
}
}
} }
Ok(()) Ok(())
} }
} }
fn existing_tests(dir: &Path) -> Result<HashMap<String, (PathBuf, Test)>> { fn existing_tests(dir: &Path, ok: bool) -> Result<HashMap<String, (PathBuf, Test)>> {
let mut res = HashMap::new(); let mut res = HashMap::new();
for file in fs::read_dir(dir)? { for file in fs::read_dir(dir)? {
let file = file?; let file = file?;
@ -117,6 +133,7 @@ fn existing_tests(dir: &Path) -> Result<HashMap<String, (PathBuf, Test)>> {
let test = Test { let test = Test {
name: name.clone(), name: name.clone(),
text, text,
ok,
}; };
if let Some(old) = res.insert(name, (path, test)) { if let Some(old) = res.insert(name, (path, test)) {
println!("Duplicate test: {:?}", old); println!("Duplicate test: {:?}", old);