2018-07-31 12:40:40 +00:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
|
|
|
fs,
|
|
|
|
path::{Path, PathBuf},
|
|
|
|
};
|
2018-12-06 17:42:03 +00:00
|
|
|
|
|
|
|
use clap::{App, Arg, SubCommand};
|
|
|
|
use failure::bail;
|
|
|
|
|
2018-12-31 13:14:06 +00:00
|
|
|
use tools::{
|
|
|
|
collect_tests, generate,install_format_hook, run, run_rustfmt,
|
|
|
|
Mode, Overwrite, Result, Test, Verify, project_root, run_fuzzer
|
|
|
|
};
|
2018-07-30 11:06:22 +00:00
|
|
|
|
2018-12-20 15:09:22 +00:00
|
|
|
const GRAMMAR_DIR: &str = "crates/ra_syntax/src/grammar";
|
|
|
|
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";
|
2018-07-30 11:06:22 +00:00
|
|
|
|
|
|
|
fn main() -> Result<()> {
|
|
|
|
let matches = App::new("tasks")
|
|
|
|
.setting(clap::AppSettings::SubcommandRequiredElseHelp)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("verify")
|
|
|
|
.long("--verify")
|
|
|
|
.help("Verify that generated code is up-to-date")
|
2018-07-30 11:08:06 +00:00
|
|
|
.global(true),
|
2018-07-30 11:06:22 +00:00
|
|
|
)
|
2018-10-16 18:09:22 +00:00
|
|
|
.subcommand(SubCommand::with_name("gen-syntax"))
|
2018-07-30 11:06:22 +00:00
|
|
|
.subcommand(SubCommand::with_name("gen-tests"))
|
2018-07-30 19:17:33 +00:00
|
|
|
.subcommand(SubCommand::with_name("install-code"))
|
2018-10-26 13:08:21 +00:00
|
|
|
.subcommand(SubCommand::with_name("format"))
|
2018-12-09 10:29:13 +00:00
|
|
|
.subcommand(SubCommand::with_name("format-hook"))
|
2018-12-31 13:14:06 +00:00
|
|
|
.subcommand(SubCommand::with_name("fuzz-tests"))
|
2018-07-30 11:06:22 +00:00
|
|
|
.get_matches();
|
2018-10-16 17:28:43 +00:00
|
|
|
let mode = if matches.is_present("verify") {
|
|
|
|
Verify
|
|
|
|
} else {
|
|
|
|
Overwrite
|
|
|
|
};
|
2018-12-09 10:29:13 +00:00
|
|
|
match matches
|
|
|
|
.subcommand_name()
|
|
|
|
.expect("Subcommand must be specified")
|
|
|
|
{
|
|
|
|
"install-code" => install_code_extension()?,
|
|
|
|
"gen-tests" => gen_tests(mode)?,
|
|
|
|
"gen-syntax" => generate(Overwrite)?,
|
|
|
|
"format" => run_rustfmt(mode)?,
|
|
|
|
"format-hook" => install_format_hook()?,
|
2018-12-31 13:14:06 +00:00
|
|
|
"fuzz-tests" => run_fuzzer()?,
|
2018-07-30 11:06:22 +00:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
2018-08-09 14:43:39 +00:00
|
|
|
Ok(())
|
2018-07-30 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-16 17:28:43 +00:00
|
|
|
fn gen_tests(mode: Mode) -> Result<()> {
|
2018-07-30 11:06:22 +00:00
|
|
|
let tests = tests_from_dir(Path::new(GRAMMAR_DIR))?;
|
2018-12-20 15:09:22 +00:00
|
|
|
fn install_tests(tests: &HashMap<String, Test>, into: &str, mode: Mode) -> Result<()> {
|
|
|
|
let tests_dir = project_root().join(into);
|
|
|
|
if !tests_dir.is_dir() {
|
|
|
|
fs::create_dir_all(&tests_dir)?;
|
|
|
|
}
|
2018-12-20 16:45:54 +00:00
|
|
|
// ok is never actually read, but it needs to be specified to create a Test in existing_tests
|
2018-12-20 15:09:22 +00:00
|
|
|
let existing = existing_tests(&tests_dir, true)?;
|
|
|
|
for t in existing.keys().filter(|&t| !tests.contains_key(t)) {
|
2018-12-20 17:29:26 +00:00
|
|
|
panic!("Test is deleted: {}", t);
|
2018-12-20 15:09:22 +00:00
|
|
|
}
|
2018-07-30 11:06:22 +00:00
|
|
|
|
2018-12-20 16:45:54 +00:00
|
|
|
let mut new_idx = existing.len() + 1;
|
2018-12-20 15:09:22 +00:00
|
|
|
for (name, test) in tests {
|
|
|
|
let path = match existing.get(name) {
|
|
|
|
Some((path, _test)) => path.clone(),
|
|
|
|
None => {
|
|
|
|
let file_name = format!("{:04}_{}.rs", new_idx, name);
|
|
|
|
new_idx += 1;
|
|
|
|
tests_dir.join(file_name)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
teraron::update(&path, &test.text, mode)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
2018-07-30 11:06:22 +00:00
|
|
|
}
|
2018-12-20 15:09:22 +00:00
|
|
|
install_tests(&tests.ok, OK_INLINE_TESTS_DIR, mode)?;
|
|
|
|
install_tests(&tests.err, ERR_INLINE_TESTS_DIR, mode)
|
|
|
|
}
|
2018-07-30 11:06:22 +00:00
|
|
|
|
2018-12-20 15:09:22 +00:00
|
|
|
#[derive(Default, Debug)]
|
|
|
|
struct Tests {
|
|
|
|
pub ok: HashMap<String, Test>,
|
|
|
|
pub err: HashMap<String, Test>,
|
2018-07-30 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
2018-12-20 15:09:22 +00:00
|
|
|
fn tests_from_dir(dir: &Path) -> Result<Tests> {
|
|
|
|
let mut res = Tests::default();
|
2018-07-30 11:06:22 +00:00
|
|
|
for entry in ::walkdir::WalkDir::new(dir) {
|
|
|
|
let entry = entry.unwrap();
|
|
|
|
if !entry.file_type().is_file() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if entry.path().extension().unwrap_or_default() != "rs" {
|
|
|
|
continue;
|
|
|
|
}
|
2018-12-08 17:54:44 +00:00
|
|
|
process_file(&mut res, entry.path())?;
|
|
|
|
}
|
|
|
|
let grammar_rs = dir.parent().unwrap().join("grammar.rs");
|
|
|
|
process_file(&mut res, &grammar_rs)?;
|
|
|
|
return Ok(res);
|
2018-12-20 15:09:22 +00:00
|
|
|
fn process_file(res: &mut Tests, path: &Path) -> Result<()> {
|
2018-12-08 17:54:44 +00:00
|
|
|
let text = fs::read_to_string(path)?;
|
2018-07-30 11:06:22 +00:00
|
|
|
|
2018-07-30 13:32:27 +00:00
|
|
|
for (_, test) in collect_tests(&text) {
|
2018-12-20 15:09:22 +00:00
|
|
|
if test.ok {
|
|
|
|
if let Some(old_test) = res.ok.insert(test.name.clone(), test) {
|
|
|
|
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)
|
|
|
|
}
|
2018-07-30 11:06:22 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-08 17:54:44 +00:00
|
|
|
Ok(())
|
2018-07-30 11:06:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-20 15:09:22 +00:00
|
|
|
fn existing_tests(dir: &Path, ok: bool) -> Result<HashMap<String, (PathBuf, Test)>> {
|
2018-07-31 12:30:11 +00:00
|
|
|
let mut res = HashMap::new();
|
2018-07-30 11:06:22 +00:00
|
|
|
for file in fs::read_dir(dir)? {
|
|
|
|
let file = file?;
|
|
|
|
let path = file.path();
|
|
|
|
if path.extension().unwrap_or_default() != "rs" {
|
|
|
|
continue;
|
|
|
|
}
|
2018-07-31 12:30:11 +00:00
|
|
|
let name = {
|
|
|
|
let file_name = path.file_name().unwrap().to_str().unwrap();
|
|
|
|
file_name[5..file_name.len() - 3].to_string()
|
|
|
|
};
|
2018-07-30 11:06:22 +00:00
|
|
|
let text = fs::read_to_string(&path)?;
|
2018-07-31 12:40:40 +00:00
|
|
|
let test = Test {
|
|
|
|
name: name.clone(),
|
|
|
|
text,
|
2018-12-20 15:09:22 +00:00
|
|
|
ok,
|
2018-07-31 12:40:40 +00:00
|
|
|
};
|
2018-10-16 15:51:58 +00:00
|
|
|
if let Some(old) = res.insert(name, (path, test)) {
|
|
|
|
println!("Duplicate test: {:?}", old);
|
2018-07-31 12:30:11 +00:00
|
|
|
}
|
2018-07-30 11:06:22 +00:00
|
|
|
}
|
|
|
|
Ok(res)
|
|
|
|
}
|
2018-07-30 19:17:33 +00:00
|
|
|
|
|
|
|
fn install_code_extension() -> Result<()> {
|
2018-09-16 09:54:24 +00:00
|
|
|
run("cargo install --path crates/ra_lsp_server --force", ".")?;
|
2018-09-15 23:02:25 +00:00
|
|
|
if cfg!(windows) {
|
2019-01-23 18:23:15 +00:00
|
|
|
run(r"cmd.exe /c npm.cmd ci", "./editors/code")?;
|
2018-12-17 08:26:41 +00:00
|
|
|
run(r"cmd.exe /c npm.cmd run package", "./editors/code")?;
|
2018-09-16 00:06:56 +00:00
|
|
|
} else {
|
2019-01-23 18:23:15 +00:00
|
|
|
run(r"npm ci", "./editors/code")?;
|
2018-12-17 08:26:41 +00:00
|
|
|
run(r"npm run package", "./editors/code")?;
|
2018-09-15 23:02:25 +00:00
|
|
|
}
|
|
|
|
if cfg!(windows) {
|
2018-10-15 21:44:23 +00:00
|
|
|
run(
|
2019-01-12 15:00:03 +00:00
|
|
|
r"cmd.exe /c code.cmd --install-extension ./ra-lsp-0.0.1.vsix --force",
|
2018-10-15 21:44:23 +00:00
|
|
|
"./editors/code",
|
|
|
|
)?;
|
2018-09-15 23:02:25 +00:00
|
|
|
} else {
|
2018-10-15 21:44:23 +00:00
|
|
|
run(
|
2019-01-12 15:00:03 +00:00
|
|
|
r"code --install-extension ./ra-lsp-0.0.1.vsix --force",
|
2018-10-15 21:44:23 +00:00
|
|
|
"./editors/code",
|
|
|
|
)?;
|
2018-09-15 23:02:25 +00:00
|
|
|
}
|
2018-09-15 23:12:53 +00:00
|
|
|
Ok(())
|
|
|
|
}
|