我有一个方法,可以使用io.vertx.ext.web.client.WebClient
调用外部端点。我无法测试它的处理程序方法。
这是需要测试的方法:
public void freshdeskPostRequest(CompletableFuture<ResponseObject> completableFuture, String url, JsonObject jsonObject, String action) {
webClient.postAbs(url)
.putHeader("Content-type", "application/json")
.putHeader(Constants.AUTHORIZATION, freshdeskAuthHandler)
.timeout(fresdeskTimeout)
.sendJsonObject(jsonObject, httpResponseAsyncResult -> {
getFreshdeskResponse(completableFuture, action, httpResponseAsyncResult);
});
}
getFreshdeskResponse
中的方法需要通过对url
进行模拟调用来进行测试。但是该方法是在处理程序中调用的,因此我不确定如何模拟调用并执行处理程序。我也在论坛上检查了几个答案,但都没有找到相关文档。请帮忙。我正在使用Junit
,Mockito
作为测试框架。请帮忙。
答案 0 :(得分:2)
您可以使用 mockito 库的 ArgumentCaptor 捕获lambda表达式并手动触发lambda。例如:
@Captor
ArgumentCaptor<SomeHandlerType> captor; // create ArgumentCaptor for handler
SomeHandlerType是处理程序的类型。然后像这样用captor.capture()调用sendJsonObject()-
mockedRequest.sendJsonObject(captor.capture()); // capture the argument
SomeHandlerType handler = captor.getValue(); // get the handler lambda
handler.handle(dummyResponse); // trigger the handler manually