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
7b183ef9
Commit
7b183ef9
authored
Sep 24, 2020
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.3.x'
Closes gh-23478
parents
1591da6c
e626f7f4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
0 deletions
+91
-0
SpringBootTestContextBootstrapper.java
.../boot/test/context/SpringBootTestContextBootstrapper.java
+1
-0
SpringBootTestWebEnvironment.java
...ework/boot/test/context/SpringBootTestWebEnvironment.java
+57
-0
SpringBootTestContextBootstrapperTests.java
...ext/bootstrap/SpringBootTestContextBootstrapperTests.java
+33
-0
No files found.
spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringBootTestContextBootstrapper.java
View file @
7b183ef9
...
@@ -359,6 +359,7 @@ public class SpringBootTestContextBootstrapper extends DefaultTestContextBootstr
...
@@ -359,6 +359,7 @@ public class SpringBootTestContextBootstrapper extends DefaultTestContextBootstr
Class
<?>[]
classes
,
String
[]
propertySourceProperties
)
{
Class
<?>[]
classes
,
String
[]
propertySourceProperties
)
{
Set
<
ContextCustomizer
>
contextCustomizers
=
new
LinkedHashSet
<>(
mergedConfig
.
getContextCustomizers
());
Set
<
ContextCustomizer
>
contextCustomizers
=
new
LinkedHashSet
<>(
mergedConfig
.
getContextCustomizers
());
contextCustomizers
.
add
(
new
SpringBootTestArgs
(
mergedConfig
.
getTestClass
()));
contextCustomizers
.
add
(
new
SpringBootTestArgs
(
mergedConfig
.
getTestClass
()));
contextCustomizers
.
add
(
new
SpringBootTestWebEnvironment
(
mergedConfig
.
getTestClass
()));
return
new
MergedContextConfiguration
(
mergedConfig
.
getTestClass
(),
mergedConfig
.
getLocations
(),
classes
,
return
new
MergedContextConfiguration
(
mergedConfig
.
getTestClass
(),
mergedConfig
.
getLocations
(),
classes
,
mergedConfig
.
getContextInitializerClasses
(),
mergedConfig
.
getActiveProfiles
(),
mergedConfig
.
getContextInitializerClasses
(),
mergedConfig
.
getActiveProfiles
(),
mergedConfig
.
getPropertySourceLocations
(),
propertySourceProperties
,
contextCustomizers
,
mergedConfig
.
getPropertySourceLocations
(),
propertySourceProperties
,
contextCustomizers
,
...
...
spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringBootTestWebEnvironment.java
0 → 100644
View file @
7b183ef9
/*
* Copyright 2012-2020 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
*
* https://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
.
context
;
import
org.springframework.boot.test.context.SpringBootTest.WebEnvironment
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.core.annotation.MergedAnnotations
;
import
org.springframework.test.context.ContextCustomizer
;
import
org.springframework.test.context.MergedContextConfiguration
;
/**
* {@link ContextCustomizer} to track the web environment that is used in a
* {@link SpringBootTest}. The web environment is taken into account when evaluating a
* {@link MergedContextConfiguration} to determine if a context can be shared between
* tests.
*
* @author Andy Wilkinson
*/
class
SpringBootTestWebEnvironment
implements
ContextCustomizer
{
private
final
WebEnvironment
webEnvironment
;
SpringBootTestWebEnvironment
(
Class
<?>
testClass
)
{
this
.
webEnvironment
=
MergedAnnotations
.
from
(
testClass
,
MergedAnnotations
.
SearchStrategy
.
TYPE_HIERARCHY
)
.
get
(
SpringBootTest
.
class
).
getValue
(
"webEnvironment"
,
WebEnvironment
.
class
).
orElse
(
null
);
}
@Override
public
void
customizeContext
(
ConfigurableApplicationContext
context
,
MergedContextConfiguration
mergedConfig
)
{
}
@Override
public
boolean
equals
(
Object
obj
)
{
return
(
obj
!=
null
)
&&
(
getClass
()
==
obj
.
getClass
())
&&
this
.
webEnvironment
==
((
SpringBootTestWebEnvironment
)
obj
).
webEnvironment
;
}
@Override
public
int
hashCode
()
{
return
(
this
.
webEnvironment
!=
null
)
?
this
.
webEnvironment
.
hashCode
()
:
0
;
}
}
spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/context/bootstrap/SpringBootTestContextBootstrapperTests.java
View file @
7b183ef9
...
@@ -71,6 +71,24 @@ class SpringBootTestContextBootstrapperTests {
...
@@ -71,6 +71,24 @@ class SpringBootTestContextBootstrapperTests {
assertThat
(
contextConfiguration
).
isEqualTo
(
otherContextConfiguration
);
assertThat
(
contextConfiguration
).
isEqualTo
(
otherContextConfiguration
);
}
}
@Test
void
mergedContextConfigurationWhenWebEnvironmentsDifferentShouldNotBeConsideredEqual
()
{
TestContext
context
=
buildTestContext
(
SpringBootTestMockWebEnvironmentConfiguration
.
class
);
Object
contextConfiguration
=
ReflectionTestUtils
.
getField
(
context
,
"mergedContextConfiguration"
);
TestContext
otherContext
=
buildTestContext
(
SpringBootTestDefinedPortWebEnvironmentConfiguration
.
class
);
Object
otherContextConfiguration
=
ReflectionTestUtils
.
getField
(
otherContext
,
"mergedContextConfiguration"
);
assertThat
(
contextConfiguration
).
isNotEqualTo
(
otherContextConfiguration
);
}
@Test
void
mergedContextConfigurationWhenWebEnvironmentsSameShouldtBeConsideredEqual
()
{
TestContext
context
=
buildTestContext
(
SpringBootTestMockWebEnvironmentConfiguration
.
class
);
Object
contextConfiguration
=
ReflectionTestUtils
.
getField
(
context
,
"mergedContextConfiguration"
);
TestContext
otherContext
=
buildTestContext
(
SpringBootTestAnotherMockWebEnvironmentConfiguration
.
class
);
Object
otherContextConfiguration
=
ReflectionTestUtils
.
getField
(
otherContext
,
"mergedContextConfiguration"
);
assertThat
(
contextConfiguration
).
isEqualTo
(
otherContextConfiguration
);
}
@SuppressWarnings
(
"rawtypes"
)
@SuppressWarnings
(
"rawtypes"
)
private
TestContext
buildTestContext
(
Class
<?>
testClass
)
{
private
TestContext
buildTestContext
(
Class
<?>
testClass
)
{
SpringBootTestContextBootstrapper
bootstrapper
=
new
SpringBootTestContextBootstrapper
();
SpringBootTestContextBootstrapper
bootstrapper
=
new
SpringBootTestContextBootstrapper
();
...
@@ -99,6 +117,21 @@ class SpringBootTestContextBootstrapperTests {
...
@@ -99,6 +117,21 @@ class SpringBootTestContextBootstrapperTests {
}
}
@SpringBootTest
(
webEnvironment
=
WebEnvironment
.
MOCK
)
static
class
SpringBootTestMockWebEnvironmentConfiguration
{
}
@SpringBootTest
(
webEnvironment
=
WebEnvironment
.
MOCK
)
static
class
SpringBootTestAnotherMockWebEnvironmentConfiguration
{
}
@SpringBootTest
(
webEnvironment
=
WebEnvironment
.
DEFINED_PORT
)
static
class
SpringBootTestDefinedPortWebEnvironmentConfiguration
{
}
@SpringBootTest
(
args
=
"--app.test=same"
)
@SpringBootTest
(
args
=
"--app.test=same"
)
static
class
SpringBootTestSameArgsConfiguration
{
static
class
SpringBootTestSameArgsConfiguration
{
...
...
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