当有请求正文时模拟 WebClient 帖子

Ali*_*eza 11 java spring unit-testing webclient mockito

有几个关于模拟 WebClient 对象的问题提供了有用的答案。但我在用身体发帖时仍然遇到问题。我只是使用Mockito而不是mockwebserver

这是我正在测试的方法:

public class RestClient extends BaseRestClient {
 ...
 public <T,G> Mono<T> post(String url, G req, Class<T> resp) throws IOException {
        Mono<T> response = null;

        response = this.getWebClient().post()
                    .uri(url)
                    .header(HttpHeaders.CONTENT_TYPE,JSON_CONTENT_TYPE)
                    .accept(MediaType.APPLICATION_JSON)
                    //.body(BodyInserters.fromObject(req))
                    .header(HttpHeaders.AUTHORIZATION, BEARER + token)
                    .retrieve()
                    .bodyToMono(resp).log();

        return response.map(resp::cast);
    }
 ...
Run Code Online (Sandbox Code Playgroud)

请注意注释掉的正文线。

这是与上面的代码配合良好的测试 - 再次注意测试中注释掉的行:

@Mock
WebClient webClient;

@Mock
WebClient.RequestBodyUriSpec requestBodyUriSpec;

@Mock
WebClient.RequestHeadersSpec requestHeadersSpec;

@Mock
WebClient.RequestBodySpec requestBodySpec;

@Mock
WebClient.ResponseSpec responseSpec;

@InjectMocks
RestClient restClient;

@Test
    public void postTest() throws IOException {
        when(webClient.post()).thenReturn(requestBodyUriSpec);
        when(requestBodyUriSpec.uri(anyString())).thenReturn(requestBodySpec);
        when(requestBodySpec.header(any(),any())).thenReturn(requestBodySpec);
        when(requestBodySpec.accept(any())).thenReturn(requestBodySpec);
        when(responseSpec.bodyToMono(ArgumentMatchers.<Class<String>>notNull()))
                .thenReturn(Mono.just("resp"));

        //when(requestBodySpec.body(any())).thenReturn(requestHeadersSpec);
        when(requestBodySpec.retrieve()).thenReturn(responseSpec);

        restClient.post("http://sampleurl",Object.class, Object.class);
    }
Run Code Online (Sandbox Code Playgroud)

再次强调,一切正常。但是,如果我将注释掉的行放回代码中,这意味着这篇文章有一个正文,并通过将注释掉的行放回测试中来模拟正文,那么我将在代码中的.retrieve ()上得到NullPointerException。就像我缺少一个要模拟的对象一样。

我什至嘲笑requestHeadersSpecrequestBodyUriSpec的 .retrieve() :

when(requestHeadersSpec.retrieve()).thenReturn(responseSpec);
when(requestBodyUriSpec.retrieve()).thenReturn(responseSpec);
Run Code Online (Sandbox Code Playgroud)

但仍然没有成功。有什么想法吗?

Ali*_*eza 8

我错过了模拟 requestHeadersSpec 的“header”方法:

when(requestHeadersSpec.header(any(),any())).thenReturn(requestHeadersSpec);
Run Code Online (Sandbox Code Playgroud)

所以,现在效果很好:

@Test
    public void postTest() throws IOException {
        when(webClient.post()).thenReturn(requestBodyUriSpec);
        when(requestBodyUriSpec.uri(anyString())).thenReturn(requestBodySpec);
        when(requestBodySpec.header(any(),any())).thenReturn(requestBodySpec);

        when(requestHeadersSpec.header(any(),any())).thenReturn(requestHeadersSpec);

        when(requestBodySpec.accept(any())).thenReturn(requestBodySpec);
        when(requestBodySpec.body(any())).thenReturn(requestHeadersSpec);
        when(requestHeadersSpec.retrieve()).thenReturn(responseSpec);
        when(responseSpec.bodyToMono(ArgumentMatchers.<Class<String>>notNull()))
                .thenReturn(Mono.just("resp"));

        Assert.assertNotNull(restClient.post("http://sampleurl",Object.class, Object.class));
    }
Run Code Online (Sandbox Code Playgroud)