0

我有一个@Service类执行一些空值检查,然后使用 WebClient 调用外部微服务。Sonar 抱怨这个类没有经过测试,因为该方法没有经过全面测试。问题是,我怎样才能模拟这个调用或为此使用模拟服务器?我已经尝试过 WebTestClient 但我似乎无法让事情正常工作..

public Mono<CartResponse> someServiceCall(BarRequest barRequest)

//some null checks and random logic.

return WebClient.create("http://" + fooHostName)
                .post()
                .uri(uri)
                .body(Mono.just(barRequest), BarRequest.class)
                .exchange()
                .flatMap(serviceResponse -> {
                    if (serviceResponse.statusCode().is5xxServerError()) {

                        //some error logic
                        return Mono.just(barResponse);
                    }
                    return serviceResponse.bodyToMono(BarResponse.class);
                });

所以我不想真正打这个电话,我只想在测试中涵盖它,所以我想了解一下如何模拟或启动模拟服务器。我一直在这个现在一天..

4

1 回答 1

1

到目前为止,还不支持嘲笑WebClientlike RestTemplate

在 github 上有一个未解决的问题。

支持 WebClient 的 MockRestServiceServer

Spring 自己使用MockWebServer来测试自己的代码,因此可以肯定地说这是一个可行的解决方案。

于 2019-07-27T21:10:10.740 回答