Group auto-configuration import selectors together
This commit updates Spring Boot's DeferredImportSelector implementations to group imports in a consistent set. This makes sure ordering is applied consistently. Closes gh-12366pull/12480/head
parent
3ae4a541b6
commit
26d9c261c5
@ -0,0 +1,132 @@
|
|||||||
|
/*
|
||||||
|
* 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.autoconfigure;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import org.springframework.boot.test.context.assertj.AssertableApplicationContext;
|
||||||
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.util.ClassUtils;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Integration tests for {@link AutoConfigurationImportSelector}.
|
||||||
|
*
|
||||||
|
* @author Stephane Nicoll
|
||||||
|
*/
|
||||||
|
public class AutoConfigurationImportSelectorIntegrationTests {
|
||||||
|
|
||||||
|
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner();
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void singleSelectorWithNoImports() {
|
||||||
|
this.contextRunner.withUserConfiguration(NoConfig.class)
|
||||||
|
.run((context) ->
|
||||||
|
assertThat(getImportedConfigBeans(context)).isEmpty());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void singleSelector() {
|
||||||
|
this.contextRunner.withUserConfiguration(SingleConfig.class)
|
||||||
|
.run((context) -> {
|
||||||
|
assertThat(getImportedConfigBeans(context)).containsExactly(
|
||||||
|
"ConfigC");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void multipleSelectorShouldMergeAndSortCorrectly() {
|
||||||
|
this.contextRunner.withUserConfiguration(Config.class, AnotherConfig.class)
|
||||||
|
.run((context) -> {
|
||||||
|
assertThat(getImportedConfigBeans(context)).containsExactly(
|
||||||
|
"ConfigA", "ConfigB", "ConfigC", "ConfigD");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void multipleSelectorWithRedundantImportsShouldMergeAndSortCorrectly() {
|
||||||
|
this.contextRunner.withUserConfiguration(SingleConfig.class, Config.class,
|
||||||
|
AnotherConfig.class).run((context) -> {
|
||||||
|
assertThat(getImportedConfigBeans(context)).containsExactly(
|
||||||
|
"ConfigA", "ConfigB", "ConfigC", "ConfigD");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<String> getImportedConfigBeans(AssertableApplicationContext context) {
|
||||||
|
String shortName = ClassUtils.getShortName(
|
||||||
|
AutoConfigurationImportSelectorIntegrationTests.class);
|
||||||
|
int beginIndex = shortName.length() + 1;
|
||||||
|
List<String> orderedConfigBeans = new ArrayList<>();
|
||||||
|
for (String bean : context.getBeanDefinitionNames()) {
|
||||||
|
if (bean.contains("$Config")) {
|
||||||
|
String shortBeanName = ClassUtils.getShortName(bean);
|
||||||
|
orderedConfigBeans.add(shortBeanName.substring(beginIndex));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return orderedConfigBeans;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ImportAutoConfiguration
|
||||||
|
static class NoConfig {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@ImportAutoConfiguration(ConfigC.class)
|
||||||
|
static class SingleConfig {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@ImportAutoConfiguration({ ConfigD.class, ConfigB.class })
|
||||||
|
static class Config {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@ImportAutoConfiguration({ ConfigC.class, ConfigA.class })
|
||||||
|
static class AnotherConfig {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
static class ConfigA {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
@AutoConfigureAfter(ConfigA.class)
|
||||||
|
@AutoConfigureBefore(ConfigC.class)
|
||||||
|
static class ConfigB {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
static class ConfigC {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
@AutoConfigureAfter(ConfigC.class)
|
||||||
|
static class ConfigD {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue