如何在vert.x Java中对处理程序进行单元测试?

时间:2019-06-10 16:58:14

标签: java unit-testing mockito vert.x

我有一个方法,可以使用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进行模拟调用来进行测试。但是该方法是在处理程序中调用的,因此我不确定如何模拟调用并执行处理程序。我也在论坛上检查了几个答案,但都没有找到相关文档。请帮忙。我正在使用JunitMockito作为测试框架。请帮忙。

1 个答案:

答案 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