spring 集成测试启动缓慢。原因?无法禁用 RabbitMQ

Slow startup on spring integration test. Cause? Can't disable RabbitMQ

我在启动集成测试时遇到性能问题。

我正在尝试模拟系统的消息传递。为此,我基本上在网关上使用 @MockBean 并使用 @EnableAutoConfiguration(exclude = {RabbitAutoConfiguration.class})。示例:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = MyApplication.class)
@WebAppConfiguration
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
@ActiveProfiles("test")
@EnableAutoConfiguration(exclude = {RabbitAutoConfiguration.class})
public class MyTestIT {

这两个配置很好地完成了工作,我的测试 运行 没有问题,并且与某些外部 RabbitMQ 没有任何依赖关系。

但是 spring 引导的启动时间非常非常慢。仅在配置 SimpleMessageListenerContainerAmqpInboundChannelAdapterEventDrivenConsumerRabbitExchangeQueueProvisioner 等的这一部分大约需要两分钟

日志中有一些关于问题所在的提示(我剪了很多消息,这是一个示例):

2018-02-09 14:26:37.784  INFO [ms-project-name-service,,,] 13804 --- [           main] o.s.integration.channel.DirectChannel    : Channel 'ms-project-name-service:test:-1.channel2-output' has 1 subscriber(s).

2018-02-09 14:26:54.110  INFO [ms-project-name-service,,,] 13804 --- [           main] c.s.b.r.p.RabbitExchangeQueueProvisioner : declaring queue for inbound: channel1-input.anonymous.417FtxKTTce7-_IR0tGuNA, bound to: channel1-input

2018-02-09 14:27:00.147  INFO [ms-project-name-service,,,] 13804 --- [           main] o.s.c.stream.binder.BinderErrorChannel   : Channel 'ms-project-name-service:test:-1.channel1-input.anonymous.417FtxKTTce7-_IR0tGuNA.errors' has 2 subscriber(s).

2018-02-09 14:27:09.186  INFO [ms-project-name-service,,,] 13804 --- [ce7-_IR0tGuNA-1] o.s.a.r.l.SimpleMessageListenerContainer : Restarting Consumer@4f0ea6f8: tags=[{}], channel=null, acknowledgeMode=AUTO local queue size=0

最奇怪的是这个:

2018-02-09 14:58:42.783  WARN [ms-project-name-service,,,] 208 --- [geGeQP_9Li3Jg-1] o.s.a.r.l.SimpleMessageListenerContainer : Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect

最后一个似乎他仍在尝试连接本地 RabbitMQ。

日志中有很多这样的消息。我不明白为什么即使禁用了 RabbitMQAutoConfiguration 仍然会发生这种情况。如果没有要连接的 RabbitMQ,spring 如何在频道中订阅也是一个谜。

我们这里有类似的问题,通过更换转轮解决了:

@RunWith(SpringRunner.class)

@RunWith(SpringJUnit4ClassRunner.class)

它们在文档中看起来是一样的,但真正启动了我们的测试性能。 让我知道它是否有效,我仍在查看文档以获取更多详细信息。

@Marco 回复后,在我删除 pom.xml 的跟随依赖后问题又回来了(例如,这是我对 <dependencies/>:

的第一个依赖
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-stream-test-support</artifactId>
    <scope>test</scope>
</dependency>

添加return依赖后,问题解决。我更改为 SpringRunner.class 并且测试仍然很快。我删除了依赖项,测试又变慢了...

我认为这是一个与 Spring 寻找类路径以进行自动配置相关的错误。

顺便说一句,日志中的一些消息不断出现,但不会花那么长时间。

其他有帮助的事情是使用此配置进行测试

@Configuration
public class RabbitMqConfiguration {

    @Bean
    ConnectionFactory connectionFactory() {
        return new CachingConnectionFactory();
    }

}