377 lines
9.1 KiB
Java

/*
* Copyright 2018 - 2020 Volker Berlin (i-net software)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.inetsoftware.jwebassembly.module;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import java.io.IOException;
import java.util.HashMap;
import javax.annotation.Nullable;
import org.junit.Test;
import de.inetsoftware.jwebassembly.WasmException;
import de.inetsoftware.jwebassembly.binary.BinaryModuleWriter;
import de.inetsoftware.jwebassembly.text.TextModuleWriter;
import de.inetsoftware.jwebassembly.watparser.WatParser;
/**
* @author Volker Berlin
*/
public class WatParserTest {
private void test( String wat ) throws IOException {
WasmOptions options = new WasmOptions( new HashMap<>() );
WatParser parser = new WatParser();
WasmCodeBuilder codeBuilder = parser;
codeBuilder.init( options, null );
parser.parse( wat, null, null, 100 );
StringBuilder builder = new StringBuilder();
ModuleWriter writer = new TextModuleWriter( new WasmTarget( builder ), options );
writer.writeMethodStart( new FunctionName( "A.a()V" ), null );
for( WasmInstruction instruction : codeBuilder.getInstructions() ) {
instruction.writeTo( writer );
}
writer.writeMethodFinish();
writer.close();
String expected = normalize( "(module (func $A.a " + wat + " ) )" );
String actual = normalize( builder );
assertEquals( expected, actual );
// smoke test of the binary writer
writer = new BinaryModuleWriter( new WasmTarget( builder ), new WasmOptions( new HashMap<>() ) );
writer.writeMethodStart( new FunctionName( "A.a()V" ), null );
for( WasmInstruction instruction : codeBuilder.getInstructions() ) {
instruction.writeTo( writer );
}
}
private String normalize( @Nullable CharSequence str ) {
boolean wasSpace = false;
StringBuilder builder = new StringBuilder();
for( int i = 0; i < str.length(); i++ ) {
char ch = str.charAt( i );
switch( ch ) {
case ' ':
case '\n':
case '\r':
case '\t':
if( !wasSpace ) {
builder.append( ' ' );
wasSpace = true;
}
break;
case ';':
do {
i++;
} while( i < str.length() && str.charAt( i ) != '\n' );
i--;
break;
default:
builder.append( ch );
wasSpace = false;
}
}
return builder.toString();
}
private void testError( String wat, String errorMessage ) throws IOException {
try {
test( wat );
fail( "Exception expected with message: " + errorMessage );
} catch( WasmException ex ) {
String error = ex.getMessage();
int newlineIdx = error.indexOf( '\n' );
if( newlineIdx > 0 ) {
error = error.substring( 0, newlineIdx );
}
assertEquals( errorMessage, error );
}
}
@Test
public void Local_get() throws IOException {
test( "local.get 1" );
}
@Test
public void Local_set() throws IOException {
test( "i32.const 42 local.set 2" );
}
@Test
public void Local_tee() throws IOException {
test( "i64.const 42 local.tee 3" );
}
@Test
public void i32_add() throws IOException {
test( "i32.add" );
}
@Test
public void i32_const() throws IOException {
test( "i32.const -7" );
}
@Test
public void i32_eqz() throws IOException {
test( "i32.eqz" );
}
@Test
public void i32_mul() throws IOException {
test( "i32.mul" );
}
@Test
public void i32_reinterpret_f32() throws IOException {
test( "i32.reinterpret_f32" );
}
@Test
public void i32_trunc_sat_f32_s() throws IOException {
test( "i32.trunc_sat_f32_s" );
}
@Test
public void i64_const() throws IOException {
test( "i64.const 13" );
}
@Test
public void i64_extend_i32_s() throws IOException {
test( "i64.extend_i32_s" );
}
@Test
public void i64_reinterpret_f64() throws IOException {
test( "i64.reinterpret_f64" );
}
@Test
public void i64_trunc_sat_f64_s() throws IOException {
test( "i64.trunc_sat_f64_s" );
}
@Test
public void f32_abs() throws IOException {
test( "f32.abs" );
}
@Test
public void f32_ceil() throws IOException {
test( "f32.ceil" );
}
@Test
public void f32_const() throws IOException {
test( "f32.const 0x1.5p5" );
}
@Test
public void f32_copysign() throws IOException {
test( "f32.copysign" );
}
@Test
public void f32_convert_i32_s() throws IOException {
test( "f32.convert_i32_s" );
}
@Test
public void f32_div() throws IOException {
test( "f32.div" );
}
@Test
public void f32_floor() throws IOException {
test( "f32.floor" );
}
@Test
public void f32_max() throws IOException {
test( "f32.max" );
}
@Test
public void f32_min() throws IOException {
test( "f32.min" );
}
@Test
public void f32_mul() throws IOException {
test( "f32.mul" );
}
@Test
public void f32_nearest() throws IOException {
test( "f32.nearest" );
}
@Test
public void f32_reinterpret_i32() throws IOException {
test( "f32.reinterpret_i32" );
}
@Test
public void f32_sqrt() throws IOException {
test( "f32.sqrt" );
}
@Test
public void f32_sub() throws IOException {
test( "f32.sub" );
}
@Test
public void f32_trunc() throws IOException {
test( "f32.trunc" );
}
@Test
public void f64_abs() throws IOException {
test( "f64.abs" );
}
@Test
public void f64_ceil() throws IOException {
test( "f64.ceil" );
}
@Test
public void f64_const() throws IOException {
test( "f64.const 0x1.5p5" );
}
@Test
public void f64_convert_i64_s() throws IOException {
test( "f64.convert_i64_s" );
}
@Test
public void f64_copysign() throws IOException {
test( "f64.copysign" );
}
@Test
public void f64_div() throws IOException {
test( "f64.div" );
}
@Test
public void f64_floor() throws IOException {
test( "f64.floor" );
}
@Test
public void f64_nearest() throws IOException {
test( "f64.nearest" );
}
@Test
public void f64_max() throws IOException {
test( "f64.max" );
}
@Test
public void f64_min() throws IOException {
test( "f64.min" );
}
@Test
public void f64_mul() throws IOException {
test( "f64.mul" );
}
@Test
public void f64_reinterpret_i64() throws IOException {
test( "f64.reinterpret_i64" );
}
@Test
public void f64_sqrt() throws IOException {
test( "f64.sqrt" );
}
@Test
public void f64_sub() throws IOException {
test( "f64.sub" );
}
@Test
public void f64_trunc() throws IOException {
test( "f64.trunc" );
}
@Test
public void ref_is_null() throws IOException {
test( "ref.is_null" );
}
@Test
public void return_() throws IOException {
test( "return" );
}
@Test
public void ifElseEnd() throws IOException {
test( "if else end" );
}
@Test
public void ifElseEndI32() throws IOException {
test( "if(result i32) else end" );
}
@Test
public void drop() throws IOException {
test( "drop" );
}
@Test
public void table_get() throws IOException {
test( "table.get 1" );
}
@Test
public void table_set() throws IOException {
test( "table.set 2" );
}
@Test
public void i32_load() throws IOException {
test( "i32.load offset=2 align=1" );
}
@Test
public void i32_load8_u() throws IOException {
test( "i32.load8_u offset=2 align=1" );
}
@Test
public void errorMissingToken() throws IOException {
testError( "i32.const", "Missing Token in wasm text format after token: i32.const" );
}
@Test
public void errorUnknownToken() throws IOException {
testError( "foobar", "Unknown WASM token: foobar" );
}
}