|
|
|
@ -16,21 +16,38 @@
|
|
|
|
|
|
|
|
|
|
package org.springframework.boot.autoconfigure.web.embedded;
|
|
|
|
|
|
|
|
|
|
import java.time.Duration;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
import io.netty.bootstrap.ServerBootstrap;
|
|
|
|
|
import io.netty.channel.ChannelOption;
|
|
|
|
|
import org.junit.Before;
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
import org.mockito.ArgumentCaptor;
|
|
|
|
|
import org.mockito.Captor;
|
|
|
|
|
import org.mockito.MockitoAnnotations;
|
|
|
|
|
import reactor.netty.http.server.HttpServer;
|
|
|
|
|
import reactor.netty.tcp.TcpServer;
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.web.ServerProperties;
|
|
|
|
|
import org.springframework.boot.context.properties.source.ConfigurationPropertySources;
|
|
|
|
|
import org.springframework.boot.web.embedded.netty.NettyReactiveWebServerFactory;
|
|
|
|
|
import org.springframework.boot.web.embedded.netty.NettyServerCustomizer;
|
|
|
|
|
import org.springframework.mock.env.MockEnvironment;
|
|
|
|
|
import org.springframework.test.util.ReflectionTestUtils;
|
|
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
import static org.mockito.ArgumentMatchers.any;
|
|
|
|
|
import static org.mockito.Mockito.mock;
|
|
|
|
|
import static org.mockito.Mockito.never;
|
|
|
|
|
import static org.mockito.Mockito.times;
|
|
|
|
|
import static org.mockito.Mockito.verify;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tests for {@link NettyWebServerFactoryCustomizer}.
|
|
|
|
|
*
|
|
|
|
|
* @author Brian Clozel
|
|
|
|
|
* @author Artsiom Yudovin
|
|
|
|
|
*/
|
|
|
|
|
public class NettyWebServerFactoryCustomizerTests {
|
|
|
|
|
|
|
|
|
@ -40,8 +57,12 @@ public class NettyWebServerFactoryCustomizerTests {
|
|
|
|
|
|
|
|
|
|
private NettyWebServerFactoryCustomizer customizer;
|
|
|
|
|
|
|
|
|
|
@Captor
|
|
|
|
|
private ArgumentCaptor<NettyServerCustomizer> customizerCaptor;
|
|
|
|
|
|
|
|
|
|
@Before
|
|
|
|
|
public void setup() {
|
|
|
|
|
MockitoAnnotations.initMocks(this);
|
|
|
|
|
this.environment = new MockEnvironment();
|
|
|
|
|
this.serverProperties = new ServerProperties();
|
|
|
|
|
ConfigurationPropertySources.attach(this.environment);
|
|
|
|
@ -71,4 +92,49 @@ public class NettyWebServerFactoryCustomizerTests {
|
|
|
|
|
verify(factory).setUseForwardHeaders(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void setConnectionTimeoutAsZero() {
|
|
|
|
|
setupConnectionTimeout(Duration.ZERO);
|
|
|
|
|
NettyReactiveWebServerFactory factory = mock(NettyReactiveWebServerFactory.class);
|
|
|
|
|
this.customizer.customize(factory);
|
|
|
|
|
verifyConnectionTimeout(factory, null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void setConnectionTimeoutAsMinusOne() {
|
|
|
|
|
setupConnectionTimeout(Duration.ofNanos(-1));
|
|
|
|
|
NettyReactiveWebServerFactory factory = mock(NettyReactiveWebServerFactory.class);
|
|
|
|
|
this.customizer.customize(factory);
|
|
|
|
|
verifyConnectionTimeout(factory, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void setConnectionTimeout() {
|
|
|
|
|
setupConnectionTimeout(Duration.ofSeconds(1));
|
|
|
|
|
NettyReactiveWebServerFactory factory = mock(NettyReactiveWebServerFactory.class);
|
|
|
|
|
this.customizer.customize(factory);
|
|
|
|
|
verifyConnectionTimeout(factory, 1000);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
private void verifyConnectionTimeout(NettyReactiveWebServerFactory factory, Integer expected) {
|
|
|
|
|
if (expected == null) {
|
|
|
|
|
verify(factory, never()).addServerCustomizers(any(NettyServerCustomizer.class));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
verify(factory, times(1)).addServerCustomizers(this.customizerCaptor.capture());
|
|
|
|
|
NettyServerCustomizer serverCustomizer = this.customizerCaptor.getValue();
|
|
|
|
|
HttpServer httpServer = serverCustomizer.apply(HttpServer.create());
|
|
|
|
|
TcpServer tcpConfiguration = ReflectionTestUtils.invokeMethod(httpServer, "tcpConfiguration");
|
|
|
|
|
ServerBootstrap bootstrap = tcpConfiguration.configure();
|
|
|
|
|
Map<Object, Object> options = (Map<Object, Object>) ReflectionTestUtils.getField(bootstrap, "options");
|
|
|
|
|
assertThat(options).containsEntry(ChannelOption.CONNECT_TIMEOUT_MILLIS, expected);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void setupConnectionTimeout(Duration connectionTimeout) {
|
|
|
|
|
this.serverProperties.setUseForwardHeaders(null);
|
|
|
|
|
this.serverProperties.setMaxHttpHeaderSize(null);
|
|
|
|
|
this.serverProperties.setConnectionTimeout(connectionTimeout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|