wasmer/src/build_spectests.rs

306 lines
11 KiB
Rust
Raw Normal View History

2018-10-23 11:23:32 +00:00
//! 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::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;
2018-10-19 09:31:02 +00:00
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";
2018-10-23 11:13:03 +00:00
const TESTS: [&str; 8] = [
2018-10-19 10:41:53 +00:00
"spectests/br_if.wast",
"spectests/call.wast",
2018-10-23 09:40:17 +00:00
"spectests/call_indirect.wast",
2018-10-23 11:13:03 +00:00
"spectests/func_ptrs.wast",
2018-10-19 10:41:53 +00:00
"spectests/i32_.wast",
"spectests/memory.wast",
"spectests/set_local.wast",
"spectests/types.wast",
];
struct WastTestGenerator {
last_module: i32,
last_line: u64,
filename: String,
script_parser: ScriptParser,
buffer: String,
}
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 wabt2rust_value(v: &Value) -> String {
match v {
Value::I32(v) => format!("{:?} as i32", v),
Value::I64(v) => format!("{:?} as i64", v),
Value::F32(v) => format!("{:?} as f32", v),
Value::F64(v) => format!("{:?} as f64", v),
}
}
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,
}
}
fn consume(&mut self) {
2018-10-19 09:31:02 +00:00
self.buffer.push_str(BANNER);
self.buffer.push_str(&format!(
2018-10-19 09:31:02 +00:00
"// Test based on spectests/{}
use crate::webassembly::{{instantiate, compile, ImportObject, ResultObject, VmCtx, Export}};
2018-10-23 11:13:03 +00:00
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);
}
}
fn visit_module(&mut self, module: &ModuleBinary, name: &Option<String>) {
let wasm_binary: Vec<u8> = module.clone().into_vec();
let wast_string = wasm2wat(wasm_binary).expect("Can't convert back to wasm");
self.last_module = self.last_module + 1;
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\");
2018-10-23 11:13:03 +00:00
instantiate(wasm_binary, spectest_importobject()).expect(\"WASM can't be instantiated\")
}}\n",
self.last_module,
2018-10-23 11:23:32 +00:00
// 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<u8> = module.clone().into_vec();
// let wast_string = wasm2wat(wasm_binary).expect("Can't convert back to wasm");
self.buffer.push_str(
format!(
2018-10-23 11:13:03 +00:00
"#[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<u8> = module.clone().into_vec();
// let wast_string = wasm2wat(wasm_binary).expect("Can't convert back to wasm");
self.buffer.push_str(
format!(
2018-10-23 11:13:03 +00:00
"#[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<Value>) {
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()
};
// We map the arguments provided into the raw Arguments provided
// to libffi
let mut args_types: Vec<String> = args.iter().map(wabt2rust_type).collect();
args_types.push("&VmCtx".to_string());
let mut args_values: Vec<String> = args.iter().map(wabt2rust_value).collect();
args_values.push("&vm_context".to_string());
self.buffer.push_str(
format!(
"#[test]
fn l{}_assert_return_invoke() {{
let ResultObject {{ mut instance, module }} = create_module_{}();
let func_index = match module.info.exports.get({:?}) {{
Some(&Export::Function(index)) => index,
_ => panic!(\"Function not found\"),
}};
let invoke_fn: fn({}){} = get_instance_function!(instance, func_index);
let vm_context = instance.generate_context();
let result = invoke_fn({});
assert_eq!(result, {});
}}\n",
self.last_line,
self.last_module,
field,
args_types.join(", "),
func_return,
args_values.join(", "),
expected_result,
)
.as_str(),
);
}
_ => {}
};
}
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 } => {
2018-10-23 11:23:32 +00:00
// Do nothing for now
}
CommandKind::AssertReturnArithmeticNan { action } => {
2018-10-23 11:23:32 +00:00
// Do nothing for now
}
CommandKind::AssertTrap { action, message: _ } => {
2018-10-23 11:23:32 +00:00
// 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: _ } => {
2018-10-23 11:23:32 +00:00
// Do nothing for now
}
CommandKind::AssertExhaustion { action } => {
2018-10-23 11:23:32 +00:00
// Do nothing for now
}
CommandKind::AssertUnlinkable { module, message: _ } => {
2018-10-23 11:23:32 +00:00
// Do nothing for now
}
CommandKind::Register { name, as_name } => {
2018-10-23 11:23:32 +00:00
// Do nothing for now
}
CommandKind::PerformAction(action) => {
2018-10-23 11:23:32 +00:00
// Do nothing for now
}
}
}
fn finalize(self) -> String {
self.buffer
}
}
2018-10-19 00:11:27 +00:00
fn wast_to_rust(wast_filepath: &str) -> String {
let wast_filepath = format!("{}/{}", env!("CARGO_MANIFEST_DIR"), wast_filepath);
let path = PathBuf::from(&wast_filepath);
2018-10-19 00:11:27 +00:00
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"),
2018-10-19 00:11:27 +00:00
script_name.clone().as_str()
);
2018-10-23 11:13:03 +00:00
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 {
let mut generator = WastTestGenerator::new(&path);
generator.consume();
let generated_script = generator.finalize();
fs::write(&rust_test_filepath, generated_script.as_bytes()).unwrap();
}
2018-10-19 00:11:27 +00:00
script_name
}
fn main() {
2018-10-19 00:11:27 +00:00
let rust_test_modpath = concat!(env!("CARGO_MANIFEST_DIR"), "/src/spectests/mod.rs");
let mut modules: Vec<String> = Vec::new();
2018-10-19 10:41:53 +00:00
modules.reserve_exact(TESTS.len());
2018-10-19 00:11:27 +00:00
2018-10-19 10:41:53 +00:00
for test in TESTS.iter() {
2018-10-19 00:11:27 +00:00
let module_name = wast_to_rust(test);
modules.push(module_name);
}
let mut modfile_uses: Vec<String> = modules
.iter()
.map(|module| format!("mod {};", module))
.collect();
2018-10-19 00:18:01 +00:00
2018-10-19 09:31:02 +00:00
modfile_uses.insert(0, BANNER.to_string());
2018-10-23 11:13:03 +00:00
modfile_uses.insert(1, "// The _common module is not autogenerated, as it provides common functions for the spectests\nmod _common;".to_string());
2018-10-19 00:11:27 +00:00
// 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();
}
}