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
6729e56f
Commit
6729e56f
authored
Nov 27, 2018
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.0.x'
parents
ac77fc9d
e74b084c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
154 additions
and
0 deletions
+154
-0
pom.xml
spring-boot-project/spring-boot-test-autoconfigure/pom.xml
+5
-0
WebFluxTest.java
...ork/boot/test/autoconfigure/web/reactive/WebFluxTest.java
+2
-0
spring.factories
...utoconfigure/src/main/resources/META-INF/spring.factories
+1
-0
ExamplePojo.java
...est/autoconfigure/web/reactive/webclient/ExamplePojo.java
+45
-0
JsonController.java
.../autoconfigure/web/reactive/webclient/JsonController.java
+40
-0
WebFluxTestAllControllersIntegrationTests.java
.../webclient/WebFluxTestAllControllersIntegrationTests.java
+5
-0
WebFluxTestAutoConfigurationIntegrationTests.java
...bclient/WebFluxTestAutoConfigurationIntegrationTests.java
+8
-0
WebFluxTestWebTestClientCodecCustomizationIntegrationTests.java
...xTestWebTestClientCodecCustomizationIntegrationTests.java
+48
-0
No files found.
spring-boot-project/spring-boot-test-autoconfigure/pom.xml
View file @
6729e56f
...
@@ -189,6 +189,11 @@
...
@@ -189,6 +189,11 @@
<artifactId>
logback-classic
</artifactId>
<artifactId>
logback-classic
</artifactId>
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.module
</groupId>
<artifactId>
jackson-module-parameter-names
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<dependency>
<groupId>
com.h2database
</groupId>
<groupId>
com.h2database
</groupId>
<artifactId>
h2
</artifactId>
<artifactId>
h2
</artifactId>
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/web/reactive/WebFluxTest.java
View file @
6729e56f
...
@@ -30,6 +30,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
...
@@ -30,6 +30,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import
org.springframework.boot.test.autoconfigure.OverrideAutoConfiguration
;
import
org.springframework.boot.test.autoconfigure.OverrideAutoConfiguration
;
import
org.springframework.boot.test.autoconfigure.core.AutoConfigureCache
;
import
org.springframework.boot.test.autoconfigure.core.AutoConfigureCache
;
import
org.springframework.boot.test.autoconfigure.filter.TypeExcludeFilters
;
import
org.springframework.boot.test.autoconfigure.filter.TypeExcludeFilters
;
import
org.springframework.boot.test.autoconfigure.json.AutoConfigureJson
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.test.mock.mockito.MockBean
;
import
org.springframework.boot.test.mock.mockito.MockBean
;
import
org.springframework.context.annotation.ComponentScan
;
import
org.springframework.context.annotation.ComponentScan
;
...
@@ -79,6 +80,7 @@ import org.springframework.test.web.reactive.server.WebTestClient;
...
@@ -79,6 +80,7 @@ import org.springframework.test.web.reactive.server.WebTestClient;
@OverrideAutoConfiguration
(
enabled
=
false
)
@OverrideAutoConfiguration
(
enabled
=
false
)
@TypeExcludeFilters
(
WebFluxTypeExcludeFilter
.
class
)
@TypeExcludeFilters
(
WebFluxTypeExcludeFilter
.
class
)
@AutoConfigureCache
@AutoConfigureCache
@AutoConfigureJson
@AutoConfigureWebFlux
@AutoConfigureWebFlux
@AutoConfigureWebTestClient
@AutoConfigureWebTestClient
@ImportAutoConfiguration
@ImportAutoConfiguration
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/main/resources/META-INF/spring.factories
View file @
6729e56f
...
@@ -94,6 +94,7 @@ org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfig
...
@@ -94,6 +94,7 @@ org.springframework.boot.test.autoconfigure.web.reactive.WebTestClientAutoConfig
# AutoConfigureWebFlux auto-configuration imports
# AutoConfigureWebFlux auto-configuration imports
org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebFlux=\
org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebFlux=\
org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration,\
org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration,\
org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration,\
org.springframework.boot.autoconfigure.web.reactive.WebFluxAutoConfiguration
org.springframework.boot.autoconfigure.web.reactive.WebFluxAutoConfiguration
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/ExamplePojo.java
0 → 100644
View file @
6729e56f
/*
* Copyright 2012-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
test
.
autoconfigure
.
web
.
reactive
.
webclient
;
import
org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
;
/**
* Example POJO used with {@link WebFluxTest} tests.
*
* @author Andy Wilkinson
*/
public
class
ExamplePojo
{
private
final
String
alpha
;
private
final
String
bravo
;
public
ExamplePojo
(
String
alpha
,
String
bravo
)
{
this
.
alpha
=
alpha
;
this
.
bravo
=
bravo
;
}
public
String
getAlpha
()
{
return
this
.
alpha
;
}
public
String
getBravo
()
{
return
this
.
bravo
;
}
}
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/JsonController.java
0 → 100644
View file @
6729e56f
/*
* Copyright 2012-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
test
.
autoconfigure
.
web
.
reactive
.
webclient
;
import
reactor.core.publisher.Mono
;
import
org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
;
import
org.springframework.http.MediaType
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RestController
;
/**
* Example {@link Controller} used with {@link WebFluxTest} tests.
*
* @author Andy Wilkinson
*/
@RestController
public
class
JsonController
{
@GetMapping
(
value
=
"/json"
,
produces
=
MediaType
.
APPLICATION_JSON_VALUE
)
public
Mono
<
ExamplePojo
>
json
()
{
return
Mono
.
just
(
new
ExamplePojo
(
"a"
,
"b"
));
}
}
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/WebFluxTestAllControllersIntegrationTests.java
View file @
6729e56f
...
@@ -55,4 +55,9 @@ public class WebFluxTestAllControllersIntegrationTests {
...
@@ -55,4 +55,9 @@ public class WebFluxTestAllControllersIntegrationTests {
this
.
webClient
.
get
().
uri
(
"/one/error"
).
exchange
().
expectStatus
().
isBadRequest
();
this
.
webClient
.
get
().
uri
(
"/one/error"
).
exchange
().
expectStatus
().
isBadRequest
();
}
}
@Test
public
void
shouldFindJsonController
()
{
this
.
webClient
.
get
().
uri
(
"/json"
).
exchange
().
expectStatus
().
isOk
();
}
}
}
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/WebFluxTestAutoConfigurationIntegrationTests.java
View file @
6729e56f
...
@@ -25,6 +25,7 @@ import org.springframework.boot.autoconfigure.validation.ValidationAutoConfigura
...
@@ -25,6 +25,7 @@ import org.springframework.boot.autoconfigure.validation.ValidationAutoConfigura
import
org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
;
import
org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
org.springframework.test.web.reactive.server.WebTestClient
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
springframework
.
boot
.
test
.
autoconfigure
.
AutoConfigurationImportedCondition
.
importedAutoConfiguration
;
import
static
org
.
springframework
.
boot
.
test
.
autoconfigure
.
AutoConfigurationImportedCondition
.
importedAutoConfiguration
;
...
@@ -53,4 +54,11 @@ public class WebFluxTestAutoConfigurationIntegrationTests {
...
@@ -53,4 +54,11 @@ public class WebFluxTestAutoConfigurationIntegrationTests {
.
has
(
importedAutoConfiguration
(
ValidationAutoConfiguration
.
class
));
.
has
(
importedAutoConfiguration
(
ValidationAutoConfiguration
.
class
));
}
}
@Test
public
void
whatever
()
{
WebTestClient
client
=
this
.
applicationContext
.
getBean
(
WebTestClient
.
class
);
System
.
out
.
println
(
client
);
}
}
}
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/web/reactive/webclient/WebFluxTestWebTestClientCodecCustomizationIntegrationTests.java
0 → 100644
View file @
6729e56f
/*
* Copyright 2012-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
test
.
autoconfigure
.
web
.
reactive
.
webclient
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
;
import
org.springframework.security.test.context.support.WithMockUser
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
org.springframework.test.web.reactive.server.WebTestClient
;
/**
* Tests for {@link WebFluxTest} to validate the {@link WebTestClient WebTestClient's}
* codecs are customized.
*
* @author Andy Wilkinson
*/
@RunWith
(
SpringRunner
.
class
)
@WithMockUser
@WebFluxTest
(
controllers
=
JsonController
.
class
)
public
class
WebFluxTestWebTestClientCodecCustomizationIntegrationTests
{
@Autowired
private
WebTestClient
webClient
;
@Test
public
void
shouldBeAbleToCreatePojoViaParametersModule
()
{
this
.
webClient
.
get
().
uri
(
"/json"
).
exchange
().
expectStatus
().
isOk
()
.
expectBody
(
ExamplePojo
.
class
);
}
}
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