2

我想对两个同样使用 Spring Integration 流的 Spring Boot 应用程序进行集成测试。为了测试我的应用程序,我想检查通过myMessageChannel. 它是在其中一个应用程序的 XML 流中定义的。

如何窃听我的直接消息通道并将消息重定向到 PollableChannel,以便我可以一一阅读它们?我在网上找到的方法都不适合我。

@RunWith(SpringRunner.class)
@SpringBootTest(classes = {App1.class, App2.class}, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)
@TestPropertySource("classpath:integration.properties")
public class MyWireTapTest {

    @Autowired
    MessageChannel myMessageChannel;

    @Test
    public void test() {


        // This is basically what I want to do
        // But it does not work, since it is a direct channel
        myMessageChannel.recieve();

    }
}
4

2 回答 2

4

自动接线AbstractMessageChannel并使用

myMessageChannel.addInterceptor(new WireTap(tapChannel));

于 2018-01-04T14:29:57.527 回答
0

我写了一个示例演示如何做到这一点(通过 XML 配置):

https://github.com/hakanozbay/spring-integration-testing

于 2018-02-07T22:35:42.410 回答