ConfigDataLoadersTests Class — spring-boot Architecture
Architecture documentation for the ConfigDataLoadersTests class in ConfigDataLoadersTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataLoadersTests.java lines 49–270
class ConfigDataLoadersTests {
private final DeferredLogFactory logFactory = Supplier::get;
private final DefaultBootstrapContext bootstrapContext = new DefaultBootstrapContext();
private final ConfigDataLoaderContext context = mock(ConfigDataLoaderContext.class);
@Test
void createWhenLoaderHasDeferredLogFactoryParameterInjectsDeferredLogFactory() {
MockSpringFactoriesLoader springFactoriesLoader = new MockSpringFactoriesLoader();
springFactoriesLoader.add(ConfigDataLoader.class, DeferredLogFactoryConfigDataLoader.class);
ConfigDataLoaders loaders = new ConfigDataLoaders(this.logFactory, this.bootstrapContext,
springFactoriesLoader);
assertThat(loaders).extracting("loaders")
.asInstanceOf(InstanceOfAssertFactories.LIST)
.satisfies(this::containsValidDeferredLogFactoryConfigDataLoader);
}
private void containsValidDeferredLogFactoryConfigDataLoader(List<?> list) {
assertThat(list).hasSize(1);
DeferredLogFactoryConfigDataLoader loader = (DeferredLogFactoryConfigDataLoader) list.get(0);
assertThat(loader.getLogFactory()).isSameAs(this.logFactory);
}
@Test
void createWhenLoaderHasLogParameterThrowsException() {
MockSpringFactoriesLoader springFactoriesLoader = new MockSpringFactoriesLoader();
springFactoriesLoader.add(ConfigDataLoader.class, LogConfigDataLoader.class);
assertThatIllegalArgumentException()
.isThrownBy(() -> new ConfigDataLoaders(this.logFactory, this.bootstrapContext, springFactoriesLoader))
.havingCause()
.isInstanceOf(IllegalArgumentException.class)
.withMessageContaining("use DeferredLogFactory");
}
@Test
void createWhenLoaderHasBootstrapParametersInjectsBootstrapContext() {
MockSpringFactoriesLoader springFactoriesLoader = new MockSpringFactoriesLoader();
springFactoriesLoader.add(ConfigDataLoader.class, BootstrappingConfigDataLoader.class);
new ConfigDataLoaders(this.logFactory, this.bootstrapContext, springFactoriesLoader);
assertThat(this.bootstrapContext.get(String.class)).isEqualTo("boot");
}
@Test
void loadWhenSingleLoaderSupportsLocationReturnsLoadedConfigData() throws Exception {
MockSpringFactoriesLoader springFactoriesLoader = new MockSpringFactoriesLoader();
springFactoriesLoader.add(ConfigDataLoader.class, TestConfigDataLoader.class);
ConfigDataLoaders loaders = new ConfigDataLoaders(this.logFactory, this.bootstrapContext,
springFactoriesLoader);
TestConfigDataResource location = new TestConfigDataResource("test");
ConfigData loaded = loaders.load(this.context, location);
assertThat(loaded).isNotNull();
assertThat(getLoader(loaded)).isInstanceOf(TestConfigDataLoader.class);
}
@Test
void loadWhenMultipleLoadersSupportLocationThrowsException() {
MockSpringFactoriesLoader springFactoriesLoader = new MockSpringFactoriesLoader();
springFactoriesLoader.add(ConfigDataLoader.class, AnotherConfigDataLoader.class, TestConfigDataLoader.class);
ConfigDataLoaders loaders = new ConfigDataLoaders(this.logFactory, this.bootstrapContext,
springFactoriesLoader);
TestConfigDataResource location = new TestConfigDataResource("test");
assertThatIllegalStateException().isThrownBy(() -> loaders.load(this.context, location))
.withMessageContaining("Multiple loaders found for resource 'test'");
}
@Test
void loadWhenNoLoaderSupportsLocationThrowsException() {
MockSpringFactoriesLoader springFactoriesLoader = new MockSpringFactoriesLoader();
springFactoriesLoader.add(ConfigDataLoader.class, NonLoadableConfigDataLoader.class);
ConfigDataLoaders loaders = new ConfigDataLoaders(this.logFactory, this.bootstrapContext,
springFactoriesLoader);
TestConfigDataResource location = new TestConfigDataResource("test");
assertThatIllegalStateException().isThrownBy(() -> loaders.load(this.context, location))
.withMessage("No loader found for resource 'test'");
}
@Test
void loadWhenGenericTypeDoesNotMatchSkipsLoader() throws Exception {
MockSpringFactoriesLoader springFactoriesLoader = new MockSpringFactoriesLoader();
springFactoriesLoader.add(ConfigDataLoader.class, OtherConfigDataLoader.class, SpecificConfigDataLoader.class);
ConfigDataLoaders loaders = new ConfigDataLoaders(this.logFactory, this.bootstrapContext,
springFactoriesLoader);
TestConfigDataResource location = new TestConfigDataResource("test");
ConfigData loaded = loaders.load(this.context, location);
assertThat(loaded).isNotNull();
assertThat(getLoader(loaded)).isInstanceOf(SpecificConfigDataLoader.class);
}
private ConfigDataLoader<?> getLoader(ConfigData loaded) {
ConfigDataLoader<?> result = (ConfigDataLoader<?>) loaded.getPropertySources().get(0).getProperty("loader");
assertThat(result).isNotNull();
return result;
}
private static ConfigData createConfigData(ConfigDataLoader<?> loader, ConfigDataResource resource) {
MockPropertySource propertySource = new MockPropertySource();
propertySource.setProperty("loader", loader);
propertySource.setProperty("resource", resource);
List<PropertySource<?>> propertySources = Arrays.asList(propertySource);
return new ConfigData(propertySources);
}
static class TestConfigDataResource extends ConfigDataResource {
private final String value;
TestConfigDataResource(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
}
static class OtherConfigDataResource extends ConfigDataResource {
}
static class DeferredLogFactoryConfigDataLoader implements ConfigDataLoader<ConfigDataResource> {
private final DeferredLogFactory logFactory;
DeferredLogFactoryConfigDataLoader(DeferredLogFactory logFactory) {
assertThat(logFactory).isNotNull();
this.logFactory = logFactory;
}
@Override
public ConfigData load(ConfigDataLoaderContext context, ConfigDataResource resource) throws IOException {
throw new AssertionError("Unexpected call");
}
DeferredLogFactory getLogFactory() {
return this.logFactory;
}
}
static class LogConfigDataLoader implements ConfigDataLoader<ConfigDataResource> {
final Log logger;
LogConfigDataLoader(Log logger) {
this.logger = logger;
}
@Override
public ConfigData load(ConfigDataLoaderContext context, ConfigDataResource resource) throws IOException {
throw new AssertionError("Unexpected call");
}
}
static class BootstrappingConfigDataLoader implements ConfigDataLoader<ConfigDataResource> {
BootstrappingConfigDataLoader(ConfigurableBootstrapContext configurableBootstrapContext,
BootstrapRegistry bootstrapRegistry, BootstrapContext bootstrapContext) {
assertThat(configurableBootstrapContext).isNotNull();
assertThat(bootstrapRegistry).isNotNull();
assertThat(bootstrapContext).isNotNull();
assertThat(configurableBootstrapContext).isEqualTo(bootstrapRegistry).isEqualTo(bootstrapContext);
bootstrapRegistry.register(String.class, InstanceSupplier.of("boot"));
}
@Override
public ConfigData load(ConfigDataLoaderContext context, ConfigDataResource resource) throws IOException {
throw new AssertionError("Unexpected call");
}
}
static class TestConfigDataLoader implements ConfigDataLoader<ConfigDataResource> {
@Override
public ConfigData load(ConfigDataLoaderContext context, ConfigDataResource resource) throws IOException {
return createConfigData(this, resource);
}
}
static class AnotherConfigDataLoader implements ConfigDataLoader<ConfigDataResource> {
@Override
public ConfigData load(ConfigDataLoaderContext context, ConfigDataResource resource) throws IOException {
return createConfigData(this, resource);
}
}
static class NonLoadableConfigDataLoader extends TestConfigDataLoader {
@Override
public boolean isLoadable(ConfigDataLoaderContext context, ConfigDataResource resource) {
return false;
}
}
static class SpecificConfigDataLoader implements ConfigDataLoader<TestConfigDataResource> {
@Override
public ConfigData load(ConfigDataLoaderContext context, TestConfigDataResource location) throws IOException {
return createConfigData(this, location);
}
}
static class OtherConfigDataLoader implements ConfigDataLoader<OtherConfigDataResource> {
@Override
public ConfigData load(ConfigDataLoaderContext context, OtherConfigDataResource location) throws IOException {
return createConfigData(this, location);
}
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free