Mocking Overloaded Methoods With Mockito(用 Mockito 模拟重载的方法)
问题描述
我正在测试一些依赖于 RestTemplate 类中的 getForObject() 方法的方法.
I am testing some methods that rely on the getForObject() method in the RestTemplate class.
getForObject() 方法重载了签名getForObject(String url, Class 和 getForObject(字符串 url, 类
The getForObject() method is overloaded with the signaturesgetForObject(String url, Class<T> responseType, Object... uriVariables) and getForObject(String url, Class<T> responseType, Map<String, ?>
我需要在其参数中使用 Object... 存根方法以引发异常,但我不能因为 Mockito.any() 还包含 地图类型.因此,将方法存根为 getForObject(Mockito.anyString(),Mockito.any(), Mockito.any() 将指向触发编译错误的两个方法.
I need to stub the method with Object... in its arguments to throw an exception but I can not because Mockito.any() also encompasses the Map type.
Therefore, stubbing the method as getForObject(Mockito.anyString(),Mockito.any(), Mockito.any() will point to BOTH methods triggering a compilation error.
这个问题有什么可能的解决方法吗?
Are there any possible workarounds to this problem?
我已经尝试使用 Mockito.anyObject() 无济于事
I have already tried using Mockito.anyObject() to no avail
推荐答案
不确定你的问题可能是什么,但在这一点上,我不妨发布一个工作示例.
Not sure what your problem might be, but at this point I might as well just post a working example.
如前所述,您需要正确指定每个参数的类型,以便 mockito 可以定位到匹配的方法签名.
As mentioned before you need to properly specify the type of each parameter, so that mockito can locate the matching method signature.
有关处理旧 mockito 版本使用的可变参数的语法,请查看 这个答案.
For the syntax to handle varargs used by older mockito versions, check this answer.
import static org.mockito.ArgumentMatchers.any;
...
@RunWith(MockitoJUnitRunner.class)
public class MockitoTest {
@Test
public void test() throws Exception {
RestTemplate api = Mockito.mock(RestTemplate.class);
Object obj1 = new Object();
Object obj2 = new Object();
Object obj3 = new Object();
Mockito.when(api.getForObject(any(String.class),any(Class.class), ArgumentMatchers.<Object>any())).thenReturn(obj1);
Mockito.when(api.getForObject(any(String.class),any(Class.class), any(Map.class))).thenReturn(obj2);
Mockito.when(api.getForObject(any(URI.class),any(Class.class))).thenReturn(obj3);
Assert.assertEquals(obj1, api.getForObject("", String.class));
Assert.assertEquals(obj1, api.getForObject("", String.class, obj1));
Assert.assertEquals(obj1, api.getForObject("", String.class, obj1, obj2));
Assert.assertEquals(obj1, api.getForObject("", String.class, obj1, obj2, obj3));
Assert.assertEquals(obj1, api.getForObject("", String.class, new Object[] {obj1,obj2,obj3}));
Assert.assertEquals(obj2, api.getForObject("", String.class, new HashMap()));
Assert.assertEquals(obj3, api.getForObject(new URI(""), String.class));
}
}
对于您的用例,只需将 thenReturn 替换为 thenThrow.
For your usecase just replace the thenReturn with thenThrow.
这篇关于用 Mockito 模拟重载的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:用 Mockito 模拟重载的方法
基础教程推荐
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- Java Swing计时器未清除 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
