changes from review
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
d7c47f42d6
commit
9c910e9413
|
@ -23,6 +23,7 @@ import java.util.concurrent.CancellationException;
|
||||||
import java.util.concurrent.CountDownLatch;
|
import java.util.concurrent.CountDownLatch;
|
||||||
import java.util.concurrent.Future;
|
import java.util.concurrent.Future;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.concurrent.TimeoutException;
|
||||||
import javax.servlet.DispatcherType;
|
import javax.servlet.DispatcherType;
|
||||||
|
|
||||||
import org.eclipse.jetty.server.Server;
|
import org.eclipse.jetty.server.Server;
|
||||||
|
@ -56,7 +57,7 @@ import static org.junit.jupiter.api.Assertions.assertNull;
|
||||||
import static org.junit.jupiter.api.Assertions.assertThrows;
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
public class ConnectFutureAbortTest
|
public class ConnectFutureTest
|
||||||
{
|
{
|
||||||
private Server server;
|
private Server server;
|
||||||
private WebSocketClient client;
|
private WebSocketClient client;
|
||||||
|
@ -98,8 +99,8 @@ public class ConnectFutureAbortTest
|
||||||
@Test
|
@Test
|
||||||
public void testAbortDuringCreator() throws Exception
|
public void testAbortDuringCreator() throws Exception
|
||||||
{
|
{
|
||||||
final CountDownLatch enteredCreator = new CountDownLatch(1);
|
CountDownLatch enteredCreator = new CountDownLatch(1);
|
||||||
final CountDownLatch exitCreator = new CountDownLatch(1);
|
CountDownLatch exitCreator = new CountDownLatch(1);
|
||||||
start(c ->
|
start(c ->
|
||||||
{
|
{
|
||||||
c.addMapping("/", (req, res) ->
|
c.addMapping("/", (req, res) ->
|
||||||
|
@ -125,10 +126,11 @@ public class ConnectFutureAbortTest
|
||||||
assertTrue(connect.cancel(true));
|
assertTrue(connect.cancel(true));
|
||||||
assertThrows(CancellationException.class, () -> connect.get(5, TimeUnit.SECONDS));
|
assertThrows(CancellationException.class, () -> connect.get(5, TimeUnit.SECONDS));
|
||||||
exitCreator.countDown();
|
exitCreator.countDown();
|
||||||
assertFalse(clientSocket.openLatch.await(2, TimeUnit.SECONDS));
|
assertFalse(clientSocket.openLatch.await(1, TimeUnit.SECONDS));
|
||||||
|
|
||||||
// Strange that onError() is called but onOpen() is never called. (This would not be the case in Jetty-10).
|
Throwable error = clientSocket.error.get();
|
||||||
assertThat(clientSocket.error.get(), instanceOf(UpgradeException.class));
|
assertThat(error, instanceOf(UpgradeException.class));
|
||||||
|
assertThat(error.getCause(), instanceOf(CancellationException.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -136,8 +138,8 @@ public class ConnectFutureAbortTest
|
||||||
{
|
{
|
||||||
start(c -> c.addMapping("/", EventSocket.EchoSocket.class));
|
start(c -> c.addMapping("/", EventSocket.EchoSocket.class));
|
||||||
|
|
||||||
final CountDownLatch enteredListener = new CountDownLatch(1);
|
CountDownLatch enteredListener = new CountDownLatch(1);
|
||||||
final CountDownLatch exitListener = new CountDownLatch(1);
|
CountDownLatch exitListener = new CountDownLatch(1);
|
||||||
client.addSessionListener(new WebSocketSessionListener()
|
client.addSessionListener(new WebSocketSessionListener()
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
||||||
|
@ -163,9 +165,7 @@ public class ConnectFutureAbortTest
|
||||||
assertTrue(connect.cancel(true));
|
assertTrue(connect.cancel(true));
|
||||||
assertThrows(CancellationException.class, () -> connect.get(5, TimeUnit.SECONDS));
|
assertThrows(CancellationException.class, () -> connect.get(5, TimeUnit.SECONDS));
|
||||||
exitListener.countDown();
|
exitListener.countDown();
|
||||||
assertFalse(clientSocket.openLatch.await(2, TimeUnit.SECONDS));
|
assertFalse(clientSocket.openLatch.await(1, TimeUnit.SECONDS));
|
||||||
|
|
||||||
// Strange that onError() is called but onOpen() is never called. (This would not be the case in Jetty-10).
|
|
||||||
assertThat(clientSocket.error.get(), instanceOf(CancellationException.class));
|
assertThat(clientSocket.error.get(), instanceOf(CancellationException.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -174,8 +174,8 @@ public class ConnectFutureAbortTest
|
||||||
{
|
{
|
||||||
start(c -> c.addMapping("/", EventSocket.EchoSocket.class));
|
start(c -> c.addMapping("/", EventSocket.EchoSocket.class));
|
||||||
|
|
||||||
final CountDownLatch enteredListener = new CountDownLatch(1);
|
CountDownLatch enteredListener = new CountDownLatch(1);
|
||||||
final CountDownLatch exitListener = new CountDownLatch(1);
|
CountDownLatch exitListener = new CountDownLatch(1);
|
||||||
UpgradeListener upgradeListener = new AbstractUpgradeListener()
|
UpgradeListener upgradeListener = new AbstractUpgradeListener()
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
||||||
|
@ -202,9 +202,7 @@ public class ConnectFutureAbortTest
|
||||||
assertTrue(connect.cancel(true));
|
assertTrue(connect.cancel(true));
|
||||||
assertThrows(CancellationException.class, () -> connect.get(5, TimeUnit.SECONDS));
|
assertThrows(CancellationException.class, () -> connect.get(5, TimeUnit.SECONDS));
|
||||||
exitListener.countDown();
|
exitListener.countDown();
|
||||||
assertFalse(clientSocket.openLatch.await(2, TimeUnit.SECONDS));
|
assertFalse(clientSocket.openLatch.await(1, TimeUnit.SECONDS));
|
||||||
|
|
||||||
// Strange that onError() is called but onOpen() is never called. (This would not be the case in Jetty-10).
|
|
||||||
assertThat(clientSocket.error.get(), instanceOf(CancellationException.class));
|
assertThat(clientSocket.error.get(), instanceOf(CancellationException.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -213,7 +211,7 @@ public class ConnectFutureAbortTest
|
||||||
{
|
{
|
||||||
start(c -> c.addMapping("/", EventSocket.EchoSocket.class));
|
start(c -> c.addMapping("/", EventSocket.EchoSocket.class));
|
||||||
|
|
||||||
final CountDownLatch exitOnOpen = new CountDownLatch(1);
|
CountDownLatch exitOnOpen = new CountDownLatch(1);
|
||||||
CloseTrackingEndpoint clientSocket = new CloseTrackingEndpoint()
|
CloseTrackingEndpoint clientSocket = new CloseTrackingEndpoint()
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
||||||
|
@ -260,7 +258,7 @@ public class ConnectFutureAbortTest
|
||||||
// After it has been completed we should not get any errors from cancelling it.
|
// After it has been completed we should not get any errors from cancelling it.
|
||||||
assertFalse(connect.cancel(true));
|
assertFalse(connect.cancel(true));
|
||||||
assertThat(connect.get(5, TimeUnit.SECONDS), instanceOf(Session.class));
|
assertThat(connect.get(5, TimeUnit.SECONDS), instanceOf(Session.class));
|
||||||
assertFalse(clientSocket.closeLatch.await(2, TimeUnit.SECONDS));
|
assertFalse(clientSocket.closeLatch.await(1, TimeUnit.SECONDS));
|
||||||
assertNull(clientSocket.error.get());
|
assertNull(clientSocket.error.get());
|
||||||
|
|
||||||
// Close the session properly.
|
// Close the session properly.
|
||||||
|
@ -269,6 +267,38 @@ public class ConnectFutureAbortTest
|
||||||
assertThat(clientSocket.closeCode, is(StatusCode.NORMAL));
|
assertThat(clientSocket.closeCode, is(StatusCode.NORMAL));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testFutureTimeout() throws Exception
|
||||||
|
{
|
||||||
|
CountDownLatch exitCreator = new CountDownLatch(1);
|
||||||
|
start(c ->
|
||||||
|
{
|
||||||
|
c.addMapping("/", (req, res) ->
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
exitCreator.await();
|
||||||
|
return new EventSocket.EchoSocket();
|
||||||
|
}
|
||||||
|
catch (InterruptedException e)
|
||||||
|
{
|
||||||
|
throw new IllegalStateException(e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
CloseTrackingEndpoint clientSocket = new CloseTrackingEndpoint();
|
||||||
|
Future<Session> connect = client.connect(clientSocket, WSURI.toWebsocket(server.getURI()));
|
||||||
|
assertThrows(TimeoutException.class, () -> connect.get(1, TimeUnit.SECONDS));
|
||||||
|
exitCreator.countDown();
|
||||||
|
Session session = connect.get(5, TimeUnit.SECONDS);
|
||||||
|
|
||||||
|
// Close the session properly.
|
||||||
|
session.close();
|
||||||
|
assertTrue(clientSocket.closeLatch.await(5, TimeUnit.SECONDS));
|
||||||
|
assertThat(clientSocket.closeCode, is(StatusCode.NORMAL));
|
||||||
|
}
|
||||||
|
|
||||||
public abstract static class AbstractUpgradeListener implements UpgradeListener
|
public abstract static class AbstractUpgradeListener implements UpgradeListener
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
Loading…
Reference in New Issue