Merge branch '1.4.x' into 1.5.x
This commit is contained in:
commit
88c84ce234
|
|
@ -44,7 +44,7 @@ import org.springframework.data.couchbase.config.CouchbaseConfigurer;
|
||||||
* @since 1.4.0
|
* @since 1.4.0
|
||||||
*/
|
*/
|
||||||
@Configuration
|
@Configuration
|
||||||
@ConditionalOnClass({ CouchbaseBucket.class, Cluster.class })
|
@ConditionalOnClass({ CouchbaseBucket.class, Cluster.class, CouchbaseConfigurer.class })
|
||||||
@Conditional(CouchbaseAutoConfiguration.CouchbaseCondition.class)
|
@Conditional(CouchbaseAutoConfiguration.CouchbaseCondition.class)
|
||||||
@EnableConfigurationProperties(CouchbaseProperties.class)
|
@EnableConfigurationProperties(CouchbaseProperties.class)
|
||||||
public class CouchbaseAutoConfiguration {
|
public class CouchbaseAutoConfiguration {
|
||||||
|
|
|
||||||
|
|
@ -874,14 +874,20 @@ public class ServerProperties
|
||||||
}
|
}
|
||||||
|
|
||||||
private void customizeConnectionTimeout(
|
private void customizeConnectionTimeout(
|
||||||
TomcatEmbeddedServletContainerFactory factory, int connectionTimeout) {
|
TomcatEmbeddedServletContainerFactory factory,
|
||||||
for (Connector connector : factory.getAdditionalTomcatConnectors()) {
|
final int connectionTimeout) {
|
||||||
ProtocolHandler handler = connector.getProtocolHandler();
|
factory.addConnectorCustomizers(new TomcatConnectorCustomizer() {
|
||||||
if (handler instanceof AbstractProtocol) {
|
|
||||||
AbstractProtocol<?> protocol = (AbstractProtocol<?>) handler;
|
@Override
|
||||||
protocol.setConnectionTimeout(connectionTimeout);
|
public void customize(Connector connector) {
|
||||||
|
ProtocolHandler handler = connector.getProtocolHandler();
|
||||||
|
if (handler instanceof AbstractProtocol) {
|
||||||
|
AbstractProtocol<?> protocol = (AbstractProtocol<?>) handler;
|
||||||
|
protocol.setConnectionTimeout(connectionTimeout);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void customizeRemoteIpValve(ServerProperties properties,
|
private void customizeRemoteIpValve(ServerProperties properties,
|
||||||
|
|
|
||||||
|
|
@ -112,6 +112,14 @@ public class ServerPropertiesTests {
|
||||||
assertThat(this.properties.getServerHeader()).isEqualTo("Custom Server");
|
assertThat(this.properties.getServerHeader()).isEqualTo("Custom Server");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testConnectionTimeout() throws Exception {
|
||||||
|
Map<String, String> map = new HashMap<String, String>();
|
||||||
|
map.put("server.connection-timeout", "60000");
|
||||||
|
bindProperties(map);
|
||||||
|
assertThat(this.properties.getConnectionTimeout()).isEqualTo(60000);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testServletPathAsMapping() throws Exception {
|
public void testServletPathAsMapping() throws Exception {
|
||||||
RelaxedDataBinder binder = new RelaxedDataBinder(this.properties, "server");
|
RelaxedDataBinder binder = new RelaxedDataBinder(this.properties, "server");
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
server.compression.enabled: true
|
server.compression.enabled: true
|
||||||
server.compression.min-response-size: 1
|
server.compression.min-response-size: 1
|
||||||
|
server.connection-timeout=5000
|
||||||
|
|
|
||||||
|
|
@ -20,13 +20,18 @@ import java.io.ByteArrayInputStream;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.Charset;
|
||||||
import java.util.zip.GZIPInputStream;
|
import java.util.zip.GZIPInputStream;
|
||||||
|
|
||||||
|
import org.apache.coyote.AbstractProtocol;
|
||||||
|
import org.apache.coyote.ProtocolHandler;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.context.embedded.EmbeddedWebApplicationContext;
|
||||||
|
import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
|
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
|
||||||
import org.springframework.boot.test.web.client.TestRestTemplate;
|
import org.springframework.boot.test.web.client.TestRestTemplate;
|
||||||
|
import org.springframework.context.ApplicationContext;
|
||||||
import org.springframework.http.HttpEntity;
|
import org.springframework.http.HttpEntity;
|
||||||
import org.springframework.http.HttpHeaders;
|
import org.springframework.http.HttpHeaders;
|
||||||
import org.springframework.http.HttpMethod;
|
import org.springframework.http.HttpMethod;
|
||||||
|
|
@ -52,6 +57,9 @@ public class SampleTomcatApplicationTests {
|
||||||
@Autowired
|
@Autowired
|
||||||
private TestRestTemplate restTemplate;
|
private TestRestTemplate restTemplate;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ApplicationContext applicationContext;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testHome() throws Exception {
|
public void testHome() throws Exception {
|
||||||
ResponseEntity<String> entity = this.restTemplate.getForEntity("/", String.class);
|
ResponseEntity<String> entity = this.restTemplate.getForEntity("/", String.class);
|
||||||
|
|
@ -78,4 +86,15 @@ public class SampleTomcatApplicationTests {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testTimeout() throws Exception {
|
||||||
|
EmbeddedWebApplicationContext context = (EmbeddedWebApplicationContext) this.applicationContext;
|
||||||
|
TomcatEmbeddedServletContainer embeddedServletContainer = (TomcatEmbeddedServletContainer) context
|
||||||
|
.getEmbeddedServletContainer();
|
||||||
|
ProtocolHandler protocolHandler = embeddedServletContainer.getTomcat()
|
||||||
|
.getConnector().getProtocolHandler();
|
||||||
|
int timeout = ((AbstractProtocol<?>) protocolHandler).getConnectionTimeout();
|
||||||
|
assertThat(timeout).isEqualTo(5000);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -184,14 +184,15 @@ public class MockitoPostProcessor extends InstantiationAwareBeanPostProcessorAda
|
||||||
BeanDefinitionRegistry registry, MockDefinition definition, Field field) {
|
BeanDefinitionRegistry registry, MockDefinition definition, Field field) {
|
||||||
RootBeanDefinition beanDefinition = createBeanDefinition(definition);
|
RootBeanDefinition beanDefinition = createBeanDefinition(definition);
|
||||||
String beanName = getBeanName(beanFactory, registry, definition, beanDefinition);
|
String beanName = getBeanName(beanFactory, registry, definition, beanDefinition);
|
||||||
|
String transformedBeanName = BeanFactoryUtils.transformedBeanName(beanName);
|
||||||
beanDefinition.getConstructorArgumentValues().addIndexedArgumentValue(1,
|
beanDefinition.getConstructorArgumentValues().addIndexedArgumentValue(1,
|
||||||
beanName);
|
beanName);
|
||||||
if (registry.containsBeanDefinition(beanName)) {
|
if (registry.containsBeanDefinition(transformedBeanName)) {
|
||||||
registry.removeBeanDefinition(beanName);
|
registry.removeBeanDefinition(transformedBeanName);
|
||||||
}
|
}
|
||||||
registry.registerBeanDefinition(beanName, beanDefinition);
|
registry.registerBeanDefinition(transformedBeanName, beanDefinition);
|
||||||
Object mock = createMock(definition, beanName);
|
Object mock = createMock(definition, beanName);
|
||||||
beanFactory.registerSingleton(beanName, mock);
|
beanFactory.registerSingleton(transformedBeanName, mock);
|
||||||
this.mockitoBeans.add(mock);
|
this.mockitoBeans.add(mock);
|
||||||
this.beanNameRegistry.put(definition, beanName);
|
this.beanNameRegistry.put(definition, beanName);
|
||||||
if (field != null) {
|
if (field != null) {
|
||||||
|
|
|
||||||
|
|
@ -916,14 +916,16 @@ public class TestRestTemplate {
|
||||||
*/
|
*/
|
||||||
public TestRestTemplate withBasicAuth(String username, String password) {
|
public TestRestTemplate withBasicAuth(String username, String password) {
|
||||||
RestTemplate restTemplate = new RestTemplate();
|
RestTemplate restTemplate = new RestTemplate();
|
||||||
restTemplate.setErrorHandler(getRestTemplate().getErrorHandler());
|
|
||||||
restTemplate.setMessageConverters(getRestTemplate().getMessageConverters());
|
restTemplate.setMessageConverters(getRestTemplate().getMessageConverters());
|
||||||
restTemplate.setInterceptors(
|
restTemplate.setInterceptors(
|
||||||
removeBasicAuthInterceptorIfPresent(getRestTemplate().getInterceptors()));
|
removeBasicAuthInterceptorIfPresent(getRestTemplate().getInterceptors()));
|
||||||
restTemplate.setRequestFactory(getRestTemplate().getRequestFactory());
|
restTemplate.setRequestFactory(getRestTemplate().getRequestFactory());
|
||||||
restTemplate.setUriTemplateHandler(getRestTemplate().getUriTemplateHandler());
|
restTemplate.setUriTemplateHandler(getRestTemplate().getUriTemplateHandler());
|
||||||
return new TestRestTemplate(restTemplate, username, password,
|
TestRestTemplate testRestTemplate = new TestRestTemplate(restTemplate, username,
|
||||||
this.httpClientOptions);
|
password, this.httpClientOptions);
|
||||||
|
testRestTemplate.getRestTemplate()
|
||||||
|
.setErrorHandler(getRestTemplate().getErrorHandler());
|
||||||
|
return testRestTemplate;
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<ClientHttpRequestInterceptor> removeBasicAuthInterceptorIfPresent(
|
private List<ClientHttpRequestInterceptor> removeBasicAuthInterceptorIfPresent(
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,102 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2012-2016 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.test.mock.mockito;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.FactoryBean;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.context.ApplicationContext;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.test.context.junit4.SpringRunner;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.mockito.BDDMockito.given;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test {@link MockBean} for a factory bean.
|
||||||
|
*
|
||||||
|
* @author Phillip Webb
|
||||||
|
*/
|
||||||
|
@RunWith(SpringRunner.class)
|
||||||
|
public class MockBeanForBeanFactoryIntegrationTests {
|
||||||
|
|
||||||
|
// gh-7439
|
||||||
|
|
||||||
|
@MockBean
|
||||||
|
private TestFactoryBean testFactoryBean;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ApplicationContext applicationContext;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||||
|
public void testName() throws Exception {
|
||||||
|
TestBean testBean = mock(TestBean.class);
|
||||||
|
given(testBean.hello()).willReturn("amock");
|
||||||
|
given(this.testFactoryBean.getObjectType()).willReturn((Class) TestBean.class);
|
||||||
|
given(this.testFactoryBean.getObject()).willReturn(testBean);
|
||||||
|
TestBean bean = this.applicationContext.getBean(TestBean.class);
|
||||||
|
assertThat(bean.hello()).isEqualTo("amock");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
static class Config {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public TestFactoryBean testFactoryBean() {
|
||||||
|
return new TestFactoryBean();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
static class TestFactoryBean implements FactoryBean<TestBean> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TestBean getObject() throws Exception {
|
||||||
|
return new TestBean() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String hello() {
|
||||||
|
return "normal";
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Class<?> getObjectType() {
|
||||||
|
return TestBean.class;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isSingleton() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TestBean {
|
||||||
|
|
||||||
|
String hello();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -34,6 +34,7 @@ import org.springframework.http.client.support.BasicAuthorizationInterceptor;
|
||||||
import org.springframework.test.util.ReflectionTestUtils;
|
import org.springframework.test.util.ReflectionTestUtils;
|
||||||
import org.springframework.util.ReflectionUtils;
|
import org.springframework.util.ReflectionUtils;
|
||||||
import org.springframework.util.ReflectionUtils.MethodCallback;
|
import org.springframework.util.ReflectionUtils.MethodCallback;
|
||||||
|
import org.springframework.web.client.ResponseErrorHandler;
|
||||||
import org.springframework.web.client.RestOperations;
|
import org.springframework.web.client.RestOperations;
|
||||||
import org.springframework.web.client.RestTemplate;
|
import org.springframework.web.client.RestTemplate;
|
||||||
|
|
||||||
|
|
@ -157,25 +158,32 @@ public class TestRestTemplateTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void withBasicAuthReplacesBasicAuthInterceptorWhenAlreadyPresent() {
|
public void withBasicAuthReplacesBasicAuthInterceptorWhenAlreadyPresent() {
|
||||||
TestRestTemplate originalTemplate = new TestRestTemplate("foo", "bar");
|
TestRestTemplate original = new TestRestTemplate("foo", "bar");
|
||||||
TestRestTemplate basicAuthTemplate = originalTemplate.withBasicAuth("user",
|
TestRestTemplate basicAuth = original.withBasicAuth("user", "password");
|
||||||
"password");
|
assertThat(basicAuth.getRestTemplate().getMessageConverters())
|
||||||
assertThat(basicAuthTemplate.getRestTemplate().getMessageConverters())
|
|
||||||
.containsExactlyElementsOf(
|
.containsExactlyElementsOf(
|
||||||
originalTemplate.getRestTemplate().getMessageConverters());
|
original.getRestTemplate().getMessageConverters());
|
||||||
assertThat(basicAuthTemplate.getRestTemplate().getRequestFactory())
|
assertThat(basicAuth.getRestTemplate().getRequestFactory())
|
||||||
.isInstanceOf(InterceptingClientHttpRequestFactory.class);
|
.isInstanceOf(InterceptingClientHttpRequestFactory.class);
|
||||||
assertThat(ReflectionTestUtils.getField(
|
assertThat(ReflectionTestUtils.getField(
|
||||||
basicAuthTemplate.getRestTemplate().getRequestFactory(),
|
basicAuth.getRestTemplate().getRequestFactory(), "requestFactory"))
|
||||||
"requestFactory"))
|
|
||||||
.isInstanceOf(CustomHttpComponentsClientHttpRequestFactory.class);
|
.isInstanceOf(CustomHttpComponentsClientHttpRequestFactory.class);
|
||||||
assertThat(basicAuthTemplate.getRestTemplate().getUriTemplateHandler())
|
assertThat(basicAuth.getRestTemplate().getUriTemplateHandler())
|
||||||
.isSameAs(originalTemplate.getRestTemplate().getUriTemplateHandler());
|
.isSameAs(original.getRestTemplate().getUriTemplateHandler());
|
||||||
assertThat(basicAuthTemplate.getRestTemplate().getInterceptors())
|
assertThat(basicAuth.getRestTemplate().getInterceptors())
|
||||||
.containsExactlyElementsOf(
|
.containsExactlyElementsOf(original.getRestTemplate().getInterceptors());
|
||||||
originalTemplate.getRestTemplate().getInterceptors());
|
assertBasicAuthorizationInterceptorCredentials(basicAuth, "user", "password");
|
||||||
assertBasicAuthorizationInterceptorCredentials(basicAuthTemplate, "user",
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void withBasicAuthDoesNotResetErrorHandler() throws Exception {
|
||||||
|
TestRestTemplate originalTemplate = new TestRestTemplate("foo", "bar");
|
||||||
|
ResponseErrorHandler errorHandler = mock(ResponseErrorHandler.class);
|
||||||
|
originalTemplate.getRestTemplate().setErrorHandler(errorHandler);
|
||||||
|
TestRestTemplate basicAuthTemplate = originalTemplate.withBasicAuth("user",
|
||||||
"password");
|
"password");
|
||||||
|
assertThat(basicAuthTemplate.getRestTemplate().getErrorHandler())
|
||||||
|
.isSameAs(errorHandler);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void assertBasicAuthorizationInterceptorCredentials(
|
private void assertBasicAuthorizationInterceptorCredentials(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue