Issue #2135 - Correct testHelloWorld failure by backporting test from 9.4.x
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
c4ea4a2d96
commit
df29e292af
|
@ -45,6 +45,7 @@ import org.eclipse.jetty.util.thread.QueuedThreadPool;
|
||||||
import org.eclipse.jetty.util.thread.Scheduler;
|
import org.eclipse.jetty.util.thread.Scheduler;
|
||||||
import org.eclipse.jetty.util.thread.TimerScheduler;
|
import org.eclipse.jetty.util.thread.TimerScheduler;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
|
import org.junit.AfterClass;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
@ -139,6 +140,12 @@ public class SslConnectionTest
|
||||||
__sslCtxFactory.start();
|
__sslCtxFactory.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@AfterClass
|
||||||
|
public static void stopSsl() throws Exception
|
||||||
|
{
|
||||||
|
__sslCtxFactory.stop();
|
||||||
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void startManager() throws Exception
|
public void startManager() throws Exception
|
||||||
{
|
{
|
||||||
|
@ -259,27 +266,27 @@ public class SslConnectionTest
|
||||||
@Test
|
@Test
|
||||||
public void testHelloWorld() throws Exception
|
public void testHelloWorld() throws Exception
|
||||||
{
|
{
|
||||||
Socket client = newClient();
|
try (Socket client = newClient())
|
||||||
client.setSoTimeout(60000);
|
{
|
||||||
|
client.setSoTimeout(60000);
|
||||||
|
try (SocketChannel server = _connector.accept())
|
||||||
|
{
|
||||||
|
server.configureBlocking(false);
|
||||||
|
_manager.accept(server);
|
||||||
|
|
||||||
SocketChannel server = _connector.accept();
|
client.getOutputStream().write("Hello".getBytes(StandardCharsets.UTF_8));
|
||||||
server.configureBlocking(false);
|
byte[] buffer = new byte[1024];
|
||||||
_manager.accept(server);
|
int len = client.getInputStream().read(buffer);
|
||||||
|
Assert.assertEquals(5, len);
|
||||||
|
Assert.assertEquals("Hello", new String(buffer, 0, len, StandardCharsets.UTF_8));
|
||||||
|
|
||||||
client.getOutputStream().write("Hello".getBytes(StandardCharsets.UTF_8));
|
_dispatches.set(0);
|
||||||
byte[] buffer = new byte[1024];
|
client.getOutputStream().write("World".getBytes(StandardCharsets.UTF_8));
|
||||||
int len=client.getInputStream().read(buffer);
|
len = 5;
|
||||||
Assert.assertEquals(5, len);
|
while (len > 0)
|
||||||
Assert.assertEquals("Hello",new String(buffer,0,len,StandardCharsets.UTF_8));
|
len -= client.getInputStream().read(buffer);
|
||||||
|
}
|
||||||
_dispatches.set(0);
|
}
|
||||||
client.getOutputStream().write("World".getBytes(StandardCharsets.UTF_8));
|
|
||||||
len=5;
|
|
||||||
while(len>0)
|
|
||||||
len-=client.getInputStream().read(buffer);
|
|
||||||
Assert.assertEquals(1, _dispatches.get());
|
|
||||||
|
|
||||||
client.close();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue