我有一个@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);
});
所以我不想真正打这个电话,我只想在测试中涵盖它,所以我想了解一下如何模拟或启动模拟服务器。我一直在这个现在一天..