rust/tests/testutils/src/lib.rs

110 lines
2.8 KiB
Rust
Raw Normal View History

2018-01-07 05:56:08 -06:00
extern crate difference;
extern crate file;
use std::fs::read_dir;
2018-07-30 06:08:06 -05:00
use std::path::{Path, PathBuf};
2018-01-07 05:56:08 -06:00
use difference::Changeset;
/// Read file and normalize newlines.
///
/// `rustc` seems to always normalize `\r\n` newlines to `\n`:
///
/// ```
/// let s = "
/// ";
/// assert_eq!(s.as_bytes(), &[10]);
/// ```
///
/// so this should always be correct.
fn read_text(path: &Path) -> String {
file::get_text(path).unwrap().replace("\r\n", "\n")
}
2018-02-03 03:51:06 -06:00
pub fn dir_tests<F>(paths: &[&str], f: F)
2018-02-10 05:18:38 -06:00
where
F: Fn(&str) -> String,
2018-01-07 06:34:11 -06:00
{
for path in collect_tests(paths) {
2018-02-11 02:19:54 -06:00
let input_code = read_text(&path);
let parse_tree = f(&input_code);
2018-01-07 06:34:11 -06:00
let path = path.with_extension("txt");
if !path.exists() {
println!("\nfile: {}", path.display());
2018-02-11 02:19:54 -06:00
println!("No .txt file with expected result, creating...\n");
println!("{}\n{}", input_code, parse_tree);
file::put_text(&path, parse_tree).unwrap();
2018-01-07 06:34:11 -06:00
panic!("No expected result")
}
let expected = read_text(&path);
2018-01-07 06:34:11 -06:00
let expected = expected.as_str();
2018-02-11 02:19:54 -06:00
let parse_tree = parse_tree.as_str();
assert_equal_text(expected, parse_tree, &path);
2018-01-07 06:34:11 -06:00
}
}
2018-02-03 03:51:06 -06:00
fn assert_equal_text(expected: &str, actual: &str, path: &Path) {
2018-01-07 05:56:08 -06:00
if expected != actual {
print_difference(expected, actual, path)
}
}
2018-01-07 06:34:11 -06:00
fn collect_tests(paths: &[&str]) -> Vec<PathBuf> {
2018-02-03 03:51:06 -06:00
paths
.iter()
.flat_map(|path| {
let path = test_data_dir().join(path);
test_from_dir(&path).into_iter()
})
.collect()
2018-01-07 05:56:08 -06:00
}
fn test_from_dir(dir: &Path) -> Vec<PathBuf> {
let mut acc = Vec::new();
for file in read_dir(&dir).unwrap() {
let file = file.unwrap();
let path = file.path();
if path.extension().unwrap_or_default() == "rs" {
acc.push(path);
}
}
acc.sort();
acc
}
2018-02-10 05:06:47 -06:00
const REWRITE: bool = false;
2018-01-07 05:56:08 -06:00
fn print_difference(expected: &str, actual: &str, path: &Path) {
let dir = project_dir();
let path = path.strip_prefix(&dir).unwrap_or_else(|_| path);
if expected.trim() == actual.trim() {
2018-02-10 03:35:40 -06:00
println!("whitespace difference, rewriting");
2018-02-10 05:06:47 -06:00
println!("file: {}\n", path.display());
file::put_text(path, actual).unwrap();
return;
}
if REWRITE {
println!("rewriting {}", path.display());
2018-01-07 05:56:08 -06:00
file::put_text(path, actual).unwrap();
2018-02-10 05:06:47 -06:00
return;
2018-01-07 05:56:08 -06:00
}
2018-02-10 05:06:47 -06:00
let changeset = Changeset::new(actual, expected, "\n");
print!("{}", changeset);
2018-02-10 03:35:40 -06:00
println!("file: {}\n", path.display());
2018-01-07 05:56:08 -06:00
panic!("Comparison failed")
}
fn project_dir() -> PathBuf {
let dir = env!("CARGO_MANIFEST_DIR");
PathBuf::from(dir)
2018-02-03 03:51:06 -06:00
.parent()
.unwrap()
.parent()
.unwrap()
2018-01-07 05:56:08 -06:00
.to_owned()
}
fn test_data_dir() -> PathBuf {
project_dir().join("tests/data")
2018-02-03 03:51:06 -06:00
}