gpt4 book ai didi

spring-boot - Mockito MockedStatic when() "Cannot resolve method"

转载 作者:行者123 更新时间:2023-12-01 23:42:36 25 4
gpt4 key购买 nike

我正在尝试使用 Mockito MockedStatic 来模拟静态方法。

我将 mockito-core 和 mockito-inline 版本 3.6.0 与 Spring Boot 和 maven 一起使用。

我无法使模拟工作,我在 Unirest::post 上有一个“无法解析方法帖子”,您可以在下面的代码中看到:

@Test
public void test() {
try (MockedStatic<Unirest> mock = Mockito.mockStatic(Unirest.class)) {
mock.when(Unirest::post).thenReturn(new HttpRequestWithBody(HttpMethod.POST, "url"));
}
}

Unirest 类来自 unirest-java包。

有人遇到过这个问题并有解决方案吗?

最佳答案

Unirest.post(String url) 方法接受一个参数,因此您不能使用 Unirest::post 引用它。

您可以使用以下内容:

@Test
void testRequest() {
try (MockedStatic<Unirest> mockedStatic = Mockito.mockStatic(Unirest.class)) {
mockedStatic.when(() -> Unirest.post(ArgumentMatchers.anyString())).thenReturn(...);
someService.doRequest();
}
}

但请记住,您现在必须模拟整个 Unirest 用法和调用它的每个方法,因为模拟默认返回 null

如果您想测试您的 HTTP 客户端,请查看 WireMockMockWebServer来自 OkHttp。通过这种方式,您可以使用真实的 HTTP 通信测试您的客户端,还可以测试诸如响应缓慢或 5xx HTTP 代码等极端情况。

关于spring-boot - Mockito MockedStatic when() "Cannot resolve method",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64785793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com