summaryrefslogtreecommitdiff
path: root/dhall/build.rs
blob: 790ad8e46b292f9805c8ed3e2dd17571009d79bd (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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
use std::env;
use std::ffi::OsString;
use std::fs::File;
use std::io::Write;
use std::path::Path;
use walkdir::WalkDir;

fn dhall_files_in_dir<'a>(
    dir: &'a Path,
    take_a_suffix: bool,
) -> impl Iterator<Item = (String, String)> + 'a {
    WalkDir::new(dir)
        .into_iter()
        .filter_map(|e| e.ok())
        .filter_map(move |path| {
            let path = path.path();
            let path = path.strip_prefix(dir).unwrap();
            let ext = path.extension();
            if ext != Some(&OsString::from("dhall"))
                && ext != Some(&OsString::from("dhallb"))
            {
                return None;
            }
            let ext = ext.unwrap();
            let path = path.to_string_lossy();
            let path = &path[..path.len() - 1 - ext.len()];
            let path = if take_a_suffix {
                if &path[path.len() - 1..] != "A" {
                    return None;
                } else {
                    path[..path.len() - 1].to_owned()
                }
            } else {
                path.to_owned()
            };
            let name = path.replace("/", "_").replace("-", "_");
            Some((name, path))
        })
}

fn make_test_module(
    w: &mut impl Write, // Where to output the generated code
    mod_name: &str, // Name of the module, used in the output of `cargo test`
    subdir: &str,   // Directory containing the tests files
    feature: &str,  // Relevant variant of `dhall::tests::Feature`
    mut exclude: impl FnMut(&str) -> bool, // Given a file name, whether to exclude it
) -> std::io::Result<()> {
    let all_tests_dir = Path::new("../dhall-lang/tests/");
    let tests_dir = all_tests_dir.join(subdir);
    writeln!(w, "mod {} {{", mod_name)?;
    for (name, path) in dhall_files_in_dir(&tests_dir.join("success/"), true) {
        if exclude(&("success/".to_owned() + &path)) {
            continue;
        }
        writeln!(
            w,
            r#"make_spec_test!({}, Success, success_{}, "{}/success/{}");"#,
            feature,
            name,
            tests_dir.to_string_lossy(),
            path
        )?;
    }
    for (name, path) in dhall_files_in_dir(&tests_dir.join("failure/"), false) {
        if exclude(&("failure/".to_owned() + &path)) {
            continue;
        }
        writeln!(
            w,
            r#"make_spec_test!({}, Failure, failure_{}, "{}/failure/{}");"#,
            feature,
            name,
            tests_dir.to_string_lossy(),
            path
        )?;
    }
    writeln!(w, "}}")?;
    Ok(())
}

fn main() -> std::io::Result<()> {
    // Tries to detect when the submodule gets updated.
    // To force regeneration of the test list, just `touch dhall-lang/.git`
    println!("cargo:rerun-if-changed=../dhall-lang/.git");
    println!(
        "cargo:rerun-if-changed=../.git/modules/dhall-lang/refs/heads/master"
    );
    let out_dir = env::var("OUT_DIR").unwrap();

    let parser_tests_path = Path::new(&out_dir).join("spec_tests.rs");
    let mut file = File::create(parser_tests_path)?;

    make_test_module(&mut file, "parse", "parser/", "Parser", |path| {
        // Too slow in debug mode
        path == "success/largeExpression"
            // TODO: Inline headers
            || path == "success/unit/import/inlineUsing"
            || path == "success/unit/import/Headers"
            || path == "success/unit/import/HeadersDoubleHash"
            || path == "success/unit/import/HeadersDoubleHashPrecedence"
            || path == "success/unit/import/HeadersHashPrecedence"
            || path == "success/unit/import/HeadersInteriorHash"
            // TODO: projection by expression
            || path == "success/recordProjectionByExpression"
            || path == "success/RecordProjectionByType"
            || path == "success/unit/RecordProjectionByType"
            || path == "success/unit/RecordProjectionByTypeEmpty"
            || path == "success/unit/RecordProjectFields"
            // TODO: RFC3986 URLs
            || path == "success/unit/import/urls/emptyPath0"
            || path == "success/unit/import/urls/emptyPath1"
            || path == "success/unit/import/urls/emptyPathSegment"
            // TODO: toMap
            || path == "success/toMap"
    })?;

    make_test_module(&mut file, "printer", "parser/", "Printer", |path| {
        // Failure tests are only for the parser
        path.starts_with("failure/")
            // Too slow in debug mode
            || path == "success/largeExpression"
            // TODO: Inline headers
            || path == "success/unit/import/inlineUsing"
            || path == "success/unit/import/Headers"
            // TODO: projection by expression
            || path == "success/recordProjectionByExpression"
            || path == "success/RecordProjectionByType"
            || path == "success/unit/RecordProjectionByType"
            || path == "success/unit/RecordProjectionByTypeEmpty"
            // TODO: RFC3986 URLs
            || path == "success/unit/import/urls/emptyPath0"
            || path == "success/unit/import/urls/emptyPath1"
            || path == "success/unit/import/urls/emptyPathSegment"
            // TODO: toMap
            || path == "success/toMap"
    })?;

    make_test_module(
        &mut file,
        "binary_encoding",
        "parser/",
        "BinaryEncoding",
        |path| {
            // Failure tests are only for the parser
            path.starts_with("failure/")
            // Too slow in debug mode
            || path == "success/largeExpression"
            // See https://github.com/pyfisch/cbor/issues/109
            || path == "success/double"
            || path == "success/unit/DoubleLitExponentNoDot"
            || path == "success/unit/DoubleLitSecretelyInt"
            // TODO: Inline headers
            || path == "success/unit/import/inlineUsing"
            || path == "success/unit/import/Headers"
            // TODO: projection by expression
            || path == "success/recordProjectionByExpression"
            || path == "success/RecordProjectionByType"
            || path == "success/unit/RecordProjectionByType"
            || path == "success/unit/RecordProjectionByTypeEmpty"
            // TODO: RFC3986 URLs
            || path == "success/unit/import/urls/emptyPath0"
            || path == "success/unit/import/urls/emptyPath1"
            || path == "success/unit/import/urls/emptyPathSegment"
            // TODO: toMap
            || path == "success/toMap"
        },
    )?;

    make_test_module(
        &mut file,
        "binary_decoding",
        "binary-decode/",
        "BinaryDecoding",
        |path| {
            false
            // TODO: projection by expression
            || path == "success/unit/RecordProjectFields"
            || path == "success/unit/recordProjectionByExpression"
            // TODO: toMap
            || path == "success/unit/ToMap"
            || path == "success/unit/ToMapAnnotated"
        },
    )?;

    make_test_module(
        &mut file,
        "beta_normalize",
        "normalization/",
        "Normalization",
        |path| {
            // We don't support bignums
            path == "success/simple/integerToDouble"
            // Too slow
            || path == "success/remoteSystems"
            // TODO: projection by expression
            || path == "success/unit/RecordProjectionByTypeEmpty"
            || path == "success/unit/RecordProjectionByTypeNonEmpty"
            || path == "success/unit/RecordProjectionByTypeNormalizeProjection"
            // TODO: fix Double/show
            || path == "success/prelude/JSON/number/1"
            // TODO: toMap
            || path == "success/unit/EmptyToMap"
            || path == "success/unit/ToMap"
            || path == "success/unit/ToMapWithType"
            // TODO: Normalize field selection further by inspecting the argument
            || path == "success/simplifications/rightBiasedMergeWithinRecordProjectionWithinFieldSelection0"
            || path == "success/simplifications/rightBiasedMergeWithinRecordProjectionWithinFieldSelection1"
            || path == "success/simplifications/rightBiasedMergeWithinRecursiveRecordMergeWithinFieldselection"
            || path == "success/unit/RecordProjectionByTypeWithinFieldSelection"
            || path == "success/unit/RecordProjectionWithinFieldSelection"
            || path == "success/unit/RecursiveRecordMergeWithinFieldSelection0"
            || path == "success/unit/RecursiveRecordMergeWithinFieldSelection1"
            || path == "success/unit/RecursiveRecordMergeWithinFieldSelection2"
            || path == "success/unit/RecursiveRecordMergeWithinFieldSelection3"
            || path == "success/unit/RightBiasedMergeWithinFieldSelection0"
            || path == "success/unit/RightBiasedMergeWithinFieldSelection1"
            || path == "success/unit/RightBiasedMergeWithinFieldSelection2"
            || path == "success/unit/RightBiasedMergeWithinFieldSelection3"
            || path == "success/unit/RightBiasedMergeEquivalentArguments"
        },
    )?;

    make_test_module(
        &mut file,
        "alpha_normalize",
        "alpha-normalization/",
        "AlphaNormalization",
        |_| false,
    )?;

    make_test_module(
        &mut file,
        "typecheck",
        "typecheck/",
        "Typecheck",
        |path| {
            false
            // TODO: Enable imports in typecheck tests
            || path == "failure/importBoundary"
            // Too slow
            || path == "success/prelude"
            // TODO: Inline headers
            || path == "failure/customHeadersUsingBoundVariable"
            // TODO: projection by expression
            || path == "failure/unit/RecordProjectionByTypeFieldTypeMismatch"
            || path == "failure/unit/RecordProjectionByTypeNotPresent"
            // TODO: toMap
            || path == "failure/unit/EmptyToMap"
            || path == "failure/unit/HeterogenousToMap"
            || path == "failure/unit/MistypedToMap1"
            || path == "failure/unit/MistypedToMap2"
            || path == "failure/unit/MistypedToMap3"
            || path == "failure/unit/MistypedToMap4"
            || path == "failure/unit/NonRecordToMap"
        },
    )?;

    make_test_module(
        &mut file,
        "type_inference",
        "type-inference/",
        "TypeInference",
        |path| {
            false
            // TODO: projection by expression
            || path == "success/unit/RecordProjectionByType"
            || path == "success/unit/RecordProjectionByTypeEmpty"
            || path == "success/unit/RecordProjectionByTypeJudgmentalEquality"
            // TODO: toMap
            || path == "success/unit/ToMap"
            || path == "success/unit/ToMapAnnotated"
        },
    )?;

    Ok(())
}