2019-01-10 21:37:59 -08:00
|
|
|
macro_rules! assert_emscripten_output {
|
|
|
|
($file:expr, $name:expr, $args:expr, $expected:expr) => {{
|
2019-01-18 01:25:05 +01:00
|
|
|
|
|
|
|
use wasmer_emscripten::{
|
|
|
|
EmscriptenGlobals,
|
|
|
|
generate_emscripten_env,
|
|
|
|
};
|
2019-05-17 13:30:10 -07:00
|
|
|
use wasmer_runtime_core::{
|
|
|
|
backend::Compiler,
|
|
|
|
};
|
2019-05-17 15:48:30 -07:00
|
|
|
use wasmer_dev_utils::stdio::StdioCapturer;
|
2019-03-06 21:36:46 -06:00
|
|
|
|
|
|
|
#[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()
|
|
|
|
}
|
|
|
|
|
2019-04-11 12:44:03 -07:00
|
|
|
#[cfg(feature = "singlepass")]
|
2019-03-13 20:16:07 -05:00
|
|
|
fn get_compiler() -> impl Compiler {
|
2019-04-11 12:44:03 -07:00
|
|
|
use wasmer_singlepass_backend::SinglePassCompiler;
|
2019-03-13 20:16:07 -05:00
|
|
|
SinglePassCompiler::new()
|
|
|
|
}
|
|
|
|
|
2019-04-11 12:44:03 -07:00
|
|
|
#[cfg(not(any(feature = "llvm", feature = "clif", feature = "singlepass")))]
|
2019-03-06 21:36:46 -06:00
|
|
|
fn get_compiler() -> impl Compiler {
|
|
|
|
panic!("compiler not specified, activate a compiler via features");
|
|
|
|
use wasmer_clif_backend::CraneliftCompiler;
|
|
|
|
CraneliftCompiler::new()
|
|
|
|
}
|
2019-01-10 21:37:59 -08:00
|
|
|
|
|
|
|
let wasm_bytes = include_bytes!($file);
|
2019-01-18 01:25:05 +01:00
|
|
|
|
2019-03-06 21:36:46 -06:00
|
|
|
let module = wasmer_runtime_core::compile_with(&wasm_bytes[..], &get_compiler())
|
2019-01-17 23:55:44 -06:00
|
|
|
.expect("WASM can't be compiled");
|
|
|
|
|
|
|
|
// let module = compile(&wasm_bytes[..])
|
|
|
|
// .map_err(|err| format!("Can't create the WebAssembly module: {}", err)).unwrap(); // NOTE: Need to figure what the unwrap is for ??
|
2019-01-28 14:31:03 -08:00
|
|
|
let mut emscripten_globals = EmscriptenGlobals::new(&module);
|
2019-01-23 12:25:56 -08:00
|
|
|
let import_object = generate_emscripten_env(&mut emscripten_globals);
|
2019-01-18 01:25:05 +01:00
|
|
|
|
2019-02-04 18:46:10 -06:00
|
|
|
let mut instance = module.instantiate(&import_object)
|
2019-01-19 00:28:41 -06:00
|
|
|
.map_err(|err| format!("Can't instantiate the WebAssembly module: {:?}", err)).unwrap(); // NOTE: Need to figure what the unwrap is for ??
|
2019-01-18 01:25:05 +01:00
|
|
|
|
2019-01-24 13:04:12 -08:00
|
|
|
let capturer = StdioCapturer::new();
|
2019-01-17 23:55:44 -06:00
|
|
|
|
2019-01-23 18:47:34 -06:00
|
|
|
wasmer_emscripten::run_emscripten_instance(
|
|
|
|
&module,
|
|
|
|
&mut instance,
|
2019-07-06 22:05:45 -07:00
|
|
|
&mut emscripten_globals,
|
2019-01-23 18:47:34 -06:00
|
|
|
$name,
|
|
|
|
$args,
|
2019-05-05 11:21:28 -07:00
|
|
|
None,
|
2019-05-29 11:41:29 -07:00
|
|
|
vec![],
|
2019-01-24 00:05:07 -06:00
|
|
|
).expect("run_emscripten_instance finishes");
|
2019-01-23 18:47:34 -06:00
|
|
|
|
2019-02-07 10:45:48 -08:00
|
|
|
let output = capturer.end().unwrap().0;
|
|
|
|
let expected_output = include_str!($expected);
|
|
|
|
|
|
|
|
assert!(
|
|
|
|
output.contains(expected_output),
|
|
|
|
"Output: `{}` does not contain expected output: `{}`",
|
|
|
|
output,
|
|
|
|
expected_output
|
|
|
|
);
|
2019-01-10 21:37:59 -08:00
|
|
|
}};
|
|
|
|
}
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// pub fn assert_emscripten_output(wasm_bytes: &[u8], raw_expected_str: &str) {
|
|
|
|
// use wasmer_clif_backend::CraneliftCompiler;
|
|
|
|
// use wasmer_emscripten::{generate_emscripten_env, stdio::StdioCapturer, EmscriptenGlobals};
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// let module = wasmer_runtime_core::compile_with(&wasm_bytes[..], &CraneliftCompiler::new())
|
|
|
|
// .expect("WASM can't be compiled");
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// let mut emscripten_globals = EmscriptenGlobals::new(&module);
|
|
|
|
// let import_object = generate_emscripten_env(&mut emscripten_globals);
|
|
|
|
// let mut instance = module
|
|
|
|
// .instantiate(&import_object)
|
|
|
|
// .map_err(|err| format!("Can't instantiate the WebAssembly module: {:?}", err))
|
|
|
|
// .unwrap();
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// let capturer = StdioCapturer::new();
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// wasmer_emscripten::run_emscripten_instance(&module, &mut instance, "test", vec![])
|
|
|
|
// .expect("run_emscripten_instance finishes");
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// let raw_output_string = capturer.end().unwrap().0;
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// // trim the strings to avoid cross-platform line ending and white space issues
|
|
|
|
// let output = raw_output_string.trim();
|
|
|
|
// let expected_output = raw_expected_str.trim();
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// let contains_output = output.contains(expected_output);
|
2019-03-01 10:53:40 -08:00
|
|
|
|
2019-04-09 18:33:29 -07:00
|
|
|
// assert!(
|
|
|
|
// contains_output,
|
|
|
|
// "Output: `{}` does not contain expected output: `{}`",
|
|
|
|
// output, expected_output
|
|
|
|
// );
|
|
|
|
// }
|