public class MergedContextConfiguration extends Object implements Serializable
MergedContextConfiguration
encapsulates the merged
context configuration declared on a test class and all of its superclasses
via @ContextConfiguration
and
@ActiveProfiles
.
Merged resource locations, annotated classes, and active profiles
represent all declared values in the test class hierarchy taking into
consideration the semantics of the
inheritLocations
and
inheritProfiles
flags in
@ContextConfiguration
and @ActiveProfiles
, respectively.
A SmartContextLoader
uses MergedContextConfiguration
to load an ApplicationContext
.
MergedContextConfiguration
is also used by the TestContext
as the context cache key for caching an
ApplicationContext
that was loaded using properties of this MergedContextConfiguration
.
ContextConfiguration
,
ActiveProfiles
,
ContextConfigurationAttributes
,
SmartContextLoader.loadContext(MergedContextConfiguration)
,
Serialized FormConstructor and Description |
---|
MergedContextConfiguration(Class<?> testClass,
String[] locations,
Class<?>[] classes,
Set<Class<? extends ApplicationContextInitializer<? extends ConfigurableApplicationContext>>> contextInitializerClasses,
String[] activeProfiles,
ContextLoader contextLoader)
Create a new
MergedContextConfiguration instance for the
supplied test class, resource locations, annotated classes, context
initializers, active profiles, and ContextLoader . |
MergedContextConfiguration(Class<?> testClass,
String[] locations,
Class<?>[] classes,
Set<Class<? extends ApplicationContextInitializer<? extends ConfigurableApplicationContext>>> contextInitializerClasses,
String[] activeProfiles,
ContextLoader contextLoader,
CacheAwareContextLoaderDelegate cacheAwareContextLoaderDelegate,
MergedContextConfiguration parent)
Create a new
MergedContextConfiguration instance for the
supplied test class, resource locations, annotated classes, context
initializers, active profiles, ContextLoader , and parent
configuration. |
MergedContextConfiguration(Class<?> testClass,
String[] locations,
Class<?>[] classes,
String[] activeProfiles,
ContextLoader contextLoader)
Create a new
MergedContextConfiguration instance for the
supplied test class, resource locations, annotated classes, active
profiles, and ContextLoader . |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Determine if the supplied object is equal to this
MergedContextConfiguration
instance by comparing both object's locations,
annotated classes,
context initializer classes,
active profiles,
parents, and the fully qualified names of their
ContextLoaders . |
String[] |
getActiveProfiles()
Get the merged active bean definition profiles for the test class.
|
Class<?>[] |
getClasses()
Get the merged annotated classes for the test class.
|
Set<Class<? extends ApplicationContextInitializer<? extends ConfigurableApplicationContext>>> |
getContextInitializerClasses()
Get the merged
ApplicationContextInitializer classes for the
test class. |
ContextLoader |
getContextLoader()
Get the resolved
ContextLoader for the test class. |
String[] |
getLocations()
Get the merged resource locations for the test class.
|
MergedContextConfiguration |
getParent()
Get the
MergedContextConfiguration for the parent application context in a
context hierarchy. |
ApplicationContext |
getParentApplicationContext()
Get the parent
ApplicationContext for the context defined by this
MergedContextConfiguration from the context cache. |
Class<?> |
getTestClass()
Get the test class associated with this
MergedContextConfiguration . |
int |
hashCode()
Generate a unique hash code for all properties of this
MergedContextConfiguration excluding the
test class. |
protected static String |
nullSafeToString(ContextLoader contextLoader)
Generate a null-safe
String representation of the supplied
ContextLoader based solely on the fully qualified name of the
loader or "null" if the supplied loaded is null . |
String |
toString()
Provide a String representation of the test class,
locations, annotated classes,
context initializer classes,
active profiles, the name of the
ContextLoader , and the
parent configuration. |
public MergedContextConfiguration(Class<?> testClass, String[] locations, Class<?>[] classes, String[] activeProfiles, ContextLoader contextLoader)
MergedContextConfiguration
instance for the
supplied test class, resource locations, annotated classes, active
profiles, and ContextLoader
.
If a null
value is supplied for locations
,
classes
, or activeProfiles
an empty array will
be stored instead. Furthermore, active profiles will be sorted, and duplicate
profiles will be removed.
testClass
- the test class for which the configuration was mergedlocations
- the merged resource locationsclasses
- the merged annotated classesactiveProfiles
- the merged active bean definition profilescontextLoader
- the resolved ContextLoader
MergedContextConfiguration(Class, String[], Class[], Set, String[], ContextLoader)
public MergedContextConfiguration(Class<?> testClass, String[] locations, Class<?>[] classes, Set<Class<? extends ApplicationContextInitializer<? extends ConfigurableApplicationContext>>> contextInitializerClasses, String[] activeProfiles, ContextLoader contextLoader)
MergedContextConfiguration
instance for the
supplied test class, resource locations, annotated classes, context
initializers, active profiles, and ContextLoader
.
If a null
value is supplied for locations
,
classes
, or activeProfiles
an empty array will
be stored instead. If a null
value is supplied for the
contextInitializerClasses
an empty set will be stored instead.
Furthermore, active profiles will be sorted, and duplicate profiles will
be removed.
testClass
- the test class for which the configuration was mergedlocations
- the merged resource locationsclasses
- the merged annotated classescontextInitializerClasses
- the merged context initializer classesactiveProfiles
- the merged active bean definition profilescontextLoader
- the resolved ContextLoader
MergedContextConfiguration(Class, String[], Class[], Set, String[], ContextLoader, CacheAwareContextLoaderDelegate, MergedContextConfiguration)
public MergedContextConfiguration(Class<?> testClass, String[] locations, Class<?>[] classes, Set<Class<? extends ApplicationContextInitializer<? extends ConfigurableApplicationContext>>> contextInitializerClasses, String[] activeProfiles, ContextLoader contextLoader, CacheAwareContextLoaderDelegate cacheAwareContextLoaderDelegate, MergedContextConfiguration parent)
MergedContextConfiguration
instance for the
supplied test class, resource locations, annotated classes, context
initializers, active profiles, ContextLoader
, and parent
configuration.
If a null
value is supplied for locations
,
classes
, or activeProfiles
an empty array will
be stored instead. If a null
value is supplied for the
contextInitializerClasses
an empty set will be stored instead.
Furthermore, active profiles will be sorted, and duplicate profiles will
be removed.
testClass
- the test class for which the configuration was mergedlocations
- the merged resource locationsclasses
- the merged annotated classescontextInitializerClasses
- the merged context initializer classesactiveProfiles
- the merged active bean definition profilescontextLoader
- the resolved ContextLoader
cacheAwareContextLoaderDelegate
- a cache-aware context loader
delegate with which to retrieve the parent contextparent
- the parent configuration or null
if there is no parentprotected static String nullSafeToString(ContextLoader contextLoader)
String
representation of the supplied
ContextLoader
based solely on the fully qualified name of the
loader or "null" if the supplied loaded is null
.public Class<?> getTestClass()
MergedContextConfiguration
.public String[] getLocations()
public Class<?>[] getClasses()
public Set<Class<? extends ApplicationContextInitializer<? extends ConfigurableApplicationContext>>> getContextInitializerClasses()
ApplicationContextInitializer
classes for the
test class.public String[] getActiveProfiles()
public ContextLoader getContextLoader()
ContextLoader
for the test class.public MergedContextConfiguration getParent()
MergedContextConfiguration
for the parent application context in a
context hierarchy.null
if there is no parentgetParentApplicationContext()
public ApplicationContext getParentApplicationContext()
ApplicationContext
for the context defined by this
MergedContextConfiguration
from the context cache.
If the parent context has not yet been loaded, it will be loaded, stored in the cache, and then returned.
ApplicationContext
or null
if there is no parentgetParent()
public int hashCode()
MergedContextConfiguration
excluding the
test class.public boolean equals(Object obj)
MergedContextConfiguration
instance by comparing both object's locations,
annotated classes,
context initializer classes,
active profiles,
parents, and the fully qualified names of their
ContextLoaders
.public String toString()
ContextLoader
, and the
parent configuration.