Restore test ensuring maxInboundMessageBodySize property matches default

See gh-37603
This commit is contained in:
Phillip Webb 2023-09-27 18:21:24 -07:00
parent d5395c97c0
commit 3591f4d614

View File

@ -16,6 +16,7 @@
package org.springframework.boot.autoconfigure.amqp;
import com.rabbitmq.client.ConnectionFactory;
import org.junit.jupiter.api.Test;
import org.springframework.amqp.rabbit.config.DirectRabbitListenerContainerFactory;
@ -313,6 +314,13 @@ class RabbitPropertiesTests {
assertThat(this.properties.getSsl().determineEnabled()).isTrue();
}
@Test
void propertiesUseConsistentDefaultValues() {
ConnectionFactory connectionFactory = new ConnectionFactory();
assertThat(connectionFactory).hasFieldOrPropertyWithValue("maxInboundMessageBodySize",
(int) this.properties.getMaxInboundMessageBodySize().toBytes());
}
@Test
void simpleContainerUseConsistentDefaultValues() {
SimpleRabbitListenerContainerFactory factory = new SimpleRabbitListenerContainerFactory();