62 lines
1.9 KiB
Java
62 lines
1.9 KiB
Java
package bytecode;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
import java.io.File;
|
|
import java.lang.reflect.InvocationTargetException;
|
|
import java.lang.reflect.Method;
|
|
import java.net.URL;
|
|
import java.net.URLClassLoader;
|
|
|
|
import org.junit.BeforeClass;
|
|
import org.junit.Test;
|
|
import org.objectweb.asm.Opcodes;
|
|
|
|
import de.dhbwstuttgart.core.JavaTXCompiler;
|
|
|
|
public class OpTest {
|
|
private static String path;
|
|
private static File fileToTest;
|
|
private static JavaTXCompiler compiler;
|
|
private static ClassLoader loader;
|
|
private static Class<?> classToTest;
|
|
private static String pathToClassFile;
|
|
private static Object instanceOfClass;
|
|
|
|
@BeforeClass
|
|
public static void setUpBeforeClass() throws Exception {
|
|
path = System.getProperty("user.dir")+"/test/bytecode/javFiles/Op.jav";
|
|
fileToTest = new File(path);
|
|
compiler = new JavaTXCompiler(fileToTest);
|
|
pathToClassFile = System.getProperty("user.dir")+"/testBytecode/generatedBC/";
|
|
compiler.generateBytecode(pathToClassFile);
|
|
loader = new URLClassLoader(new URL[] {new URL("file://"+pathToClassFile)});
|
|
classToTest = loader.loadClass("Op");
|
|
instanceOfClass = classToTest.getDeclaredConstructor().newInstance();
|
|
}
|
|
|
|
@Test
|
|
public void testAddString() throws NoSuchMethodException, SecurityException, IllegalAccessException,
|
|
IllegalArgumentException, InvocationTargetException, InstantiationException {
|
|
|
|
Method m = classToTest.getDeclaredMethod("m", String.class,String.class);
|
|
|
|
String result = (String) m.invoke(instanceOfClass, "Byte","Code");
|
|
|
|
assertEquals("ByteCode", result);
|
|
}
|
|
|
|
@Test
|
|
public void testAddInt() throws NoSuchMethodException, SecurityException, IllegalAccessException,
|
|
IllegalArgumentException, InvocationTargetException, InstantiationException {
|
|
|
|
Method m = classToTest.getDeclaredMethod("m", Integer.class,Integer.class);
|
|
|
|
Integer result = (Integer) m.invoke(instanceOfClass, 7,3);
|
|
|
|
assertEquals(10, result);
|
|
}
|
|
|
|
|
|
}
|