294 lines
11 KiB
Rust
Raw Normal View History

2017-06-03 17:45:03 +03:00
#![cfg(test)]
2017-06-03 21:39:45 +03:00
use std::env;
2017-06-03 17:45:03 +03:00
use std::path::PathBuf;
use std::process::Command;
use std::fs::File;
2017-06-03 21:20:52 +03:00
use std::sync::Arc;
2017-06-03 17:45:03 +03:00
use serde_json;
use test;
2017-06-06 12:07:58 +03:00
use parity_wasm::{self, elements, builder};
2017-06-03 21:20:52 +03:00
use parity_wasm::interpreter::{
2018-01-23 22:47:20 +03:00
RuntimeValue,
ProgramInstance, ModuleInstance,
ItemIndex, ExportEntryType,
Error as InterpreterError,
2017-06-03 21:20:52 +03:00
};
2017-06-06 12:07:58 +03:00
fn spec_test_module() -> elements::Module {
2018-01-23 22:47:20 +03:00
builder::module()
.function().signature().build().body().build().build()
.function().signature().param().i32().build().body().build().build()
.function().signature().param().i64().build().body().build().build()
.function().signature().param().f32().build().body().build().build()
.function().signature().param().f64().build().body().build().build()
.function().signature().param().i32().param().f32().build().body().build().build()
.function().signature().param().f64().param().f64().build().body().build().build()
.global().value_type().i32().init_expr(elements::Opcode::I32Const(666)).build()
.with_table(elements::TableType::new(100, None))
.memory().with_min(1).with_max(Some(2)).build()
.export().field("print").internal().func(0).build()
.export().field("print").internal().func(1).build()
.export().field("print").internal().func(2).build()
.export().field("print").internal().func(3).build()
.export().field("print").internal().func(4).build()
.export().field("print").internal().func(5).build()
.export().field("print").internal().func(6).build()
.export().field("global").internal().global(0).build()
.export().field("table").internal().table(0).build()
.export().field("memory").internal().memory(0).build()
.build()
2017-06-06 12:07:58 +03:00
}
2017-11-26 00:29:33 +03:00
fn load_module(base_dir: &str, path: &str, name: &Option<String>, program: &ProgramInstance) -> Arc<ModuleInstance> {
2018-01-23 22:47:20 +03:00
let module = try_deserialize(base_dir, path).expect(&format!("Wasm file {} failed to load", path));
2017-06-06 12:07:58 +03:00
2018-01-23 22:47:20 +03:00
program.add_module("spectest", spec_test_module(), None).expect("Failed adding 'spectest' module");
2017-06-06 12:07:58 +03:00
2018-01-23 22:47:20 +03:00
let module_name = name.as_ref().map(|s| s.as_ref()).unwrap_or("wasm_test").trim_left_matches('$');
let module_instance = program.add_module(module_name, module, None).expect(&format!("Failed adding {} module", module_name));
module_instance
2017-06-03 21:20:52 +03:00
}
2017-06-13 12:01:59 +03:00
fn try_deserialize(base_dir: &str, module_path: &str) -> Result<elements::Module, elements::Error> {
2018-01-23 22:47:20 +03:00
let mut wasm_path = PathBuf::from(base_dir.clone());
wasm_path.push(module_path);
parity_wasm::deserialize_file(&wasm_path)
2017-06-13 12:01:59 +03:00
}
2017-06-07 14:48:02 +03:00
2017-11-26 00:29:33 +03:00
fn try_load(base_dir: &str, module_path: &str) -> Result<(), InterpreterError> {
2018-01-23 22:47:20 +03:00
let module = try_deserialize(base_dir, module_path).map_err(|e| parity_wasm::interpreter::Error::Program(format!("{:?}", e)))?;
let program = ProgramInstance::new();
program.add_module("try_load", module, None).map(|_| ())
2017-06-05 18:13:17 +03:00
}
2017-06-03 21:20:52 +03:00
fn runtime_value(test_val: &test::RuntimeValue) -> parity_wasm::RuntimeValue {
2018-01-23 22:47:20 +03:00
match test_val.value_type.as_ref() {
"i32" => {
let unsigned: u32 = test_val.value.parse().expect("Literal parse error");
parity_wasm::RuntimeValue::I32(unsigned as i32)
},
"i64" => {
let unsigned: u64 = test_val.value.parse().expect("Literal parse error");
parity_wasm::RuntimeValue::I64(unsigned as i64)
},
"f32" => {
let unsigned: u32 = test_val.value.parse().expect("Literal parse error");
parity_wasm::RuntimeValue::decode_f32(unsigned)
},
"f64" => {
let unsigned: u64 = test_val.value.parse().expect("Literal parse error");
parity_wasm::RuntimeValue::decode_f64(unsigned)
},
_ => panic!("Unknwon runtime value type"),
}
2017-06-03 21:20:52 +03:00
}
fn runtime_values(test_vals: &[test::RuntimeValue]) -> Vec<parity_wasm::RuntimeValue> {
2018-01-23 22:47:20 +03:00
test_vals.iter().map(runtime_value).collect::<Vec<parity_wasm::RuntimeValue>>()
2017-06-03 21:20:52 +03:00
}
2017-11-26 00:29:33 +03:00
fn run_action(program: &ProgramInstance, action: &test::Action)
2018-01-23 22:47:20 +03:00
-> Result<Option<parity_wasm::RuntimeValue>, InterpreterError>
2017-06-03 21:20:52 +03:00
{
2018-01-23 22:47:20 +03:00
match *action {
test::Action::Invoke { ref module, ref field, ref args } => {
let module = module.clone().unwrap_or("wasm_test".into());
let module = module.trim_left_matches('$');
let module = program.module(&module).expect(&format!("Expected program to have loaded module {}", module));
module.execute_export(&jstring_to_rstring(field), runtime_values(args).into())
},
test::Action::Get { ref module, ref field, .. } => {
let module = module.clone().unwrap_or("wasm_test".into());
let module = module.trim_left_matches('$');
let module = program.module(&module).expect(&format!("Expected program to have loaded module {}", module));
let field = jstring_to_rstring(&field);
2017-06-13 12:01:59 +03:00
2018-01-23 22:47:20 +03:00
module.export_entry(field.as_ref(), &ExportEntryType::Any)
.and_then(|i| match i {
elements::Internal::Global(global_index) => Ok(ItemIndex::IndexSpace(global_index)),
_ => Err(InterpreterError::Global(format!("Expected to have exported global with name {}", field))),
})
.and_then(|g| module.global(g, None, None).map(|g| Some(g.get())))
}
}
2017-06-03 21:20:52 +03:00
}
2017-06-03 17:45:03 +03:00
2017-06-06 13:14:19 +03:00
pub struct FixtureParams {
2018-01-23 22:47:20 +03:00
failing: bool,
json: String,
2017-06-06 13:14:19 +03:00
}
pub fn run_wast2wasm(name: &str) -> FixtureParams {
2018-01-23 22:47:20 +03:00
let outdir = env::var("OUT_DIR").unwrap();
2017-06-03 17:45:03 +03:00
2018-01-23 22:47:20 +03:00
let mut wast2wasm_path = PathBuf::from(outdir.clone());
wast2wasm_path.push("bin");
wast2wasm_path.push("wast2wasm");
2017-06-03 17:45:03 +03:00
2018-01-23 22:47:20 +03:00
let mut json_spec_path = PathBuf::from(outdir.clone());
json_spec_path.push(&format!("{}.json", name));
2017-06-03 17:45:03 +03:00
2018-01-23 22:47:20 +03:00
let wast2wasm_output = Command::new(wast2wasm_path)
.arg("--spec")
.arg("-o")
.arg(&json_spec_path)
.arg(&format!("./wabt/third_party/testsuite/{}.wast", name))
.output()
.expect("Failed to execute process");
2017-06-03 17:45:03 +03:00
2018-01-23 22:47:20 +03:00
FixtureParams {
json: json_spec_path.to_str().unwrap().to_owned(),
failing: {
if !wast2wasm_output.status.success() {
println!("wasm2wast error code: {}", wast2wasm_output.status);
println!("wasm2wast stdout: {}", String::from_utf8_lossy(&wast2wasm_output.stdout));
println!("wasm2wast stderr: {}", String::from_utf8_lossy(&wast2wasm_output.stderr));
true
} else {
false
}
}
}
2017-06-06 13:14:19 +03:00
}
pub fn failing_spec(name: &str) {
2018-01-23 22:47:20 +03:00
let fixture = run_wast2wasm(name);
if !fixture.failing {
panic!("wasm2wast expected to fail, but terminated normally");
}
2017-06-06 13:14:19 +03:00
}
pub fn spec(name: &str) {
2018-01-23 22:47:20 +03:00
let outdir = env::var("OUT_DIR").unwrap();
2017-06-06 13:14:19 +03:00
2018-01-23 22:47:20 +03:00
let fixture = run_wast2wasm(name);
if fixture.failing {
panic!("wasm2wast terminated abnormally, expected to success");
}
2017-06-03 22:14:38 +03:00
2018-01-23 22:47:20 +03:00
let mut f = File::open(&fixture.json)
.expect(&format!("Failed to load json file {}", &fixture.json));
let spec: test::Spec = serde_json::from_reader(&mut f).expect("Failed to deserialize JSON file");
2017-06-03 21:20:52 +03:00
2018-01-23 22:47:20 +03:00
let program = ProgramInstance::new();
let mut last_module = None;
for command in &spec.commands {
println!("command {:?}", command);
match command {
&test::Command::Module { ref name, ref filename, .. } => {
last_module = Some(load_module(&outdir, &filename, &name, &program));
},
&test::Command::AssertReturn { line, ref action, ref expected } => {
let result = run_action(&program, action);
match result {
Ok(result) => {
let spec_expected = runtime_values(expected);
let actual_result = result.into_iter().collect::<Vec<parity_wasm::RuntimeValue>>();
for (actual_result, spec_expected) in actual_result.iter().zip(spec_expected.iter()) {
assert_eq!(actual_result.variable_type(), spec_expected.variable_type());
// f32::NAN != f32::NAN
match spec_expected {
&RuntimeValue::F32(val) if val.is_nan() => match actual_result {
&RuntimeValue::F32(val) => assert!(val.is_nan()),
_ => unreachable!(), // checked above that types are same
},
&RuntimeValue::F64(val) if val.is_nan() => match actual_result {
&RuntimeValue::F64(val) => assert!(val.is_nan()),
_ => unreachable!(), // checked above that types are same
},
spec_expected @ _ => assert_eq!(actual_result, spec_expected),
}
}
println!("assert_return at line {} - success", line);
},
Err(e) => {
panic!("Expected action to return value, got error: {:?}", e);
}
}
},
&test::Command::AssertReturnCanonicalNan { line, ref action } | &test::Command::AssertReturnArithmeticNan { line, ref action } => {
let result = run_action(&program, action);
match result {
Ok(result) => {
for actual_result in result.into_iter().collect::<Vec<parity_wasm::RuntimeValue>>() {
match actual_result {
RuntimeValue::F32(val) => if !val.is_nan() { panic!("Expected nan value, got {:?}", val) },
RuntimeValue::F64(val) => if !val.is_nan() { panic!("Expected nan value, got {:?}", val) },
val @ _ => panic!("Expected action to return float value, got {:?}", val),
}
}
println!("assert_return_nan at line {} - success", line);
},
Err(e) => {
panic!("Expected action to return value, got error: {:?}", e);
}
}
},
&test::Command::AssertExhaustion { line, ref action, .. } => {
let result = run_action(&program, action);
match result {
Ok(result) => panic!("Expected exhaustion, got result: {:?}", result),
Err(e) => println!("assert_exhaustion at line {} - success ({:?})", line, e),
}
},
&test::Command::AssertTrap { line, ref action, .. } => {
let result = run_action(&program, action);
match result {
Ok(result) => {
panic!("Expected action to result in a trap, got result: {:?}", result);
},
Err(e) => {
println!("assert_trap at line {} - success ({:?})", line, e);
}
}
},
&test::Command::AssertInvalid { line, ref filename, .. }
| &test::Command::AssertMalformed { line, ref filename, .. }
| &test::Command::AssertUnlinkable { line, ref filename, .. }
=> {
let module_load = try_load(&outdir, filename);
match module_load {
Ok(_) => {
panic!("Expected invalid module definition, got some module!")
},
Err(e) => {
println!("assert_invalid at line {} - success ({:?})", line, e)
}
}
},
&test::Command::AssertUninstantiable { line, ref filename, .. } => {
match try_load(&outdir, &filename) {
Ok(_) => panic!("Expected error running start function at line {}", line),
Err(e) => println!("assert_uninstantiable - success ({:?})", e),
}
},
&test::Command::Register { ref name, ref as_name, .. } => {
match name {
&Some(ref name) => assert_eq!(name.trim_left_matches('$'), as_name), // we have already registered this module without $ prefix
&None => program.insert_loaded_module(as_name, last_module.take().expect("Last module must be set for this command")).map(|_| ()).unwrap(),
}
},
&test::Command::Action { line, ref action } => {
match run_action(&program, action) {
Ok(_) => { },
Err(e) => {
panic!("Failed to invoke action at line {}: {:?}", line, e)
}
}
},
}
}
2017-06-03 21:33:58 +03:00
}
2017-06-20 13:31:14 +03:00
// Convert json string to correct rust UTF8 string.
2017-06-20 13:32:51 +03:00
// The reason is that, for example, rust character "\u{FEEF}" (3-byte UTF8 BOM) is represented as "\u00ef\u00bb\u00bf" in spec json.
// It is incorrect. Correct BOM representation in json is "\uFEFF" => we need to do a double utf8-parse here.
2017-06-20 13:31:14 +03:00
// This conversion is incorrect in general case (casting char to u8)!!!
fn jstring_to_rstring(jstring: &str) -> String {
2018-01-23 22:47:20 +03:00
let jstring_chars: Vec<u8> = jstring.chars().map(|c| c as u8).collect();
let rstring = String::from_utf8(jstring_chars).unwrap();
rstring
2017-06-20 13:31:14 +03:00
}