我有一个类去服务器执行查询,我想做的是用一个返回一些罐头的模拟调用替换那个调用(这需要一个实时服务器在后台启动并运行)用于单元测试的响应。
我是 BCEL 的新手,我看过这篇文章,尽可能地对其进行了调整,但似乎无法让它为我工作:
这是一些代码:
// =======================================================
public class JUnitByteCodeUtils {
public static final String EVAL_QUERY_CLASS_NAME_SHORT = "ServerApi";
public static final String EVAL_QUERY_CLASS_NAME_FULL = "org.foo." + EVAL_QUERY_CLASS_NAME_SHORT;
public static final String EVAL_QUERY_METHOD_NAME = "evaluateQuery";
public static final String EVAL_QUERY_METHOD_SIGNATURE = "(Ljava/lang/String;)Lorg/foo/QueryResultSet;";
public static final Type QUERY_RESULTSET_TYPE = new ObjectType( QueryResultSet.class.getName() );
/**
* <p>Redirect/replace calls to {@code ServerApi.evaluateQuery(String)} within the specified class to the specified static 'redirectTo' method in the specified 'redirectTo' class</p>
*
* @param classToRedirect - Class containing calls to {@code ServerApi.evaluateQuery(String)}
* @param redirectToClass - The class containing the static method to be called instead
* @param redirectToMethod - The static method to be called instead
*/
public static void redirectQueryEvaluationCalls( String classToRedirect, String redirectToClass, String redirectToMethod ) {
JavaClass compiledClass;
try {
compiledClass = Repository.lookupClass( classToRedirect );
} catch( ClassNotFoundException ex ) {
throw new RuntimeException( "Unable to resolve class [" + classToRedirect + "]", ex );
}
// (2) Create a working class from the compiled class (that we can modify)
final ClassGen workingClass = new ClassGen( compiledClass );
final ConstantPoolGen constantPool = workingClass.getConstantPool();
// (3) Locate the query evaluation method in the constant pool of the class to be modified
final int methodIdx = constantPool.lookupMethodref( EVAL_QUERY_CLASS_NAME_FULL, EVAL_QUERY_METHOD_NAME, EVAL_QUERY_METHOD_SIGNATURE );
if( methodIdx > 0 ) {
final ConstantMethodref evalQueryMethodReference = (ConstantMethodref) constantPool.getConstant( methodIdx );
evalQueryMethodReference.setClassIndex( constantPool.lookupClass( classToRedirect ) );
evalQueryMethodReference.setNameAndTypeIndex( constantPool.addNameAndType( "$" + EVAL_QUERY_CLASS_NAME_SHORT + "$" + EVAL_QUERY_METHOD_NAME,
EVAL_QUERY_METHOD_SIGNATURE )
);
// (4) Build up some new byte code instructions to redirect the existing calls to some new target method
final InstructionList code = new InstructionList();
final InstructionFactory codeFactory = new InstructionFactory( workingClass, constantPool );
code.append( codeFactory.createInvoke( redirectToClass,
redirectToMethod,
QUERY_RESULTSET_TYPE,
new Type[] { Type.STRING },
Constants.INVOKESTATIC ) );
code.append( codeFactory.createReturn( QUERY_RESULTSET_TYPE ) );
code.setPositions();
// (5) Replace the existing query evaluation calls with calls to our redirected method
final MethodGen methodGen = new MethodGen( Constants.ACC_PUBLIC | Constants.ACC_SYNTHETIC | Constants.ACC_STATIC,
QUERY_RESULTSET_TYPE,
new Type[] { Type.STRING },
new String[] { "query" },
"$" + EVAL_QUERY_CLASS_NAME_SHORT + "$" + EVAL_QUERY_METHOD_NAME,
classToRedirect,
code,
constantPool );
// methodGen.setMaxLocals(0);
// methodGen.setMaxStack(1);
// methodGen.setMaxLocals();
// methodGen.setMaxStack();
workingClass.addMethod( methodGen.getMethod() );
// (6) Write out the updated class definition
try {
File classFile = new File( Repository.lookupClassFile( compiledClass.getClassName() ).getPath() );
workingClass.getJavaClass().dump( classFile.getPath() );
} catch (final IOException ex) {
throw new RuntimeException( "Unable to save updated class [" + classToRedirect + "]", ex );
}
} else {
throw new RuntimeException( "Class [" + classToRedirect.getName() + "] does not contain any query evaluation calls" );
}
}
}
// =======================================================
public class QueryCaller {
public QueryCaller() {}
public static String callQuery() {
QueryResultSet result = ServerApi.evaluateQuery( "foo = bar" );
return result.getValue();
}
}
// =======================================================
public class TestClass {
@Test
public void test() throws Exception {
JUnitByteCodeUtils.redirectQueryEvaluationCalls( "org.foo.RelevanceCaller",
"org.foo.MockServerApi",
"evaluateQuery" );
System.out.println( QueryCaller.callQuery() );
}
}
在这里,在我的单元测试开始时,我试图将调用替换为
ServerApi.evaluateQuery( 字符串 )
内
查询调用者
上课打电话给
MockServerApi.evaluateQuery(String)
其中两个 evaluateQuery() 方法都返回 QueryResultSet 类型的对象。
但是,当我运行它时(并且为了在此处发布它,我不得不稍微修改此代码)我得到一个堆栈 underFlow:
java.lang.VerifyError: JVMVRFY036 堆栈下溢;class=org/foo/QueryCaller, method=$ServerApi$evaluateQuery(Ljava/lang/String;)Lorg/foo/QueryResultSet;, pc=0 at java.lang.J9VMInternals.verifyImpl(Native Method) at java.lang.J9VMInternals .verify(J9VMInternals.java:93) at java.lang.J9VMInternals.initialize(J9VMInternals.java:170) at org.foo.TestClass.test(TestClass.java:110) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method ) 在 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88) 在 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:55) 在 java.lang.reflect.Method.invoke(Method.java:613) 在 org .junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47) 在 org.junit.internal.runners.model。
有什么想法吗?
-GY