summaryrefslogtreecommitdiff
path: root/dhall/tests/common/mod.rs
blob: 5f16d2cc4a14479cf82d6cceb0cb43a733047111 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
use pretty_assertions::assert_eq as assert_eq_pretty;

macro_rules! assert_eq_display {
    ($left:expr, $right:expr) => {{
        match (&$left, &$right) {
            (left_val, right_val) => {
                if !(*left_val == *right_val) {
                    panic!(
                        r#"assertion failed: `(left == right)`
 left: `{}`,
right: `{}`"#,
                        left_val, right_val
                    )
                }
            }
        }
    }};
}

#[macro_export]
macro_rules! make_spec_test {
    ($type:ident, $name:ident, $path:expr) => {
        #[test]
        #[allow(non_snake_case)]
        fn $name() {
            use crate::common::*;
            run_test($path, Feature::$type);
        }
    };
}

use dhall::*;
use dhall_core::*;
use std::path::PathBuf;

#[allow(dead_code)]
pub enum Feature {
    ParserSuccess,
    ParserFailure,
    Normalization,
    TypecheckSuccess,
    TypecheckFailure,
    TypeInferenceSuccess,
    TypeInferenceFailure,
}

// Deprecated
fn read_dhall_file<'i>(file_path: &str) -> Result<Expr<X, X>, ImportError> {
    dhall::load_dhall_file(&PathBuf::from(file_path), true)
}

fn load_from_file_str<'i>(
    file_path: &str,
) -> Result<dhall::expr::Parsed, ImportError> {
    dhall::expr::Parsed::load_from_file(&PathBuf::from(file_path))
}

fn load_from_binary_file_str<'i>(
    file_path: &str,
) -> Result<dhall::expr::Parsed, ImportError> {
    dhall::expr::Parsed::load_from_binary_file(&PathBuf::from(file_path))
}

pub fn run_test(base_path: &str, feature: Feature) {
    use self::Feature::*;
    let base_path_prefix = match feature {
        ParserSuccess => "parser/success/",
        ParserFailure => "parser/failure/",
        Normalization => "normalization/success/",
        TypecheckSuccess => "typecheck/success/",
        TypecheckFailure => "typecheck/failure/",
        TypeInferenceSuccess => "type-inference/success/",
        TypeInferenceFailure => "type-inference/failure/",
    };
    let base_path =
        "../dhall-lang/tests/".to_owned() + base_path_prefix + base_path;
    match feature {
        ParserSuccess => {
            let expr_file_path = base_path.clone() + "A.dhall";
            let expected_file_path = base_path + "B.dhallb";
            let expr = load_from_file_str(&expr_file_path)
                .map_err(|e| println!("{}", e))
                .unwrap();

            let expected = load_from_binary_file_str(&expected_file_path)
                .map_err(|e| println!("{}", e))
                .unwrap();

            assert_eq_pretty!(expr, expected);

            // Round-trip pretty-printer
            let expr =
                dhall::expr::Parsed::load_from_str(&expr.to_string()).unwrap();
            assert_eq!(expr, expected);
        }
        ParserFailure => {
            let file_path = base_path + ".dhall";
            let err = load_from_file_str(&file_path).unwrap_err();
            match err {
                ImportError::ParseError(_) => {}
                e => panic!("Expected parse error, got: {:?}", e),
            }
        }
        Normalization => {
            let expr_file_path = base_path.clone() + "A.dhall";
            let expected_file_path = base_path + "B.dhall";
            let expr = load_from_file_str(&expr_file_path)
                .unwrap()
                .resolve()
                .unwrap()
                .skip_typecheck()
                .normalize();
            let expected = load_from_file_str(&expected_file_path)
                .unwrap()
                .resolve()
                .unwrap()
                .skip_typecheck()
                .normalize();

            assert_eq_display!(expr, expected);
        }
        TypecheckFailure => {
            let file_path = base_path + ".dhall";
            load_from_file_str(&file_path)
                .unwrap()
                .skip_resolve()
                .unwrap()
                .typecheck()
                .unwrap_err();
        }
        TypecheckSuccess => {
            // Many tests stack overflow in debug mode
            std::thread::Builder::new()
                .stack_size(4 * 1024 * 1024)
                .spawn(|| {
                    let expr_file_path = base_path.clone() + "A.dhall";
                    let expected_file_path = base_path + "B.dhall";
                    let expr = rc(read_dhall_file(&expr_file_path).unwrap());
                    let expected =
                        rc(read_dhall_file(&expected_file_path).unwrap());
                    typecheck::type_of(dhall::subexpr!(expr: expected))
                        .unwrap();
                })
                .unwrap()
                .join()
                .unwrap();
        }
        TypeInferenceFailure => {
            let file_path = base_path + ".dhall";
            load_from_file_str(&file_path)
                .unwrap()
                .skip_resolve()
                .unwrap()
                .typecheck()
                .unwrap_err();
        }
        TypeInferenceSuccess => {
            let expr_file_path = base_path.clone() + "A.dhall";
            let expected_file_path = base_path + "B.dhall";
            let expr = load_from_file_str(&expr_file_path)
                .unwrap()
                .skip_resolve()
                .unwrap()
                .typecheck()
                .unwrap();
            let ty = expr.get_type().as_normalized().unwrap();
            let expected = load_from_file_str(&expected_file_path)
                .unwrap()
                .skip_resolve()
                .unwrap()
                .skip_typecheck()
                .skip_normalize();
            assert_eq_display!(ty, &expected);
        }
    }
}