简体   繁体   English

使用MockRestServiceServer测试HttpRequestExecutingMessageHandler

[英]Testing HttpRequestExecutingMessageHandler using MockRestServiceServer

I'm working on an app using Spring Integration that uses the HttpRequestExecutingMessageHandler class to make backend requests to a REST service at regular intervals. 我正在使用Spring Integration开发一个应用程序,该应用程序使用HttpRequestExecutingMessageHandler类定期向REST服务发出后端请求。 I would like to mock out the REST server in testing, and rather than construct a mock server I would prefer to use MockRestServiceServer to do this. 我想在测试中模拟出REST服务器,而不是构建一个模拟服务器,我宁愿使用MockRestServiceServer来做这件事。 However, the MockRestServiceServer doesn't seem to be intercepting the RestTemplate calls, and instead they are going through (to http://example.com/ ) and raising java.net.ConnectException: Connection refused . 但是, MockRestServiceServer似乎没有拦截RestTemplate调用,而是通过(到http://example.com/ )并引发java.net.ConnectException: Connection refused Is there a way to force the HttpRequestExecutingMessageHandler to call MockRestServiceServer , or should I rethink this testing strategy? 有没有办法强制HttpRequestExecutingMessageHandler调用MockRestServiceServer ,还是应该重新考虑这个测试策略?

Configuration for the application: 应用程序的配置:

@Configuration
public class RestClientTestApplicationConfig {
    @Bean
    @Qualifier("httpRequestChannel")
    public MessageChannel httpRequestChannel() { return new QueueChannel(); }

    @Bean
    @Qualifier("httpReplyChannel")
    public MessageChannel httpReplyChannel() { return new QueueChannel(); }

    @Bean
    public RestTemplate restTemplate() { return new RestTemplate(); }

    @Bean
    @InboundChannelAdapter(value="httpRequestChannel", poller=@Poller(fixedDelay = "1000"))
    public MessageSource<String> httpRequestTrigger() { return new ExpressionEvaluatingMessageSource<>(new LiteralExpression(""), String.class); }

    @Bean
    @ServiceActivator(inputChannel="httpRequestChannel", poller=@Poller(fixedDelay = "1000"))
    public MessageHandler messageHandler(
        RestTemplate restTemplate,
        @Qualifier("httpReplyChannel") MessageChannel messageChannel,
        @Value("${url}") String url
    ) {
        HttpRequestExecutingMessageHandler messageHandler = new HttpRequestExecutingMessageHandler(url, restTemplate);
        messageHandler.setOutputChannel(messageChannel);
        return messageHandler;
    }
} 

( url is defined in application-test.properties to be http://example.com in test and the real URL otherwise) urlapplication-test.properties定义为测试中的http://example.com ,否则为真实URL)

Test: 测试:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
public class RestClientIntegrationTest {
    @Autowired
    private RestTemplate restTemplate;

    private MockRestServiceServer mockServer;

    @Before
    public void setup() {
        mockServer = MockRestServiceServer.createServer(restTemplate);
    }

    @Test
    public void makesBackendRequest() {
        mockServer.expect(ExpectedCount.once(), MockRestRequestMatchers.requestTo("http://example.com/"))
            .andExpect(MockRestRequestMatchers.method(HttpMethod.GET));

        mockServer.verify();
    }
}

Test results: 检测结果:

2016-12-29 16:14:36.902 ERROR 16665 --- [ask-scheduler-2] o.s.integration.handler.LoggingHandler   : org.springframework.messaging.MessageHandlingException: HTTP request execution failed for URI [http://example.com]; nested exception is org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://example.com": Connection refused (Connection refused); nested exception is java.net.ConnectException: Connection refused (Connection refused)
    at org.springframework.integration.http.outbound.HttpRequestExecutingMessageHandler.handleRequestMessage(HttpRequestExecutingMessageHandler.java:409)

java.lang.AssertionError: Further request(s) expected leaving 1 unsatisfied expectation(s).
0 request(s) executed.
    at org.springframework.test.web.client.AbstractRequestExpectationManager.verify(AbstractRequestExpectationManager.java:103)
    at org.springframework.test.web.client.MockRestServiceServer.verify(MockRestServiceServer.java:117)
    at com.restclienttest.RestClientIntegrationTest.makesBackendRequest(RestClientIntegrationTest.java:35)

UPDATE Adapted the test code as follows, as per Artem Bilan's comment: 更新根据Artem Bilan的评论改编测试代码如下:

    mockServer.expect(ExpectedCount.once(), MockRestRequestMatchers.requestTo("http://example.com/"))
        .andExpect(MockRestRequestMatchers.method(HttpMethod.GET))
        .andRespond(MockRestResponseCreators.withSuccess("example reply", MediaType.TEXT_PLAIN));

    Message<?> message = httpReplyChannel.receive(1001);
    assertNotNull(message);
    assertThat(((ResponseEntity<String>) message.getPayload()).getBody(), is("example reply"));

Still getting ConnectException and the example reply sent by the MockRestServiceServer does not seem to get through, because the body of the ResponseEntity is null. 仍然获得ConnectExceptionMockRestServiceServer发送的示例回复似乎没有通过,因为ResponseEntity的主体为null。

I think you're good here. 我觉得你在这里很好。 Only the problem that you have missed the fact that your application is async . 只有您错过了应用程序异步的问题 The @InboundChannelAdapter periodically sends messages to the QueueChannel and so on. 所述@InboundChannelAdapter周期性地发送消息到QueueChannel等。 But it does that in the poller's thread, not that one where you are waiting for verification. 但是它在poller的主题中就是这样,而不是你在等待验证的那个。

As a fix I think you should really wait for reply in the httpReplyChannel via its .receive(10000) method. 作为修复,我认为您应该通过其httpReplyChannel .receive(10000)方法等待httpReplyChannel回复。 And only after that call the mockServer.verify() . 然后才调用mockServer.verify()

UPDATE UPDATE

Hm. 嗯。 I'd say we have a test-case for you already: 我说我们已经有了一个测试用例:

<bean id="restTemplate" class="org.springframework.web.client.RestTemplate"/>

<int-http:outbound-gateway url="/testApps/httpMethod"
                           request-channel="requestChannel"
                           reply-channel="replyChannel"
                           rest-template="restTemplate"
                           expected-response-type="java.lang.String"
                           http-method-expression="payload"/>

<int:channel id="replyChannel">
    <int:queue/>
</int:channel>

@Autowired
private RestTemplate restTemplate;

private MockRestServiceServer mockServer;

@Before
public void setup() {
    this.mockServer = MockRestServiceServer.createServer(this.restTemplate);
}

@Test
public void testDefaultMethod() throws Exception {
    this.mockServer.expect(requestTo("/testApps/httpMethod"))
            .andExpect(method(HttpMethod.POST))
            .andRespond(withSuccess(HttpMethod.POST.name(), MediaType.TEXT_PLAIN));

    this.defaultChannel.send(new GenericMessage<String>("Hello"));
    Message<?> message = this.replyChannel.receive(5000);
    assertNotNull(message);
    assertEquals("POST", message.getPayload());

    this.mockServer.verify();
}

https://github.com/spring-projects/spring-integration/blob/master/spring-integration-http/src/test/java/org/springframework/integration/http/config/HttpOutboundGatewayWithMethodExpressionTests.java https://github.com/spring-projects/spring-integration/blob/master/spring-integration-http/src/test/java/org/springframework/integration/http/config/HttpOutboundGatewayWithMethodExpressionTests.java

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 将ParameterizedTypeReference用于HttpRequestExecutingMessageHandler的setExpectedResponseType - Using ParameterizedTypeReference to setExpectedResponseType for HttpRequestExecutingMessageHandler 将Spring的RestTemplate与MockRestServiceServer进行集成测试-使用返回的主体,尽管出现500个错误 - Integration-testing Spring's RestTemplate with MockRestServiceServer - using returned body despite 500 error 使用多部分请求测试 MockRestServiceServer spring-test - Testing MockRestServiceServer spring-test with multipart request 如何使用MockRestServiceServer在RESTful控制器中引发IllegalArgumentException异常的测试 - How to test than an IllegalArgumentException is thrown in a RESTful controller using MockRestServiceServer 如何使用 MockRestServiceServer 模拟 RestTemplate? - How to mock RestTemplate with MockRestServiceServer? 使用MockRestServiceServer进行Gzip压缩 - Gzip compression with MockRestServiceServer 将HttpRequestExecutingMessageHandler的ExpectedResponseType设置为Page - Set the HttpRequestExecutingMessageHandler's expectedResponseType to a Page 为每条消息的 HttpRequestExecutingMessageHandler 配置 RestTemplate - Configure RestTemplate for HttpRequestExecutingMessageHandler per message 如何使用 MockRestServiceServer 测试 RestClientException - How to test a RestClientException with MockRestServiceServer 使用MockRestServiceServer模拟REST调用 - Mocking a REST call with MockRestServiceServer
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM