mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-15 02:44:47 +01:00
192 lines
5.7 KiB
Java
192 lines
5.7 KiB
Java
/*
|
|
* Copyright 2022 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.runtime;
|
|
|
|
import java.io.BufferedInputStream;
|
|
import java.io.ByteArrayInputStream;
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.concurrent.ThreadLocalRandom;
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
import java.util.concurrent.atomic.AtomicLong;
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
|
|
import org.junit.ClassRule;
|
|
import org.junit.runners.Parameterized.Parameters;
|
|
|
|
import de.inetsoftware.jwebassembly.ScriptEngine;
|
|
import de.inetsoftware.jwebassembly.WasmRule;
|
|
import de.inetsoftware.jwebassembly.api.annotation.Export;
|
|
|
|
/**
|
|
* @author Volker Berlin
|
|
*/
|
|
public class UnsafeTest extends AbstractBaseTest {
|
|
|
|
@ClassRule
|
|
public static WasmRule rule = new WasmRule( TestClass.class );
|
|
|
|
public UnsafeTest( ScriptEngine script, String method, Object[] params ) {
|
|
super( rule, script, method, params );
|
|
}
|
|
|
|
@Parameters( name = "{0}-{1}" )
|
|
public static Collection<Object[]> data() {
|
|
ArrayList<Object[]> list = new ArrayList<>();
|
|
for( ScriptEngine script : ScriptEngine.testEngines() ) {
|
|
addParam( list, script, "compareAndSwapInt" );
|
|
addParam( list, script, "getAndAddInt" );
|
|
addParam( list, script, "getAndSetInt" );
|
|
addParam( list, script, "lazySetInt" );
|
|
addParam( list, script, "compareAndSwapLong" );
|
|
addParam( list, script, "getAndAddLong" );
|
|
addParam( list, script, "getAndSetLong" );
|
|
addParam( list, script, "lazySetLong" );
|
|
addParam( list, script, "compareAndSwapReference" );
|
|
addParam( list, script, "getAndSetReference" );
|
|
addParam( list, script, "lazySetReference" );
|
|
addParam( list, script, "atomicReferenceFieldUpdater" );
|
|
addParam( list, script, "putLong" );
|
|
}
|
|
rule.setTestParameters( list );
|
|
|
|
return list;
|
|
}
|
|
|
|
static class TestClass {
|
|
|
|
@Export
|
|
static int compareAndSwapInt() {
|
|
AtomicInteger obj = new AtomicInteger();
|
|
if( obj.compareAndSet( 0, 25 ) ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static int getAndAddInt() {
|
|
AtomicInteger obj = new AtomicInteger();
|
|
obj.set( 13 );
|
|
if( obj.getAndAdd( 25 ) == 13 ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static int getAndSetInt() {
|
|
AtomicInteger obj = new AtomicInteger();
|
|
obj.set( 13 );
|
|
if( obj.getAndSet( 25 ) == 13 ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static int lazySetInt() {
|
|
AtomicInteger obj = new AtomicInteger();
|
|
obj.lazySet( 42 );
|
|
return obj.get();
|
|
}
|
|
|
|
@Export
|
|
static long compareAndSwapLong() {
|
|
AtomicLong obj = new AtomicLong();
|
|
if( obj.compareAndSet( 0, 25 ) ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static long getAndAddLong() {
|
|
AtomicLong obj = new AtomicLong();
|
|
obj.set( 13 );
|
|
if( obj.getAndAdd( 25 ) == 13 ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static long getAndSetLong() {
|
|
AtomicLong obj = new AtomicLong();
|
|
obj.set( 13 );
|
|
if( obj.getAndSet( 25 ) == 13 ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static long lazySetLong() {
|
|
AtomicLong obj = new AtomicLong();
|
|
obj.lazySet( 42 );
|
|
return obj.get();
|
|
}
|
|
|
|
@Export
|
|
static int compareAndSwapReference() {
|
|
AtomicReference<Integer> obj = new AtomicReference<>();
|
|
if( obj.compareAndSet( null, 25 ) ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static int getAndSetReference() {
|
|
AtomicReference<Integer> obj = new AtomicReference<>();
|
|
obj.set( 13 );
|
|
if( obj.getAndSet( 25 ) == 13 ) {
|
|
return obj.get();
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
@Export
|
|
static int lazySetReference() {
|
|
AtomicReference<Integer> obj = new AtomicReference<>();
|
|
obj.lazySet( 42 );
|
|
return obj.get();
|
|
}
|
|
|
|
@Export
|
|
static int atomicReferenceFieldUpdater() throws Throwable {
|
|
ByteArrayInputStream input = new ByteArrayInputStream( new byte[0] );
|
|
BufferedInputStream stream = new BufferedInputStream( input );
|
|
stream.close();
|
|
return 42;
|
|
}
|
|
|
|
@Export
|
|
static int putLong() {
|
|
ThreadLocalRandom.current().nextInt();
|
|
return 42;
|
|
}
|
|
}
|
|
}
|