//! This file will run at build time to autogenerate Rust tests based on //! WebAssembly spec tests. It will convert the files indicated in TESTS //! from "/spectests/{MODULE}.wast" to "/src/spectests/{MODULE}.rs". use std::collections::HashMap; use std::env; use std::fs; use std::io::{self, Read}; use std::path::PathBuf; use std::time::SystemTime; use wabt::script::{Action, Command, CommandKind, ModuleBinary, ScriptParser, Value}; use wabt::wasm2wat; static ENV_VAR: &str = "WASM_GENERATE_SPECTESTS"; static BANNER: &str = "// Rust test file autogenerated with cargo build (src/build_spectests.rs). // Please do NOT modify it by hand, as it will be reseted on next build.\n"; const TESTS: [&str; 24] = [ "spectests/align.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/const_.wast", "spectests/data.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/func_ptrs.wast", "spectests/i32_.wast", "spectests/i64_.wast", "spectests/labels.wast", "spectests/memory.wast", "spectests/set_local.wast", "spectests/types.wast", ]; fn wabt2rust_type(v: &Value) -> String { match v { Value::I32(v) => format!("i32"), Value::I64(v) => format!("i64"), Value::F32(v) => format!("f32"), Value::F64(v) => format!("f64"), } } fn is_nan(v: &Value) -> bool { if let Value::F32(v) = v { return v.is_nan(); } else if let Value::F64(v) = v { return v.is_nan(); } return false; } fn wabt2rust_value(v: &Value) -> String { match v { Value::I32(v) => format!("{:?} as i32", v), Value::I64(v) => format!("{:?} as i64", v), Value::F32(v) => { match *v { std::f32::INFINITY => "std::f32::INFINITY".to_string(), std::f32::NEG_INFINITY => "std::f32::NEG_INFINITY".to_string(), // std::f32::NAN => "std::f32::NAN".to_string(), _ => { if v.is_nan() { if v.is_sign_negative() { "-std::f32::NAN".to_string() } else { "std::f32::NAN".to_string() } } else { format!("{:?} as f32", v) } } } } Value::F64(v) => { match *v { std::f64::INFINITY => "std::f64::INFINITY".to_string(), std::f64::NEG_INFINITY => "std::f64::NEG_INFINITY".to_string(), // std::f64::NAN => "std::f64::NAN".to_string(), _ => { if v.is_nan() { if v.is_sign_negative() { "-std::f64::NAN".to_string() } else { "std::f64::NAN".to_string() } } else { format!("{:?} as f64", v) } } } } } } struct WastTestGenerator { last_module: i32, last_line: u64, filename: String, script_parser: ScriptParser, module_calls: HashMap>, buffer: String, } impl WastTestGenerator { fn new(path: &PathBuf) -> Self { let filename = path.file_name().unwrap().to_str().unwrap(); let source = fs::read(&path).unwrap(); let mut script: ScriptParser = ScriptParser::from_source_and_name(&source, filename).unwrap(); let mut buffer = String::new(); WastTestGenerator { last_module: 0, last_line: 0, filename: filename.to_string(), script_parser: script, buffer: buffer, module_calls: HashMap::new(), } } fn consume(&mut self) { self.buffer.push_str(BANNER); self.buffer.push_str(&format!( "// Test based on spectests/{} #![allow( warnings, dead_code )] use crate::webassembly::{{instantiate, compile, ImportObject, ResultObject, VmCtx, Export}}; use super::_common::spectest_importobject; use wabt::wat2wasm;\n\n", self.filename )); while let Some(Command { line, kind }) = &self.script_parser.next().unwrap() { self.last_line = line.clone(); self.buffer .push_str(&format!("\n// Line {}\n", self.last_line)); self.visit_command(&kind); } for n in 1..self.last_module + 1 { self.flush_module_calls(n); } } fn flush_module_calls(&mut self, module: i32) { let calls: Vec = self .module_calls .entry(module) .or_insert(Vec::new()) .iter() .map(|call_str| format!("{}(&result_object, &vm_context);", call_str)) .collect(); if calls.len() > 0 { self.buffer.push_str( format!( "\n#[test] fn test_module_{}() {{ let result_object = create_module_{}(); let vm_context = result_object.instance.generate_context(); // We group the calls together {} }}\n", module, module, calls.join("\n ") ) .as_str(), ); } self.module_calls.remove(&module); } fn visit_module(&mut self, module: &ModuleBinary, name: &Option) { let wasm_binary: Vec = module.clone().into_vec(); let wast_string = wasm2wat(wasm_binary).expect("Can't convert back to wasm"); self.flush_module_calls(self.last_module); self.last_module = self.last_module + 1; // self.module_calls.insert(self.last_module, vec![]); self.buffer.push_str( format!( "fn create_module_{}() -> ResultObject {{ let module_str = \"{}\"; let wasm_binary = wat2wasm(module_str.as_bytes()).expect(\"WAST not valid or malformed\"); instantiate(wasm_binary, spectest_importobject()).expect(\"WASM can't be instantiated\") }}\n", self.last_module, // We do this to ident four spaces, so it looks aligned to the function body wast_string.replace("\n", "\n ").replace("\"", "\\\""), ) .as_str(), ); } fn visit_assert_invalid(&mut self, module: &ModuleBinary) { let wasm_binary: Vec = module.clone().into_vec(); // let wast_string = wasm2wat(wasm_binary).expect("Can't convert back to wasm"); self.buffer.push_str( format!( "#[test] fn l{}_assert_invalid() {{ let wasm_binary = {:?}; let compilation = compile(wasm_binary.to_vec()); assert!(compilation.is_err(), \"WASM should not compile as is invalid\"); }}\n", self.last_line, wasm_binary, // We do this to ident four spaces back // String::from_utf8_lossy(&wasm_binary), // wast_string.replace("\n", "\n "), ) .as_str(), ); } fn visit_assert_malformed(&mut self, module: &ModuleBinary) { let wasm_binary: Vec = module.clone().into_vec(); // let wast_string = wasm2wat(wasm_binary).expect("Can't convert back to wasm"); self.buffer.push_str( format!( "#[test] fn l{}_assert_malformed() {{ let wasm_binary = {:?}; let compilation = compile(wasm_binary.to_vec()); assert!(compilation.is_err(), \"WASM should not compile as is malformed\"); }}\n", self.last_line, wasm_binary, // We do this to ident four spaces back // String::from_utf8_lossy(&wasm_binary), // wast_string.replace("\n", "\n "), ) .as_str(), ); } fn visit_assert_return(&mut self, action: &Action, expected: &Vec) { match action { Action::Invoke { module, field, args, } => { let func_return = if expected.len() > 0 { format!(" -> {}", wabt2rust_type(&expected[0])) } else { "".to_string() }; let expected_result = if expected.len() > 0 { wabt2rust_value(&expected[0]) } else { "()".to_string() }; let assertion = if expected.len() > 0 && is_nan(&expected[0]) { format!( "assert!(result.is_nan()); assert_eq!(result.is_sign_positive(), ({}).is_sign_positive());", expected_result ) } else { format!("assert_eq!(result, {});", expected_result) }; // We map the arguments provided into the raw Arguments provided // to libffi let mut args_types: Vec = args.iter().map(wabt2rust_type).collect(); args_types.push("&VmCtx".to_string()); let mut args_values: Vec = args.iter().map(wabt2rust_value).collect(); args_values.push("&vm_context".to_string()); let func_name = format!("l{}_assert_return_invoke", self.last_line); self.buffer.push_str( format!( "fn {}(result_object: &ResultObject, vm_context: &VmCtx) {{ println!(\"Executing function {{}}\", \"{}\"); let func_index = match result_object.module.info.exports.get({:?}) {{ Some(&Export::Function(index)) => index, _ => panic!(\"Function not found\"), }}; let invoke_fn: fn({}){} = get_instance_function!(result_object.instance, func_index); let result = invoke_fn({}); {} }}\n", func_name, func_name, field, args_types.join(", "), func_return, args_values.join(", "), assertion, ) .as_str(), ); self.module_calls .entry(self.last_module) .or_insert(Vec::new()) .push(func_name); // let mut module_calls = self.module_calls.get(&self.last_module).unwrap(); // module_calls.push(func_name); } _ => {} }; } fn visit_command(&mut self, cmd: &CommandKind) { match cmd { CommandKind::Module { module, name } => { self.visit_module(module, name); } CommandKind::AssertReturn { action, expected } => { self.visit_assert_return(action, expected); } CommandKind::AssertReturnCanonicalNan { action } => { // Do nothing for now } CommandKind::AssertReturnArithmeticNan { action } => { // Do nothing for now } CommandKind::AssertTrap { action, message: _ } => { // Do nothing for now } CommandKind::AssertInvalid { module, message: _ } => { self.visit_assert_invalid(module); } CommandKind::AssertMalformed { module, message: _ } => { self.visit_assert_malformed(module); } CommandKind::AssertUninstantiable { module, message: _ } => { // Do nothing for now } CommandKind::AssertExhaustion { action } => { // Do nothing for now } CommandKind::AssertUnlinkable { module, message: _ } => { // Do nothing for now } CommandKind::Register { name, as_name } => { // Do nothing for now } CommandKind::PerformAction(action) => { // Do nothing for now } } } fn finalize(self) -> String { self.buffer } } fn wast_to_rust(wast_filepath: &str) -> String { let wast_filepath = format!("{}/{}", env!("CARGO_MANIFEST_DIR"), wast_filepath); let path = PathBuf::from(&wast_filepath); let script_name: String = String::from(path.file_stem().unwrap().to_str().unwrap()); let rust_test_filepath = format!( concat!(env!("CARGO_MANIFEST_DIR"), "/src/spectests/{}.rs"), script_name.clone().as_str() ); if script_name == "_common" { panic!("_common is a reserved name for the _common module. Please use other name for the spectest."); } let wast_modified = fs::metadata(&wast_filepath) .expect("Can't get wast file metadata") .modified() .expect("Can't get wast file modified date"); let should_modify = match fs::metadata(&rust_test_filepath) { Ok(m) => { m.modified() .expect("Can't get rust test file modified date") < wast_modified } Err(_) => true, }; // panic!("SOULD MODIFY {:?} {:?}", should_modify, rust_test_filepath); if should_modify || true { let mut generator = WastTestGenerator::new(&path); generator.consume(); let generated_script = generator.finalize(); fs::write(&rust_test_filepath, generated_script.as_bytes()).unwrap(); } script_name } fn main() { if env::var(ENV_VAR).unwrap_or("0".to_string()) != "1" { return; } let rust_test_modpath = concat!(env!("CARGO_MANIFEST_DIR"), "/src/spectests/mod.rs"); let mut modules: Vec = Vec::new(); modules.reserve_exact(TESTS.len()); for test in TESTS.iter() { let module_name = wast_to_rust(test); modules.push(module_name); } let mut modfile_uses: Vec = modules .iter() .map(|module| format!("mod {};", module)) .collect(); modfile_uses.insert(0, BANNER.to_string()); modfile_uses.insert(1, "// The _common module is not autogenerated, as it provides common functions for the spectests\nmod _common;".to_string()); // We add an empty line modfile_uses.push("".to_string()); let modfile: String = modfile_uses.join("\n"); let source = fs::read(&rust_test_modpath).unwrap(); // We only modify the mod file if has changed if source != modfile.as_bytes() { fs::write(&rust_test_modpath, modfile.as_bytes()).unwrap(); } }