wasmer/lib/spectests/tests/spectest.rs

365 lines
14 KiB
Rust
Raw Normal View History

2019-01-13 21:44:14 +00:00
#![allow(warnings, dead_code)]
2019-07-26 03:31:19 +00:00
#[cfg(test)]
mod tests {
2019-08-02 22:00:35 +00:00
struct SpecFailure {
file: String,
line: u64,
kind: String,
message: String,
}
struct TestReport {
failures: Vec<SpecFailure>,
passed: u32,
failed: u32,
}
impl TestReport {
pub fn countPassed(&mut self) {
self.passed += 1;
}
pub fn hasFailures(&self) -> bool {
self.failed > 0
}
pub fn addFailure(&mut self, failure: SpecFailure) {
self.failed += 1;
self.failures.push(failure);
}
pub fn print_report(&self) {
// println!("total tests: {}", self.passed + self.failed);
// println!("passed: {}", self.passed);
// println!("failed: {}", self.failed);
println!("failures:");
for failure in self.failures.iter() {
println!(
" {:?} {:?} {:?} {:?}",
failure.file, failure.line, failure.kind, failure.message
);
}
}
}
2019-07-26 03:31:19 +00:00
const TESTS: &[&str] = &[
"spectests/address.wast",
"spectests/align.wast",
"spectests/binary.wast",
"spectests/block.wast",
"spectests/br.wast",
"spectests/br_if.wast",
"spectests/br_table.wast",
"spectests/break_drop.wast",
"spectests/call.wast",
"spectests/call_indirect.wast",
"spectests/comments.wast",
"spectests/const_.wast",
"spectests/conversions.wast",
"spectests/custom.wast",
"spectests/data.wast",
"spectests/elem.wast",
"spectests/endianness.wast",
"spectests/exports.wast",
"spectests/f32_.wast",
"spectests/f32_bitwise.wast",
"spectests/f32_cmp.wast",
"spectests/f64_.wast",
"spectests/f64_bitwise.wast",
"spectests/f64_cmp.wast",
"spectests/fac.wast",
"spectests/float_exprs.wast",
"spectests/float_literals.wast",
"spectests/float_memory.wast",
"spectests/float_misc.wast",
"spectests/forward.wast",
"spectests/func.wast",
"spectests/func_ptrs.wast",
"spectests/get_local.wast",
"spectests/globals.wast",
"spectests/i32_.wast",
"spectests/i64_.wast",
"spectests/if_.wast",
"spectests/int_exprs.wast",
"spectests/int_literals.wast",
"spectests/labels.wast",
"spectests/left_to_right.wast",
"spectests/loop_.wast",
"spectests/memory.wast",
"spectests/memory_grow.wast",
"spectests/memory_redundancy.wast",
"spectests/memory_trap.wast",
"spectests/nop.wast",
"spectests/return_.wast",
"spectests/select.wast",
"spectests/set_local.wast",
"spectests/stack.wast",
"spectests/start.wast",
"spectests/store_retval.wast",
"spectests/switch.wast",
"spectests/tee_local.wast",
"spectests/token.wast",
"spectests/traps.wast",
"spectests/typecheck.wast",
"spectests/types.wast",
"spectests/unwind.wast",
#[cfg(feature = "llvm")]
"spectests/simd.wast",
#[cfg(feature = "llvm")]
"spectests/simd_binaryen.wast",
];
use wasmer_runtime_core::backend::Compiler;
#[cfg(feature = "clif")]
fn get_compiler() -> impl Compiler {
use wasmer_clif_backend::CraneliftCompiler;
CraneliftCompiler::new()
}
#[cfg(feature = "llvm")]
fn get_compiler() -> impl Compiler {
use wasmer_llvm_backend::LLVMCompiler;
LLVMCompiler::new()
}
#[cfg(feature = "singlepass")]
fn get_compiler() -> impl Compiler {
use wasmer_singlepass_backend::SinglePassCompiler;
SinglePassCompiler::new()
}
#[cfg(not(any(feature = "llvm", feature = "clif", feature = "singlepass")))]
fn get_compiler() -> impl Compiler {
panic!("compiler not specified, activate a compiler via features");
use wasmer_clif_backend::CraneliftCompiler;
CraneliftCompiler::new()
}
use std::path::PathBuf;
use std::{env, fs, io::Write};
use wabt::script::{Action, Command, CommandKind, ScriptParser, Value};
use wasmer_runtime_core::error::CompileError;
use wasmer_runtime_core::import::ImportObject;
use wasmer_runtime_core::Instance;
2019-08-02 22:00:35 +00:00
fn parse_and_run(path: &PathBuf) -> Result<TestReport, String> {
let mut test_report = TestReport {
failures: vec![],
passed: 0,
failed: 0,
};
2019-08-02 17:36:38 +00:00
// TODO Collect results
// TODO Add more assertions
// TODO
// TODO Allow running WAST &str directly
2019-07-26 03:31:19 +00:00
let source = fs::read(&path).unwrap();
let filename = path.file_name().unwrap().to_str().unwrap();
let source = fs::read(&path).unwrap();
let mut features = wabt::Features::new();
features.enable_simd();
let mut parser: ScriptParser =
ScriptParser::from_source_and_name_with_features(&source, filename, features)
.expect(&format!("Failed to parse script {}", &filename));
let parse_result = parser.next();
2019-08-02 17:36:38 +00:00
use std::panic;
2019-07-26 03:31:19 +00:00
while let Some(Command { kind, line }) =
parser.next().map_err(|e| format!("Parse err: {:?}", e))?
{
let mut instance: Option<Instance> = None;
2019-08-02 22:00:35 +00:00
// println!("line: {:?}", line);
2019-07-26 03:31:19 +00:00
match kind {
CommandKind::Module { module, name } => {
2019-08-02 17:36:38 +00:00
println!("Module");
let result = panic::catch_unwind(|| {
let module =
wasmer_runtime_core::compile_with(&module.into_vec(), &get_compiler())
.expect("WASM can't be compiled");
let i = module
.instantiate(&ImportObject::new())
.expect("WASM can't be instantiated");
i
});
match result {
Err(e) => {
2019-08-02 22:00:35 +00:00
test_report.addFailure(SpecFailure {
file: filename.to_string(),
line: line,
kind: format!("{:?}", "Module"),
message: format!("caught panic {:?}", e),
});
2019-08-02 17:36:38 +00:00
instance = None;
}
Ok(i) => {
instance = Some(i);
}
}
2019-07-26 03:31:19 +00:00
}
CommandKind::AssertReturn { action, expected } => {
2019-08-02 22:00:35 +00:00
match action {
Action::Invoke {
module,
field,
args,
} => {
if instance.is_none() {
test_report.addFailure(SpecFailure {
file: filename.to_string(),
line: line,
kind: format!("{:?}", "AssertReturn"),
message: format!("No instance avaiable"),
});
} else {
}
// let params: Vec<Value> = args.iter().cloned().map(|x| x.into()).collect();
// instance.call(field, )
}
_ => println!("unexpected action"),
}
// println!("in assert return");
2019-07-26 03:31:19 +00:00
}
CommandKind::AssertReturnCanonicalNan { action } => {
println!("AssertReturnCanonicalNan")
}
CommandKind::AssertReturnArithmeticNan { action } => {
println!("AssertReturnArithmeticNan")
}
CommandKind::AssertTrap { action, message } => println!("AssertTrap"),
2019-08-02 22:00:35 +00:00
CommandKind::AssertInvalid { module, message } => {
println!("AssertInvalid");
let result = panic::catch_unwind(|| {
wasmer_runtime_core::compile_with(&module.into_vec(), &get_compiler())
});
match result {
Ok(module) => {
if let Err(CompileError::InternalError { msg }) = module {
test_report.countPassed();
println!("expected: {:?}", message);
println!("actual: {:?}", msg);
} else if let Err(CompileError::ValidationError { msg }) = module {
test_report.countPassed();
println!("validation expected: {:?}", message);
println!("validation actual: {:?}", msg);
} else {
test_report.addFailure(SpecFailure {
file: filename.to_string(),
line: line,
kind: format!("{:?}", "AssertInvalid"),
message: "Should be invalid".to_string(),
});
}
}
Err(p) => {
test_report.addFailure(SpecFailure {
file: filename.to_string(),
line: line,
kind: format!("{:?}", "AssertInvalid"),
message: format!("caught panic {:?}", p),
});
}
}
}
2019-07-26 03:31:19 +00:00
CommandKind::AssertMalformed { module, message } => {
2019-08-02 17:36:38 +00:00
println!("AssertMalformed");
let result = panic::catch_unwind(|| {
wasmer_runtime_core::compile_with(&module.into_vec(), &get_compiler())
});
match result {
Ok(module) => {
if let Err(CompileError::InternalError { msg }) = module {
2019-08-02 22:00:35 +00:00
test_report.countPassed();
2019-08-02 17:36:38 +00:00
println!("expected: {:?}", message);
println!("actual: {:?}", msg);
} else if let Err(CompileError::ValidationError { msg }) = module {
2019-08-02 22:00:35 +00:00
test_report.countPassed();
println!("validation expected: {:?}", message);
println!("validation actual: {:?}", msg);
2019-08-02 17:36:38 +00:00
} else {
println!("Should be malformed");
}
}
Err(p) => {
2019-08-02 22:00:35 +00:00
test_report.addFailure(SpecFailure {
file: filename.to_string(),
line: line,
kind: format!("{:?}", "AssertMalformed"),
message: format!("caught panic {:?}", p),
});
2019-08-02 17:36:38 +00:00
}
2019-07-26 03:31:19 +00:00
}
}
CommandKind::AssertUninstantiable { module, message } => {
println!("AssertUninstantiable")
}
CommandKind::AssertExhaustion { action, message } => println!("AssertExhaustion"),
CommandKind::AssertUnlinkable { module, message } => println!("AssertUnlinkable"),
CommandKind::Register { name, as_name } => println!("Register"),
CommandKind::PerformAction(ref action) => println!("PerformAction"),
_ => panic!("unknown wast command"),
}
}
2019-08-02 22:00:35 +00:00
test_report.print_report();
Ok(test_report)
2019-07-26 03:31:19 +00:00
}
#[test]
fn test_run_spectests() {
let mut success = true;
2019-08-02 22:00:35 +00:00
let mut test_reports = vec![];
2019-07-26 03:31:19 +00:00
for test in TESTS.iter() {
let test_name = test.split("/").last().unwrap().split(".").next().unwrap();
2019-08-02 22:00:35 +00:00
// println!("Running: {:?} =============================>", test_name);
2019-07-26 03:31:19 +00:00
let mut wast_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
wast_path.push(test);
let result = parse_and_run(&wast_path);
2019-08-02 22:00:35 +00:00
match result {
Ok(test_report) => {
if test_report.hasFailures() {
success = false
}
test_reports.push(test_report);
}
Err(e) => {
success = false;
println!("Unexpected test run error: {:?}", e)
}
2019-07-26 03:31:19 +00:00
}
}
2019-08-02 22:00:35 +00:00
// Print summary
let mut failures = vec![];
let mut total_passed = 0;
let mut total_failed = 0;
for mut test_report in test_reports.into_iter() {
total_passed += test_report.passed;
total_failed += test_report.failed;
failures.append(&mut test_report.failures);
}
println!("");
println!("");
println!("Spec tests summary report: ");
println!("total: {}", total_passed + total_failed);
println!("passed: {}", total_passed);
println!("failed: {}", total_failed);
for failure in failures.iter() {
println!(
" {:?} {:?} {:?} {:?}",
failure.file, failure.line, failure.kind, failure.message
);
}
println!("");
println!("");
2019-07-26 03:31:19 +00:00
assert!(success, "tests passed")
}
}