parent
34f22dcbce
commit
83f503b86f
|
@ -78,6 +78,7 @@ public abstract class ConnectorTimeoutTest extends HttpServerTestFixture
|
||||||
{
|
{
|
||||||
_httpConfiguration.setBlockingTimeout(-1L);
|
_httpConfiguration.setBlockingTimeout(-1L);
|
||||||
_httpConfiguration.setMinRequestDataRate(-1);
|
_httpConfiguration.setMinRequestDataRate(-1);
|
||||||
|
_httpConfiguration.setIdleTimeout(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -883,6 +884,43 @@ public abstract class ConnectorTimeoutTest extends HttpServerTestFixture
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test(timeout=60000)
|
||||||
|
public void testHttpIdleTime() throws Exception
|
||||||
|
{
|
||||||
|
_httpConfiguration.setIdleTimeout(500);
|
||||||
|
configureServer(new EchoHandler());
|
||||||
|
Socket client=newSocket(_serverURI.getHost(),_serverURI.getPort());
|
||||||
|
client.setSoTimeout(10000);
|
||||||
|
|
||||||
|
Assert.assertFalse(client.isClosed());
|
||||||
|
|
||||||
|
OutputStream os=client.getOutputStream();
|
||||||
|
InputStream is=client.getInputStream();
|
||||||
|
|
||||||
|
try (StacklessLogging scope = new StacklessLogging(HttpChannel.class))
|
||||||
|
{
|
||||||
|
os.write((
|
||||||
|
"POST /echo HTTP/1.0\r\n"+
|
||||||
|
"host: "+_serverURI.getHost()+":"+_serverURI.getPort()+"\r\n"+
|
||||||
|
"content-type: text/plain; charset=utf-8\r\n"+
|
||||||
|
"content-length: 20\r\n"+
|
||||||
|
"\r\n").getBytes("utf-8"));
|
||||||
|
os.flush();
|
||||||
|
|
||||||
|
os.write("123456789\n".getBytes("utf-8"));
|
||||||
|
os.flush();
|
||||||
|
Thread.sleep(1000);
|
||||||
|
os.write("=========\n".getBytes("utf-8"));
|
||||||
|
os.flush();
|
||||||
|
|
||||||
|
String response =IO.toString(is);
|
||||||
|
Assert.assertThat(response,containsString(" 500 "));
|
||||||
|
Assert.assertThat(response,containsString("/500 ms"));
|
||||||
|
Assert.assertThat(response,Matchers.not(containsString("=========")));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
protected static class SlowResponseHandler extends AbstractHandler
|
protected static class SlowResponseHandler extends AbstractHandler
|
||||||
|
|
|
@ -38,7 +38,7 @@ public class ServerConnectorTimeoutTest extends ConnectorTimeoutTest
|
||||||
public void init() throws Exception
|
public void init() throws Exception
|
||||||
{
|
{
|
||||||
ServerConnector connector = new ServerConnector(_server,1,1);
|
ServerConnector connector = new ServerConnector(_server,1,1);
|
||||||
connector.setIdleTimeout(MAX_IDLE_TIME); // 250 msec max idle
|
connector.setIdleTimeout(MAX_IDLE_TIME);
|
||||||
startServer(connector);
|
startServer(connector);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue