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
6022d4ca
Commit
6022d4ca
authored
May 11, 2020
by
Johnny Lim
Committed by
Stephane Nicoll
May 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ClientHttpConnectorConfigurationTests.shouldApplyHttpClientMapper()
See gh-21390
parent
deb23224
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
ClientHttpConnectorConfigurationTests.java
...unction/client/ClientHttpConnectorConfigurationTests.java
+8
-4
No files found.
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/reactive/function/client/ClientHttpConnectorConfigurationTests.java
View file @
6022d4ca
...
@@ -76,8 +76,10 @@ class ClientHttpConnectorConfigurationTests {
...
@@ -76,8 +76,10 @@ class ClientHttpConnectorConfigurationTests {
void
shouldApplyHttpClientMapper
()
{
void
shouldApplyHttpClientMapper
()
{
new
ReactiveWebApplicationContextRunner
()
new
ReactiveWebApplicationContextRunner
()
.
withConfiguration
(
AutoConfigurations
.
of
(
ClientHttpConnectorConfiguration
.
ReactorNetty
.
class
))
.
withConfiguration
(
AutoConfigurations
.
of
(
ClientHttpConnectorConfiguration
.
ReactorNetty
.
class
))
.
withUserConfiguration
(
CustomHttpClientMapper
.
class
)
.
withUserConfiguration
(
CustomHttpClientMapper
.
class
).
run
((
context
)
->
{
.
run
((
context
)
->
assertThat
(
CustomHttpClientMapper
.
called
).
isTrue
());
context
.
getBean
(
"reactorClientHttpConnector"
);
assertThat
(
CustomHttpClientMapper
.
called
).
isTrue
();
});
}
}
static
class
CustomHttpClientMapper
{
static
class
CustomHttpClientMapper
{
...
@@ -86,8 +88,10 @@ class ClientHttpConnectorConfigurationTests {
...
@@ -86,8 +88,10 @@ class ClientHttpConnectorConfigurationTests {
@Bean
@Bean
ReactorNettyHttpClientMapper
clientMapper
()
{
ReactorNettyHttpClientMapper
clientMapper
()
{
called
=
true
;
return
(
client
)
->
{
return
(
client
)
->
client
.
baseUrl
(
"/test"
);
called
=
true
;
return
client
.
baseUrl
(
"/test"
);
};
}
}
}
}
...
...
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