aboutsummaryrefslogtreecommitdiff
path: root/tests/testutils/src/lib.rs
blob: 9fc85cc24cb964b40b027b08c6d91cb6d8c2ec4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
extern crate difference;
extern crate file;

use std::path::{PathBuf, Path};
use std::fs::read_dir;

use difference::Changeset;

pub fn assert_equal_text(
    expected: &str,
    actual: &str,
    path: &Path
) {
    if expected != actual {
        print_difference(expected, actual, path)
    }
}

pub fn collect_tests(paths: &[&str]) -> Vec<PathBuf> {
    paths.iter().flat_map(|path|  {
        let path = test_data_dir().join(path);
        test_from_dir(&path).into_iter()
    }).collect()
}

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
}

fn print_difference(expected: &str, actual: &str, path: &Path) {
    let dir = project_dir();
    let path = path.strip_prefix(&dir).unwrap_or_else(|_| path);
    println!("\nfile: {}", path.display());
    if expected.trim() == actual.trim() {
        println!("whitespace difference");
        println!("rewriting the file");
        file::put_text(path, actual).unwrap();
    } else {
        let changeset = Changeset::new(actual, expected, "\n");
        println!("{}", changeset);
    }
    panic!("Comparison failed")
}

fn project_dir() -> PathBuf {
    let dir = env!("CARGO_MANIFEST_DIR");
    PathBuf::from(dir)
        .parent().unwrap()
        .parent().unwrap()
        .to_owned()
}

fn test_data_dir() -> PathBuf {
    project_dir().join("tests/data")
}