Files
wasmer/tests/compilers/artifact.rs
Syrus Akbary d3f02cb3da Merge pull request #4435 from wasmerio/github-m1
Use M1 runner for building & testing m1
2024-02-19 16:10:23 -08:00

80 lines
3.2 KiB
Rust

use std::{fs, path::PathBuf};
use cfg_if::cfg_if;
use wasmer::{Engine, Module};
#[test]
fn artifact_serialization_roundtrip() {
let file_names = ["bash.wasm", "cowsay.wasm", "python-3.11.3.wasm"];
for file_name in file_names {
let path = PathBuf::from("tests/integration/cli/tests/wasm").join(file_name);
let wasm_module = fs::read(path).unwrap();
let engine = Engine::default();
let module = Module::new(&engine, wasm_module).unwrap();
let serialized_bytes = module.serialize().unwrap();
let deserialized_module =
unsafe { Module::deserialize(&engine, serialized_bytes.clone()) }.unwrap();
let reserialized_bytes = deserialized_module.serialize().unwrap();
assert_eq!(serialized_bytes, reserialized_bytes);
}
}
// This test is just here to update the compiled objects to their
// latest version, so we can commit them to the repo.
#[test]
#[ignore = "Please enable it when tests fail, so we can generate new versions of the .wasmu files"]
fn artifact_serialization_build() {
use std::str::FromStr;
use wasmer::sys::{get_default_compiler_config, Features, NativeEngineExt};
use wasmer::{CpuFeature, Target, Triple};
let file_names = ["bash.wasm", "cowsay.wasm", "python-3.11.3.wasm"];
let operating_systems = ["linux", "windows"];
let chipset = "x86_64";
for os in operating_systems {
let triple = Triple::from_str(&format!("{}-{}", chipset, os)).unwrap();
let mut cpu_feature = CpuFeature::set();
cpu_feature.insert(CpuFeature::from_str("sse2").unwrap());
let target = Target::new(triple, cpu_feature);
for file_name in file_names {
let path = PathBuf::from("tests/integration/cli/tests/wasm").join(file_name);
let wasm_module = fs::read(path).unwrap();
let config = get_default_compiler_config().unwrap();
let engine = Engine::new(config, target.clone(), Features::default());
let module = Module::new(&engine, wasm_module).unwrap();
let serialized_bytes = module.serialize().unwrap();
let path = PathBuf::from(&format!("tests/compilers/wasmu/{}/{}u", os, file_name));
std::fs::write(path, serialized_bytes).unwrap();
}
}
}
#[test]
#[cfg(target_arch = "x86_64")]
fn artifact_deserialization_roundtrip() {
// This test is included to make sure we don't break the serialized format
// by mistake. Otherwise, everything in this test is already tested in
// `artifact_serialization_roundtrip`.
let file_names = ["bash.wasmu", "cowsay.wasmu", "python-3.11.3.wasmu"];
cfg_if!(
if #[cfg(target_os = "windows")] {
let base_path = "tests/compilers/wasmu/windows";
} else {
let base_path = "tests/compilers/wasmu/linux";
}
);
for file_name in file_names {
let path = PathBuf::from(base_path).join(file_name);
let wasm_module_bytes = fs::read(path).unwrap();
let engine = Engine::default();
let module = unsafe { Module::deserialize(&engine, wasm_module_bytes.clone()) }.unwrap();
let reserialized_bytes = module.serialize().unwrap();
assert_eq!(wasm_module_bytes.to_vec(), reserialized_bytes);
}
}