summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
authorNadrieril2020-04-14 15:26:30 +0100
committerNadrieril2020-06-24 22:13:53 +0100
commitbef786fe2ffbbd714e4c0e8e63ac96a394201feb (patch)
tree2c71b808981da0257b573f984940dacdfebd27c1 /dhall
parentc8b9d7e9dbbc8c110d5cf519513294582758ccad (diff)
refactor: refactor spec tests a bit
Diffstat (limited to 'dhall')
-rw-r--r--dhall/tests/spec.rs366
1 files changed, 177 insertions, 189 deletions
diff --git a/dhall/tests/spec.rs b/dhall/tests/spec.rs
index 3521f6a..ca09ef0 100644
--- a/dhall/tests/spec.rs
+++ b/dhall/tests/spec.rs
@@ -1,18 +1,19 @@
use std::env;
use std::ffi::OsString;
+use std::fmt::Display;
use std::fs::{create_dir_all, read_to_string, File};
-use std::io::{Read, BufRead, BufReader, Write};
+use std::io::{Read, Write};
use std::path::{Path, PathBuf};
use std::rc::Rc;
-use std::fmt::Display;
-use walkdir::WalkDir;
-use libtest_mimic::{Arguments, Outcome, Test, run_tests};
#[cfg(not(test))]
use assert_eq as assert_eq_pretty;
#[cfg(test)]
use pretty_assertions::assert_eq as assert_eq_pretty;
+use libtest_mimic::{run_tests, Arguments, Outcome, Test};
+use walkdir::WalkDir;
+
use dhall::error::{ErrorKind, Result};
use dhall::syntax::{binary, Expr};
use dhall::{Normalized, Parsed, Resolved, Typed};
@@ -57,6 +58,9 @@ macro_rules! assert_eq_pretty_str {
};
}
+static LOCAL_TEST_PATH: &str = "tests/";
+static TEST_PATHS: &[&str] = &["../dhall-lang/tests/", LOCAL_TEST_PATH];
+
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum FileType {
/// Dhall source file
@@ -85,20 +89,13 @@ impl FileType {
FileType::UI => "txt",
}
}
- fn constructor(self) -> &'static str {
- match self {
- FileType::Text => "TestFile::Source",
- FileType::Binary => "TestFile::Binary",
- FileType::Hash => "TestFile::Binary",
- FileType::UI => "TestFile::UI",
- }
- }
fn construct(self, path: &str) -> TestFile {
+ let file = format!("{}.{}", path, self.to_ext());
match self {
- FileType::Text => TestFile::Source(format!("{}.{}", path, self.to_ext())),
- FileType::Binary => TestFile::Binary(format!("{}.{}", path, self.to_ext())),
- FileType::Hash => TestFile::Binary(format!("{}.{}", path, self.to_ext())),
- FileType::UI => TestFile::UI(format!("{}.{}", path, self.to_ext())),
+ FileType::Text => TestFile::Source(file),
+ FileType::Binary => TestFile::Binary(file),
+ FileType::Hash => TestFile::Binary(file),
+ FileType::UI => TestFile::UI(file),
}
}
}
@@ -264,44 +261,138 @@ struct TestFeature {
module_name: &'static str,
/// Directory containing the tests files, relative to the base tests directory
directory: &'static str,
- /// Relevant variant of `dhall::tests::Test`
- variant: Rc<dyn Fn(TestFile, TestFile) -> SpecTest>,
+ /// Relevant variant of `dhall::tests::SpecTestKind`
+ variant: SpecTestKind,
/// Given a file name, whether to only include it in release tests
too_slow_path: Rc<dyn Fn(&str) -> bool>,
/// Given a file name, whether to exclude it
exclude_path: Rc<dyn Fn(&str) -> bool>,
/// Type of the input file
input_type: FileType,
- /// Type of the output file, if any
- output_type: Option<FileType>,
+ /// Type of the output file
+ output_type: FileType,
+}
+
+#[derive(Clone, Copy)]
+enum SpecTestKind {
+ ParserSuccess,
+ ParserFailure,
+ Printer,
+ BinaryEncoding,
+ BinaryDecodingSuccess,
+ BinaryDecodingFailure,
+ ImportSuccess,
+ ImportFailure,
+ SemanticHash,
+ TypeInferenceSuccess,
+ TypeInferenceFailure,
+ Normalization,
+ AlphaNormalization,
}
#[derive(Clone)]
-enum SpecTest {
- ParserSuccess(TestFile, TestFile),
- ParserFailure(TestFile, TestFile),
- Printer(TestFile, TestFile),
- BinaryEncoding(TestFile, TestFile),
- BinaryDecodingSuccess(TestFile, TestFile),
- BinaryDecodingFailure(TestFile, TestFile),
- ImportSuccess(TestFile, TestFile),
- ImportFailure(TestFile, TestFile),
- SemanticHash(TestFile, TestFile),
- TypeInferenceSuccess(TestFile, TestFile),
- TypeInferenceFailure(TestFile, TestFile),
- Normalization(TestFile, TestFile),
- AlphaNormalization(TestFile, TestFile),
+struct SpecTest {
+ kind: SpecTestKind,
+ input: TestFile,
+ output: TestFile,
+}
+
+fn dhall_files_in_dir<'a>(
+ dir: &'a Path,
+ take_ab_suffix: bool,
+ filetype: FileType,
+) -> impl Iterator<Item = (String, String)> + 'a {
+ WalkDir::new(dir)
+ .into_iter()
+ .filter_map(|e| e.ok())
+ .filter_map(move |path| {
+ let path = path.path().strip_prefix(dir).unwrap();
+ let ext = path.extension()?;
+ if *ext != OsString::from(filetype.to_ext()) {
+ return None;
+ }
+ let path = path.to_string_lossy();
+ let path = &path[..path.len() - 1 - ext.len()];
+ let path = if take_ab_suffix && &path[path.len() - 1..] != "A" {
+ return None;
+ } else if take_ab_suffix {
+ path[..path.len() - 1].to_owned()
+ } else {
+ path.to_owned()
+ };
+ // Transform path into a valid Rust identifier
+ let name = path.replace("/", "_").replace("-", "_");
+ Some((name, path))
+ })
+}
+
+fn discover_tests_for_feature(feature: TestFeature) -> Vec<Test<SpecTest>> {
+ let take_ab_suffix =
+ feature.output_type != FileType::UI || feature.module_name == "printer";
+ let input_suffix = if take_ab_suffix { "A" } else { "" };
+ let output_suffix = if take_ab_suffix { "B" } else { "" };
+
+ let mut tests = Vec::new();
+ for base_path in TEST_PATHS {
+ let base_path = Path::new(base_path);
+ let tests_dir = base_path.join(feature.directory);
+ for (name, path) in
+ dhall_files_in_dir(&tests_dir, take_ab_suffix, feature.input_type)
+ {
+ if (feature.exclude_path)(&path) {
+ continue;
+ }
+ if (feature.too_slow_path)(&path) && cfg!(debug_assertions) {
+ continue;
+ }
+ let path = tests_dir.join(path);
+ let path = path.to_string_lossy();
+
+ let output_path = match feature.output_type {
+ FileType::UI => {
+ // All ui outputs are in the local tests directory.
+ let path = PathBuf::from(LOCAL_TEST_PATH).join(
+ PathBuf::from(path.as_ref())
+ .strip_prefix(base_path)
+ .unwrap(),
+ );
+ path.to_str().unwrap().to_owned()
+ }
+ _ => path.as_ref().to_owned(),
+ };
+
+ let input = feature
+ .input_type
+ .construct(&format!("{}{}", path, input_suffix));
+ let output = feature
+ .output_type
+ .construct(&format!("{}{}", output_path, output_suffix));
+
+ tests.push(Test {
+ name: format!("{}::{}", feature.module_name, name),
+ kind: "".into(),
+ is_ignored: false,
+ is_bench: false,
+ data: SpecTest {
+ input,
+ output,
+ kind: feature.variant,
+ },
+ });
+ }
+ }
+ tests
}
fn define_features() -> Vec<TestFeature> {
let default_feature = TestFeature {
module_name: "",
directory: "",
- variant: Rc::new(|_, _| panic!()),
+ variant: SpecTestKind::ParserSuccess, // Dummy
too_slow_path: Rc::new(|_path: &str| false),
exclude_path: Rc::new(|_path: &str| false),
input_type: FileType::Text,
- output_type: None,
+ output_type: FileType::Text,
};
#[allow(clippy::nonminimal_bool)]
@@ -309,35 +400,35 @@ fn define_features() -> Vec<TestFeature> {
TestFeature {
module_name: "parser_success",
directory: "parser/success/",
- variant: Rc::new(SpecTest::ParserSuccess),
+ variant: SpecTestKind::ParserSuccess,
too_slow_path: Rc::new(|path: &str| path == "largeExpression"),
exclude_path: Rc::new(|path: &str| {
false
// Pretty sure the test is incorrect
|| path == "unit/import/urls/quotedPathFakeUrlEncode"
}),
- output_type: Some(FileType::Binary),
+ output_type: FileType::Binary,
..default_feature.clone()
},
TestFeature {
module_name: "parser_failure",
directory: "parser/failure/",
- variant: Rc::new(SpecTest::ParserFailure),
- output_type: Some(FileType::UI),
+ variant: SpecTestKind::ParserFailure,
+ output_type: FileType::UI,
..default_feature.clone()
},
TestFeature {
module_name: "printer",
directory: "parser/success/",
- variant: Rc::new(SpecTest::Printer),
+ variant: SpecTestKind::Printer,
too_slow_path: Rc::new(|path: &str| path == "largeExpression"),
- output_type: Some(FileType::UI),
+ output_type: FileType::UI,
..default_feature.clone()
},
TestFeature {
module_name: "binary_encoding",
directory: "parser/success/",
- variant: Rc::new(SpecTest::BinaryEncoding),
+ variant: SpecTestKind::BinaryEncoding,
too_slow_path: Rc::new(|path: &str| path == "largeExpression"),
exclude_path: Rc::new(|path: &str| {
false
@@ -348,13 +439,13 @@ fn define_features() -> Vec<TestFeature> {
|| path == "unit/DoubleLitExponentNoDot"
|| path == "unit/DoubleLitSecretelyInt"
}),
- output_type: Some(FileType::Binary),
+ output_type: FileType::Binary,
..default_feature.clone()
},
TestFeature {
module_name: "binary_decoding_success",
directory: "binary-decode/success/",
- variant: Rc::new(SpecTest::BinaryDecodingSuccess),
+ variant: SpecTestKind::BinaryDecodingSuccess,
exclude_path: Rc::new(|path: &str| {
false
// We don't support bignums
@@ -363,21 +454,20 @@ fn define_features() -> Vec<TestFeature> {
|| path == "unit/NaturalBig"
}),
input_type: FileType::Binary,
- output_type: Some(FileType::Text),
..default_feature.clone()
},
TestFeature {
module_name: "binary_decoding_failure",
directory: "binary-decode/failure/",
- variant: Rc::new(SpecTest::BinaryDecodingFailure),
+ variant: SpecTestKind::BinaryDecodingFailure,
input_type: FileType::Binary,
- output_type: Some(FileType::UI),
+ output_type: FileType::UI,
..default_feature.clone()
},
TestFeature {
module_name: "import_success",
directory: "import/success/",
- variant: Rc::new(SpecTest::ImportSuccess),
+ variant: SpecTestKind::ImportSuccess,
exclude_path: Rc::new(|path: &str| {
false
// TODO: import hash
@@ -389,25 +479,24 @@ fn define_features() -> Vec<TestFeature> {
|| path == "headerForwarding"
|| path == "noHeaderForwarding"
}),
- output_type: Some(FileType::Text),
..default_feature.clone()
},
TestFeature {
module_name: "import_failure",
directory: "import/failure/",
- variant: Rc::new(SpecTest::ImportFailure),
+ variant: SpecTestKind::ImportFailure,
exclude_path: Rc::new(|path: &str| {
false
// TODO: import headers
|| path == "customHeadersUsingBoundVariable"
}),
- output_type: Some(FileType::UI),
+ output_type: FileType::UI,
..default_feature.clone()
},
TestFeature {
module_name: "semantic_hash",
directory: "semantic-hash/success/",
- variant: Rc::new(SpecTest::SemanticHash),
+ variant: SpecTestKind::SemanticHash,
exclude_path: Rc::new(|path: &str| {
false
// We don't support bignums
@@ -417,13 +506,13 @@ fn define_features() -> Vec<TestFeature> {
|| path == "prelude/Integer/toDouble/1"
|| path == "prelude/Natural/toDouble/0"
}),
- output_type: Some(FileType::Hash),
+ output_type: FileType::Hash,
..default_feature.clone()
},
TestFeature {
module_name: "beta_normalize",
directory: "normalization/success/",
- variant: Rc::new(SpecTest::Normalization),
+ variant: SpecTestKind::Normalization,
too_slow_path: Rc::new(|path: &str| path == "remoteSystems"),
exclude_path: Rc::new(|path: &str| {
false
@@ -434,38 +523,35 @@ fn define_features() -> Vec<TestFeature> {
// TODO: fix Double/show
|| path == "prelude/JSON/number/1"
}),
- output_type: Some(FileType::Text),
..default_feature.clone()
},
TestFeature {
module_name: "alpha_normalize",
directory: "alpha-normalization/success/",
- variant: Rc::new(SpecTest::AlphaNormalization),
+ variant: SpecTestKind::AlphaNormalization,
exclude_path: Rc::new(|path: &str| {
// This test is designed to not typecheck
path == "unit/FunctionNestedBindingXXFree"
}),
- output_type: Some(FileType::Text),
..default_feature.clone()
},
TestFeature {
module_name: "type_inference_success",
directory: "type-inference/success/",
- variant: Rc::new(SpecTest::TypeInferenceSuccess),
+ variant: SpecTestKind::TypeInferenceSuccess,
too_slow_path: Rc::new(|path: &str| path == "prelude"),
- output_type: Some(FileType::Text),
..default_feature.clone()
},
TestFeature {
module_name: "type_inference_failure",
directory: "type-inference/failure/",
- variant: Rc::new(SpecTest::TypeInferenceFailure),
+ variant: SpecTestKind::TypeInferenceFailure,
exclude_path: Rc::new(|path: &str| {
false
// TODO: enable free variable checking
|| path == "unit/MergeHandlerFreeVar"
}),
- output_type: Some(FileType::UI),
+ output_type: FileType::UI,
..default_feature
},
]
@@ -491,7 +577,7 @@ fn run_test_or_panic(test: &SpecTest) {
}
fn run_test(test: &SpecTest) -> Result<()> {
- use self::SpecTest::*;
+ use self::SpecTestKind::*;
// Setup current directory to the root of the repository. Important for `as Location` tests.
env::set_current_dir(
PathBuf::from(env!("CARGO_MANIFEST_DIR")).parent().unwrap(),
@@ -499,13 +585,18 @@ fn run_test(test: &SpecTest) -> Result<()> {
// Set environment variable for import tests.
env::set_var("DHALL_TEST_VAR", "6 * 7");
- match test {
- ParserSuccess(expr, expected) => {
+ let SpecTest {
+ input: expr,
+ output: expected,
+ ..
+ } = test;
+ match test.kind {
+ ParserSuccess => {
let expr = expr.parse()?;
// This exercices both parsing and binary decoding
expected.compare_debug(expr)?;
}
- ParserFailure(expr, expected) => {
+ ParserFailure => {
use std::io;
let err = expr.parse().unwrap_err();
match err.kind() {
@@ -515,51 +606,51 @@ fn run_test(test: &SpecTest) -> Result<()> {
}
expected.compare_ui(err)?;
}
- BinaryEncoding(expr, expected) => {
+ BinaryEncoding => {
let expr = expr.parse()?;
expected.compare_binary(expr)?;
}
- BinaryDecodingSuccess(expr, expected) => {
+ BinaryDecodingSuccess => {
let expr = expr.parse()?;
expected.compare_debug(expr)?;
}
- BinaryDecodingFailure(expr, expected) => {
+ BinaryDecodingFailure => {
let err = expr.parse().unwrap_err();
expected.compare_ui(err)?;
}
- Printer(expr, expected) => {
+ Printer => {
let parsed = expr.parse()?;
// Round-trip pretty-printer
let reparsed = Parsed::parse_str(&parsed.to_string())?;
assert_eq!(reparsed, parsed);
expected.compare_ui(parsed)?;
}
- ImportSuccess(expr, expected) => {
+ ImportSuccess => {
let expr = expr.normalize()?;
expected.compare(expr)?;
}
- ImportFailure(expr, expected) => {
+ ImportFailure => {
let err = expr.resolve().unwrap_err();
expected.compare_ui(err)?;
}
- SemanticHash(expr, expected) => {
+ SemanticHash => {
let expr = expr.normalize()?.to_expr_alpha();
let hash = hex::encode(expr.hash()?);
expected.compare_ui(format!("sha256:{}", hash))?;
}
- TypeInferenceSuccess(expr, expected) => {
+ TypeInferenceSuccess => {
let ty = expr.typecheck()?.get_type()?;
expected.compare(ty)?;
}
- TypeInferenceFailure(expr, expected) => {
+ TypeInferenceFailure => {
let err = expr.typecheck().unwrap_err();
expected.compare_ui(err)?;
}
- Normalization(expr, expected) => {
+ Normalization => {
let expr = expr.normalize()?;
expected.compare(expr)?;
}
- AlphaNormalization(expr, expected) => {
+ AlphaNormalization => {
let expr = expr.normalize()?.to_expr_alpha();
expected.compare(expr)?;
}
@@ -568,119 +659,16 @@ fn run_test(test: &SpecTest) -> Result<()> {
Ok(())
}
-fn dhall_files_in_dir<'a>(
- dir: &'a Path,
- take_ab_suffix: bool,
- filetype: FileType,
-) -> impl Iterator<Item = (String, String)> + 'a {
- WalkDir::new(dir)
- .into_iter()
- .filter_map(|e| e.ok())
- .filter_map(move |path| {
- let path = path.path().strip_prefix(dir).unwrap();
- let ext = path.extension()?;
- if *ext != OsString::from(filetype.to_ext()) {
- return None;
- }
- let path = path.to_string_lossy();
- let path = &path[..path.len() - 1 - ext.len()];
- let path = if take_ab_suffix && &path[path.len() - 1..] != "A" {
- return None;
- } else if take_ab_suffix {
- path[..path.len() - 1].to_owned()
- } else {
- path.to_owned()
- };
- // Transform path into a valid Rust identifier
- let name = path.replace("/", "_").replace("-", "_");
- Some((name, path))
- })
-}
-
-fn make_test_module(
- tests: &mut Vec<Test<SpecTest>>,
- base_paths: &[&Path],
- feature: TestFeature,
-) -> std::io::Result<()> {
- let take_ab_suffix = feature.output_type.is_some()
- && (feature.output_type != Some(FileType::UI)
- || feature.module_name == "printer");
- let input_suffix = if take_ab_suffix { "A" } else { "" };
- let output_suffix = if take_ab_suffix { "B" } else { "" };
-
- for base_path in base_paths {
- let tests_dir = base_path.join(feature.directory);
- for (name, path) in
- dhall_files_in_dir(&tests_dir, take_ab_suffix, feature.input_type)
- {
- if (feature.exclude_path)(&path) {
- continue;
- }
- if (feature.too_slow_path)(&path) {
- #[cfg(debug_assertions)]
- continue;
- }
- let path = tests_dir.join(path);
- let path = path.to_string_lossy();
-
- let input = feature
- .input_type
- .construct(&format!("{}{}", path, input_suffix));
- let output = match feature.output_type {
- None => None,
- Some(output_type @ FileType::UI) => {
- // All ui outputs are in the local `tests/` directory.
- let path = PathBuf::from("tests/").join(
- PathBuf::from(path.as_ref())
- .strip_prefix(base_path)
- .unwrap(),
- );
- let path = path.to_str().unwrap();
- let output = output_type
- .construct(&format!("{}{}", path, output_suffix));
- Some(output)
- }
- Some(output_type) => {
- let output = output_type
- .construct(&format!("{}{}", path, output_suffix));
- Some(output)
- }
- };
-
- let test = match output {
- None => panic!(),
- Some(output) => {
- (feature.variant)(input, output)
- }
- };
- tests.push(Test {
- name: format!("{}::{}", feature.module_name, name),
- kind: "".into(),
- is_ignored: false,
- is_bench: false,
- data: test,
- });
- }
- }
- Ok(())
-}
-
-fn generate_tests() -> Vec<Test<SpecTest>> {
- let spec_tests_dirs =
- vec![Path::new("../dhall-lang/tests/"), Path::new("tests/")];
-
- let features = define_features();
-
- let mut tests = Vec::new();
- for feature in features {
- make_test_module(&mut tests, &spec_tests_dirs, feature).unwrap();
- }
- tests
-}
-
fn main() {
- let tests = generate_tests();
+ let tests = define_features()
+ .into_iter()
+ .flat_map(discover_tests_for_feature)
+ .collect();
let args = Arguments::from_args();
- run_tests(&args, tests, |test| { run_test_or_panic(&test.data); Outcome::Passed }).exit();
+ run_tests(&args, tests, |test| {
+ run_test_or_panic(&test.data);
+ Outcome::Passed
+ })
+ .exit();
}