malformed test

This commit is contained in:
NikVolf
2017-06-06 14:19:36 +03:00
parent b789ea7422
commit 8407520ab4
5 changed files with 32 additions and 5 deletions

View File

@ -15,6 +15,7 @@ macro_rules! run_test {
run_test!("address", wasm_address);
run_test!("address-offset-range.fail", wasm_address_offset_range_fail, fail);
run_test!("binary", wasm_binary);
run_test!("endianness", wasm_endianness);
run_test!("f32", wasm_f32);
run_test!("f32_bitwise", wasm_f32_bitwise);

View File

@ -211,7 +211,9 @@ pub fn spec(name: &str) {
}
}
},
&test::Command::AssertInvalid { line, ref filename, .. } => {
&test::Command::AssertInvalid { line, ref filename, .. }
| &test::Command::AssertMalformed { line, ref filename, .. }
=> {
let module_load = try_load(&outdir, filename);
match module_load {
Ok(_) => {

View File

@ -47,6 +47,12 @@ pub enum Command {
filename: String,
text: String,
},
#[serde(rename = "assert_malformed")]
AssertMalformed {
line: u64,
filename: String,
text: String,
},
#[serde(rename = "action")]
Action {
line: u64,

View File

@ -52,6 +52,10 @@ pub trait Serialize {
pub enum Error {
/// Unexpected end of input
UnexpectedEof,
/// Invalid magic
InvalidMagic,
/// Unsupported version
UnsupportedVersion(u32),
/// Inconsistence between declared and actual length
InconsistentLength {
/// Expected length of the definition

View File

@ -1,10 +1,14 @@
use std::io;
use byteorder::{LittleEndian, ByteOrder};
use super::{Deserialize, Serialize, Error, Uint32};
use super::section::{
Section, CodeSection, TypeSection, ImportSection, ExportSection, FunctionSection,
GlobalSection, TableSection, ElementSection, DataSection, MemorySection
};
const WASM_MAGIC_NUMBER: [u8; 4] = [0x00, 0x61, 0x73, 0x6d];
/// WebAssembly module
pub struct Module {
magic: u32,
@ -144,8 +148,18 @@ impl Deserialize for Module {
fn deserialize<R: io::Read>(reader: &mut R) -> Result<Self, Self::Error> {
let mut sections = Vec::new();
let magic = Uint32::deserialize(reader)?;
let version = Uint32::deserialize(reader)?;
let mut magic = [0u8; 4];
reader.read(&mut magic)?;
if magic != WASM_MAGIC_NUMBER {
return Err(Error::InvalidMagic);
}
let version: u32 = Uint32::deserialize(reader)?.into();
if version != 1 {
return Err(Error::UnsupportedVersion(version));
}
loop {
match Section::deserialize(reader) {
@ -156,8 +170,8 @@ impl Deserialize for Module {
}
Ok(Module {
magic: magic.into(),
version: version.into(),
magic: LittleEndian::read_u32(&magic),
version: version,
sections: sections,
})
}