Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
e6c63b5b
Commit
e6c63b5b
authored
Oct 27, 2020
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
See gh-23914
parent
a7f6c365
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
RabbitAutoConfigurationTests.java
...boot/autoconfigure/amqp/RabbitAutoConfigurationTests.java
+3
-7
No files found.
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfigurationTests.java
View file @
e6c63b5b
...
...
@@ -535,8 +535,7 @@ class RabbitAutoConfigurationTests {
@Test
void
testSimpleRabbitListenerContainerFactoryConfigurerUsesConfig
()
{
this
.
contextRunner
.
withUserConfiguration
(
TestConfiguration
.
class
)
.
withPropertyValues
(
"spring.rabbitmq.listener.type:direct"
,
"spring.rabbitmq.listener.simple.concurrency:5"
,
.
withPropertyValues
(
"spring.rabbitmq.listener.simple.concurrency:5"
,
"spring.rabbitmq.listener.simple.maxConcurrency:10"
,
"spring.rabbitmq.listener.simple.prefetch:40"
)
.
run
((
context
)
->
{
...
...
@@ -553,9 +552,7 @@ class RabbitAutoConfigurationTests {
@Test
void
testSimpleRabbitListenerContainerFactoryConfigurerEnableDeBatchingWithConsumerBatchEnabled
()
{
this
.
contextRunner
.
withUserConfiguration
(
TestConfiguration
.
class
)
.
withPropertyValues
(
"spring.rabbitmq.listener.type:direct"
,
"spring.rabbitmq.listener.simple.consumer-batch-enabled:true"
)
.
run
((
context
)
->
{
.
withPropertyValues
(
"spring.rabbitmq.listener.simple.consumer-batch-enabled:true"
).
run
((
context
)
->
{
SimpleRabbitListenerContainerFactoryConfigurer
configurer
=
context
.
getBean
(
SimpleRabbitListenerContainerFactoryConfigurer
.
class
);
SimpleRabbitListenerContainerFactory
factory
=
mock
(
SimpleRabbitListenerContainerFactory
.
class
);
...
...
@@ -567,8 +564,7 @@ class RabbitAutoConfigurationTests {
@Test
void
testDirectRabbitListenerContainerFactoryConfigurerUsesConfig
()
{
this
.
contextRunner
.
withUserConfiguration
(
TestConfiguration
.
class
)
.
withPropertyValues
(
"spring.rabbitmq.listener.type:simple"
,
"spring.rabbitmq.listener.direct.consumers-per-queue:5"
,
.
withPropertyValues
(
"spring.rabbitmq.listener.direct.consumers-per-queue:5"
,
"spring.rabbitmq.listener.direct.prefetch:40"
,
"spring.rabbitmq.listener.direct.de-batching-enabled:false"
)
.
run
((
context
)
->
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment