今天我正在研究一个具有两个静态方法的类,这些方法具有相同的名称,不同的参数类型。当我尝试模拟其中一种方法时,我遇到了这个问题。
这是要嘲笑的课程:
//RequestUtil.java, I want to mock the second config method
public class RequestUtil {
public static void config(String request, List parameters){}
public static void config(HttpServletRequest request, List parameters){}
}
这是测试类:
//RequestUtilTest.java
@RunWith(PowerMockRunner.class)
@PrepareForTest(RequestUtil.class)
public class RequestUtilTest {
//this test will throw NullPointException
@Test
public void testConfig() throws Exception {
mockStatic(RequestUtil.class);
doNothing().when(RequestUtil.class, "config", any(HttpServletRequest.class), anyList());
}
}
运行此测试,它将抛出异常:
java.lang.NullPointerException
at java.lang.Class.isAssignableFrom(Native Method)
at org.powermock.reflect.internal.WhiteboxImpl.checkIfParameterTypesAreSame(WhiteboxImpl.java:2432)
at org.powermock.reflect.internal.WhiteboxImpl.getMethods(WhiteboxImpl.java:1934)
at org.powermock.reflect.internal.WhiteboxImpl.getBestMethodCandidate(WhiteboxImpl.java:1025)
at org.powermock.reflect.internal.WhiteboxImpl.findMethodOrThrowException(WhiteboxImpl.java:948)
at org.powermock.reflect.internal.WhiteboxImpl.doInvokeMethod(WhiteboxImpl.java:882)
at org.powermock.reflect.internal.WhiteboxImpl.invokeMethod(WhiteboxImpl.java:859)
at org.powermock.reflect.Whitebox.invokeMethod(Whitebox.java:466)
at org.powermock.api.mockito.internal.expectation.PowerMockitoStubberImpl.when(PowerMockitoStubberImpl.java:106)
...
此异常由以下原因引起:
doNothing().when(RequestUtil.class, "config", any(HttpServletRequest.class), anyList());
但是,如果我模拟第一个配置方法,那意味着用以下代码替换:
doNothing().when(RequestUtil.class, "config", anyString(), anyList());
一切都很好。
RequestUtil类定义中的配置方法的顺序与此问题无关。无论config(HttpServletRequest,List)是RequestUtil的第一个或第二个配置方法,配置的模拟(HttpServletRequest,List)都将失败。
此外,如果我将HttpServletRequest修改为另一个“更简单”类型,例如int,则此问题将消失。
这似乎是PowerMock的一个错误,但我不确定。我搜索了谷歌和stackoverflow,但没有关于这个问题的帖子或讨论。所以任何人都可以帮助我?
我使用的测试框架:
JUnit: 4.10
PowerMock: 1.5.4
Mockito: 1.9.5
答案 0 :(得分:1)
似乎是overloaded methods的PowerMock错误。
您可以通过使用WhiteBox class
查找方法对象并明确模拟此方法来绕过它。
...
import org.powermock.reflect.Whitebox;
//RequestUtilTest.java
@RunWith(PowerMockRunner.class)
@PrepareForTest(RequestUtil.class)
public class RequestUtilTest {
//this test will throw NullPointException
@Test
public void testConfig() throws Exception {
mockStatic(RequestUtil.class);
Method method = Whitebox.getMethod(RequestUtil.class, "config", HttpServletRequest.class, List.class);
doNothing().when(RequestUtil.class, method);
}
}
先前已经在stackoverflow上询问了