Merge pull request #14285 from eneiascs:ws-auto-configuration-list
* pr/14285: Polish "Fix WSDL locations condition to work with a list" Fix WSDL locations condition to work with a listpull/14419/head
commit
ba18fb529f
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* 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.condition;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
import org.springframework.boot.context.properties.bind.BindResult;
|
||||
import org.springframework.boot.context.properties.bind.Bindable;
|
||||
import org.springframework.boot.context.properties.bind.Binder;
|
||||
import org.springframework.context.annotation.Condition;
|
||||
import org.springframework.context.annotation.ConditionContext;
|
||||
import org.springframework.core.type.AnnotatedTypeMetadata;
|
||||
|
||||
/**
|
||||
* {@link Condition} that checks if a property whose value is a list is defined in the
|
||||
* environment.
|
||||
*
|
||||
* @author Eneias Silva
|
||||
* @author Stephane Nicoll
|
||||
* @since 2.0.5
|
||||
*/
|
||||
public class OnListCondition extends SpringBootCondition {
|
||||
|
||||
private static final Bindable<List<String>> SIMPLE_LIST = Bindable
|
||||
.listOf(String.class);
|
||||
|
||||
private final String propertyName;
|
||||
|
||||
private final Supplier<ConditionMessage.Builder> messageBuilder;
|
||||
|
||||
/**
|
||||
* Create a new instance with the property to check and the message builder to use.
|
||||
* @param propertyName the name of the property
|
||||
* @param messageBuilder a message builder supplier that should provide a fresh
|
||||
* instance on each call
|
||||
*/
|
||||
protected OnListCondition(String propertyName,
|
||||
Supplier<ConditionMessage.Builder> messageBuilder) {
|
||||
this.propertyName = propertyName;
|
||||
this.messageBuilder = messageBuilder;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ConditionOutcome getMatchOutcome(ConditionContext context,
|
||||
AnnotatedTypeMetadata metadata) {
|
||||
BindResult<?> property = Binder.get(context.getEnvironment())
|
||||
.bind(this.propertyName, SIMPLE_LIST);
|
||||
ConditionMessage.Builder messageBuilder = this.messageBuilder.get();
|
||||
if (property.isBound()) {
|
||||
return ConditionOutcome
|
||||
.match(messageBuilder.found("property").items(this.propertyName));
|
||||
}
|
||||
return ConditionOutcome
|
||||
.noMatch(messageBuilder.didNotFind("property").items(this.propertyName));
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* 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.webservices;
|
||||
|
||||
import org.springframework.boot.autoconfigure.condition.ConditionMessage;
|
||||
import org.springframework.boot.autoconfigure.condition.OnListCondition;
|
||||
|
||||
/**
|
||||
* Condition to determine if {@code spring.webservices.wsdl-locations} is specified.
|
||||
*
|
||||
* @author Eneias Silva
|
||||
* @author Stephane Nicoll
|
||||
*/
|
||||
class OnWsdlLocationsCondition extends OnListCondition {
|
||||
|
||||
OnWsdlLocationsCondition() {
|
||||
super("spring.webservices.wsdl-locations",
|
||||
() -> ConditionMessage.forCondition("WSDL locations"));
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,86 @@
|
||||
/*
|
||||
* 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.condition;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Conditional;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link OnListCondition}.
|
||||
*
|
||||
* @author Stephane Nicoll
|
||||
*/
|
||||
public class OnListConditionTests {
|
||||
|
||||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
||||
.withUserConfiguration(TestConfig.class);
|
||||
|
||||
@Test
|
||||
public void propertyNotDefined() {
|
||||
this.contextRunner.run((context) -> assertThat(context).doesNotHaveBean("foo"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void propertyDefinedAsCommaSeparated() {
|
||||
this.contextRunner.withPropertyValues("spring.test.my-list=value1")
|
||||
.run((context) -> assertThat(context).hasBean("foo"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void propertyDefinedAsList() {
|
||||
this.contextRunner.withPropertyValues("spring.test.my-list[0]=value1")
|
||||
.run((context) -> assertThat(context).hasBean("foo"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void propertyDefinedAsCommaSeparatedRelaxed() {
|
||||
this.contextRunner.withPropertyValues("spring.test.my-list=value1")
|
||||
.run((context) -> assertThat(context).hasBean("foo"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void propertyDefinedAsListRelaxed() {
|
||||
this.contextRunner.withPropertyValues("spring.test.myList[0]=value1")
|
||||
.run((context) -> assertThat(context).hasBean("foo"));
|
||||
}
|
||||
|
||||
@Configuration
|
||||
@Conditional(TestListCondition.class)
|
||||
protected static class TestConfig {
|
||||
|
||||
@Bean
|
||||
public String foo() {
|
||||
return "foo";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static class TestListCondition extends OnListCondition {
|
||||
|
||||
TestListCondition() {
|
||||
super("spring.test.my-list", () -> ConditionMessage.forCondition("test"));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,68 @@
|
||||
/*
|
||||
* 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.webservices;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Conditional;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link OnWsdlLocationsCondition}.
|
||||
*
|
||||
* @author Eneias Silva
|
||||
* @author Stephane Nicoll
|
||||
*/
|
||||
public class OnWsdlLocationsConditionTests {
|
||||
|
||||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
|
||||
.withUserConfiguration(TestConfig.class);
|
||||
|
||||
@Test
|
||||
public void bootstrapHostsNotDefined() {
|
||||
this.contextRunner.run((context) -> assertThat(context).doesNotHaveBean("foo"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void bootstrapHostsDefinedAsCommaSeparated() {
|
||||
this.contextRunner.withPropertyValues("spring.webservices.wsdl-locations=value1")
|
||||
.run((context) -> assertThat(context).hasBean("foo"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void bootstrapHostsDefinedAsList() {
|
||||
this.contextRunner
|
||||
.withPropertyValues("spring.webservices.wsdl-locations[0]=value1")
|
||||
.run((context) -> assertThat(context).hasBean("foo"));
|
||||
}
|
||||
|
||||
@Configuration
|
||||
@Conditional(OnWsdlLocationsCondition.class)
|
||||
protected static class TestConfig {
|
||||
|
||||
@Bean
|
||||
public String foo() {
|
||||
return "foo";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue