Merge pull request #5266 from eclipse/jetty-10.0.x-WebSocketAutoBahn
Issue #5170 - fix upgrade bug in HttpReceiverOverHTTP
This commit is contained in:
commit
76cf6c8bdc
|
@ -52,6 +52,7 @@ public class HttpReceiverOverHTTP extends HttpReceiver implements HttpParser.Res
|
||||||
private boolean shutdown;
|
private boolean shutdown;
|
||||||
private boolean complete;
|
private boolean complete;
|
||||||
private boolean unsolicited;
|
private boolean unsolicited;
|
||||||
|
private int status;
|
||||||
|
|
||||||
public HttpReceiverOverHTTP(HttpChannelOverHTTP channel)
|
public HttpReceiverOverHTTP(HttpChannelOverHTTP channel)
|
||||||
{
|
{
|
||||||
|
@ -132,17 +133,18 @@ public class HttpReceiverOverHTTP extends HttpReceiver implements HttpParser.Res
|
||||||
|
|
||||||
protected ByteBuffer onUpgradeFrom()
|
protected ByteBuffer onUpgradeFrom()
|
||||||
{
|
{
|
||||||
|
ByteBuffer upgradeBuffer = null;
|
||||||
if (networkBuffer.hasRemaining())
|
if (networkBuffer.hasRemaining())
|
||||||
{
|
{
|
||||||
HttpClient client = getHttpDestination().getHttpClient();
|
HttpClient client = getHttpDestination().getHttpClient();
|
||||||
ByteBuffer upgradeBuffer = BufferUtil.allocate(networkBuffer.remaining(), client.isUseInputDirectByteBuffers());
|
upgradeBuffer = BufferUtil.allocate(networkBuffer.remaining(), client.isUseInputDirectByteBuffers());
|
||||||
BufferUtil.clearToFill(upgradeBuffer);
|
BufferUtil.clearToFill(upgradeBuffer);
|
||||||
BufferUtil.put(networkBuffer.getBuffer(), upgradeBuffer);
|
BufferUtil.put(networkBuffer.getBuffer(), upgradeBuffer);
|
||||||
BufferUtil.flipToFlush(upgradeBuffer, 0);
|
BufferUtil.flipToFlush(upgradeBuffer, 0);
|
||||||
return upgradeBuffer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
releaseNetworkBuffer();
|
releaseNetworkBuffer();
|
||||||
return null;
|
return upgradeBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void process()
|
private void process()
|
||||||
|
@ -230,15 +232,19 @@ public class HttpReceiverOverHTTP extends HttpReceiver implements HttpParser.Res
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("Parse complete={}, remaining {} {}", complete, networkBuffer.remaining(), parser);
|
LOG.debug("Parse complete={}, remaining {} {}", complete, networkBuffer.remaining(), parser);
|
||||||
|
|
||||||
|
if (complete)
|
||||||
|
{
|
||||||
|
int status = this.status;
|
||||||
|
this.status = 0;
|
||||||
|
if (status == HttpStatus.SWITCHING_PROTOCOLS_101)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (networkBuffer.isEmpty())
|
if (networkBuffer.isEmpty())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (complete)
|
if (complete)
|
||||||
{
|
{
|
||||||
HttpExchange httpExchange = getHttpExchange();
|
|
||||||
if (httpExchange != null && httpExchange.getResponse().getStatus() == HttpStatus.SWITCHING_PROTOCOLS_101)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("Discarding unexpected content after response: {}", networkBuffer);
|
LOG.debug("Discarding unexpected content after response: {}", networkBuffer);
|
||||||
networkBuffer.clear();
|
networkBuffer.clear();
|
||||||
|
@ -281,6 +287,7 @@ public class HttpReceiverOverHTTP extends HttpReceiver implements HttpParser.Res
|
||||||
if (exchange == null)
|
if (exchange == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
this.status = status;
|
||||||
String method = exchange.getRequest().getMethod();
|
String method = exchange.getRequest().getMethod();
|
||||||
parser.setHeadResponse(HttpMethod.HEAD.is(method) ||
|
parser.setHeadResponse(HttpMethod.HEAD.is(method) ||
|
||||||
(HttpMethod.CONNECT.is(method) && status == HttpStatus.OK_200));
|
(HttpMethod.CONNECT.is(method) && status == HttpStatus.OK_200));
|
||||||
|
|
|
@ -137,7 +137,7 @@ public abstract class TransformingFlusher
|
||||||
protected void onCompleteFailure(Throwable t)
|
protected void onCompleteFailure(Throwable t)
|
||||||
{
|
{
|
||||||
if (log.isDebugEnabled())
|
if (log.isDebugEnabled())
|
||||||
log.debug("failed to flush", t);
|
log.debug("onCompleteFailure {}", t.toString());
|
||||||
|
|
||||||
notifyCallbackFailure(current.callback, t);
|
notifyCallbackFailure(current.callback, t);
|
||||||
current = null;
|
current = null;
|
||||||
|
@ -157,14 +157,14 @@ public abstract class TransformingFlusher
|
||||||
}
|
}
|
||||||
catch (Throwable x)
|
catch (Throwable x)
|
||||||
{
|
{
|
||||||
log.warn("Exception while notifying success of callback " + callback, x);
|
log.warn("Exception while notifying success of callback {}", callback, x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void notifyCallbackFailure(Callback callback, Throwable failure)
|
private void notifyCallbackFailure(Callback callback, Throwable failure)
|
||||||
{
|
{
|
||||||
if (log.isDebugEnabled())
|
if (log.isDebugEnabled())
|
||||||
log.debug("notifyCallbackFailure {} {}", callback, failure);
|
log.debug("notifyCallbackFailure {} {}", callback, failure.toString());
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -173,7 +173,7 @@ public abstract class TransformingFlusher
|
||||||
}
|
}
|
||||||
catch (Throwable x)
|
catch (Throwable x)
|
||||||
{
|
{
|
||||||
log.warn("Exception while notifying failure of callback " + callback, x);
|
log.warn("Exception while notifying failure of callback {}", callback, x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -250,7 +250,7 @@ public class WebSocketConnection extends AbstractConnection implements Connectio
|
||||||
public void failed(Throwable cause)
|
public void failed(Throwable cause)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("failed onFrame(" + frame + ")", cause);
|
LOG.debug("failed onFrame({}) {}", frame, cause.toString());
|
||||||
|
|
||||||
frame.close();
|
frame.close();
|
||||||
if (referenced != null)
|
if (referenced != null)
|
||||||
|
@ -470,7 +470,7 @@ public class WebSocketConnection extends AbstractConnection implements Connectio
|
||||||
catch (Throwable t)
|
catch (Throwable t)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("Error during fillAndParse()", t);
|
LOG.debug("Error during fillAndParse() {}", t.toString());
|
||||||
|
|
||||||
if (networkBuffer != null)
|
if (networkBuffer != null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -22,6 +22,7 @@ import java.io.IOException;
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
import java.net.SocketTimeoutException;
|
import java.net.SocketTimeoutException;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
import java.nio.channels.ClosedChannelException;
|
||||||
import java.nio.channels.WritePendingException;
|
import java.nio.channels.WritePendingException;
|
||||||
import java.time.Duration;
|
import java.time.Duration;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -390,7 +391,7 @@ public class WebSocketCoreSession implements IncomingFrames, CoreSession, Dumpab
|
||||||
public void processConnectionError(Throwable cause, Callback callback)
|
public void processConnectionError(Throwable cause, Callback callback)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("processConnectionError {} {}", this, cause);
|
LOG.debug("processConnectionError {}", this, cause);
|
||||||
|
|
||||||
int code;
|
int code;
|
||||||
if (cause instanceof CloseException)
|
if (cause instanceof CloseException)
|
||||||
|
@ -424,11 +425,13 @@ public class WebSocketCoreSession implements IncomingFrames, CoreSession, Dumpab
|
||||||
public void processHandlerError(Throwable cause, Callback callback)
|
public void processHandlerError(Throwable cause, Callback callback)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("processHandlerError {} {}", this, cause);
|
LOG.debug("processHandlerError {}", this, cause);
|
||||||
|
|
||||||
int code;
|
int code;
|
||||||
if (cause instanceof CloseException)
|
if (cause instanceof CloseException)
|
||||||
code = ((CloseException)cause).getStatusCode();
|
code = ((CloseException)cause).getStatusCode();
|
||||||
|
else if (cause instanceof ClosedChannelException)
|
||||||
|
code = CloseStatus.NO_CLOSE;
|
||||||
else if (cause instanceof Utf8Appendable.NotUtf8Exception)
|
else if (cause instanceof Utf8Appendable.NotUtf8Exception)
|
||||||
code = CloseStatus.BAD_PAYLOAD;
|
code = CloseStatus.BAD_PAYLOAD;
|
||||||
else if (cause instanceof WebSocketTimeoutException || cause instanceof TimeoutException || cause instanceof SocketTimeoutException)
|
else if (cause instanceof WebSocketTimeoutException || cause instanceof TimeoutException || cause instanceof SocketTimeoutException)
|
||||||
|
@ -438,7 +441,14 @@ public class WebSocketCoreSession implements IncomingFrames, CoreSession, Dumpab
|
||||||
else
|
else
|
||||||
code = CloseStatus.SERVER_ERROR;
|
code = CloseStatus.SERVER_ERROR;
|
||||||
|
|
||||||
close(new CloseStatus(code, cause), callback);
|
CloseStatus closeStatus = new CloseStatus(code, cause);
|
||||||
|
if (CloseStatus.isTransmittableStatusCode(code))
|
||||||
|
close(closeStatus, callback);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (sessionState.onClosed(closeStatus))
|
||||||
|
closeConnection(closeStatus, callback);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -458,10 +468,10 @@ public class WebSocketCoreSession implements IncomingFrames, CoreSession, Dumpab
|
||||||
() ->
|
() ->
|
||||||
{
|
{
|
||||||
sessionState.onOpen();
|
sessionState.onOpen();
|
||||||
if (!demanding)
|
|
||||||
connection.demand(1);
|
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("ConnectionState: Transition to OPEN");
|
LOG.debug("ConnectionState: Transition to OPEN");
|
||||||
|
if (!demanding)
|
||||||
|
connection.demand(1);
|
||||||
},
|
},
|
||||||
x ->
|
x ->
|
||||||
{
|
{
|
||||||
|
@ -544,9 +554,7 @@ public class WebSocketCoreSession implements IncomingFrames, CoreSession, Dumpab
|
||||||
}
|
}
|
||||||
catch (Throwable t)
|
catch (Throwable t)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
LOG.warn("Invalid outgoing frame: {}", frame, t);
|
||||||
LOG.warn("Invalid outgoing frame: {}", frame, t);
|
|
||||||
|
|
||||||
callback.failed(t);
|
callback.failed(t);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -574,7 +582,7 @@ public class WebSocketCoreSession implements IncomingFrames, CoreSession, Dumpab
|
||||||
catch (Throwable t)
|
catch (Throwable t)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.debug("Failed sendFrame()", t);
|
LOG.debug("Failed sendFrame() {}", t.toString());
|
||||||
|
|
||||||
if (frame.getOpCode() == OpCode.CLOSE)
|
if (frame.getOpCode() == OpCode.CLOSE)
|
||||||
{
|
{
|
||||||
|
|
|
@ -221,7 +221,7 @@ public class WebSocketSessionState
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean onIncomingFrame(Frame frame) throws ProtocolException
|
public boolean onIncomingFrame(Frame frame) throws ProtocolException, ClosedChannelException
|
||||||
{
|
{
|
||||||
byte opcode = frame.getOpCode();
|
byte opcode = frame.getOpCode();
|
||||||
boolean fin = frame.isFin();
|
boolean fin = frame.isFin();
|
||||||
|
@ -229,7 +229,7 @@ public class WebSocketSessionState
|
||||||
try (AutoLock l = lock.lock())
|
try (AutoLock l = lock.lock())
|
||||||
{
|
{
|
||||||
if (!isInputOpen())
|
if (!isInputOpen())
|
||||||
throw new IllegalStateException(_sessionState.toString());
|
throw new ClosedChannelException();
|
||||||
|
|
||||||
if (opcode == OpCode.CLOSE)
|
if (opcode == OpCode.CLOSE)
|
||||||
{
|
{
|
||||||
|
|
|
@ -43,26 +43,14 @@ public class TestMessageHandler extends MessageHandler
|
||||||
@Override
|
@Override
|
||||||
public void onOpen(CoreSession coreSession, Callback callback)
|
public void onOpen(CoreSession coreSession, Callback callback)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
|
||||||
LOG.debug("onOpen {}", coreSession);
|
|
||||||
this.coreSession = coreSession;
|
|
||||||
super.onOpen(coreSession, callback);
|
super.onOpen(coreSession, callback);
|
||||||
|
this.coreSession = coreSession;
|
||||||
openLatch.countDown();
|
openLatch.countDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onFrame(Frame frame, Callback callback)
|
|
||||||
{
|
|
||||||
if (LOG.isDebugEnabled())
|
|
||||||
LOG.debug("onFrame {}", frame);
|
|
||||||
super.onFrame(frame, callback);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onError(Throwable cause, Callback callback)
|
public void onError(Throwable cause, Callback callback)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
|
||||||
LOG.debug("onError", cause);
|
|
||||||
super.onError(cause, callback);
|
super.onError(cause, callback);
|
||||||
error = cause;
|
error = cause;
|
||||||
errorLatch.countDown();
|
errorLatch.countDown();
|
||||||
|
@ -71,8 +59,6 @@ public class TestMessageHandler extends MessageHandler
|
||||||
@Override
|
@Override
|
||||||
public void onClosed(CloseStatus closeStatus, Callback callback)
|
public void onClosed(CloseStatus closeStatus, Callback callback)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
|
||||||
LOG.debug("onClosed {}", closeStatus);
|
|
||||||
super.onClosed(closeStatus, callback);
|
super.onClosed(closeStatus, callback);
|
||||||
this.closeStatus = closeStatus;
|
this.closeStatus = closeStatus;
|
||||||
closeLatch.countDown();
|
closeLatch.countDown();
|
||||||
|
|
|
@ -19,20 +19,22 @@
|
||||||
package org.eclipse.jetty.websocket.core;
|
package org.eclipse.jetty.websocket.core;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.net.ServerSocket;
|
import java.net.ServerSocket;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
import java.util.concurrent.CompletableFuture;
|
import java.util.concurrent.CountDownLatch;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
import org.eclipse.jetty.util.BufferUtil;
|
import org.eclipse.jetty.util.BufferUtil;
|
||||||
|
import org.eclipse.jetty.util.Callback;
|
||||||
import org.eclipse.jetty.util.StringUtil;
|
import org.eclipse.jetty.util.StringUtil;
|
||||||
|
import org.eclipse.jetty.websocket.core.client.CoreClientUpgradeRequest;
|
||||||
import org.eclipse.jetty.websocket.core.client.WebSocketCoreClient;
|
import org.eclipse.jetty.websocket.core.client.WebSocketCoreClient;
|
||||||
import org.eclipse.jetty.websocket.core.internal.Generator;
|
import org.eclipse.jetty.websocket.core.internal.Generator;
|
||||||
import org.eclipse.jetty.websocket.core.internal.WebSocketCore;
|
import org.eclipse.jetty.websocket.core.internal.WebSocketCore;
|
||||||
|
@ -43,8 +45,8 @@ import org.junit.jupiter.api.Test;
|
||||||
import static org.hamcrest.MatcherAssert.assertThat;
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
import static org.hamcrest.Matchers.containsString;
|
import static org.hamcrest.Matchers.containsString;
|
||||||
import static org.hamcrest.Matchers.is;
|
import static org.hamcrest.Matchers.is;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
|
||||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
public class UpgradeWithLeftOverHttpBytesTest extends WebSocketTester
|
public class UpgradeWithLeftOverHttpBytesTest extends WebSocketTester
|
||||||
|
@ -74,10 +76,21 @@ public class UpgradeWithLeftOverHttpBytesTest extends WebSocketTester
|
||||||
@Test
|
@Test
|
||||||
public void testUpgradeWithLeftOverHttpBytes() throws Exception
|
public void testUpgradeWithLeftOverHttpBytes() throws Exception
|
||||||
{
|
{
|
||||||
TestMessageHandler clientEndpoint = new TestMessageHandler();
|
CountDownLatch onOpenWait = new CountDownLatch(1);
|
||||||
CompletableFuture<CoreSession> clientConnect = client.connect(clientEndpoint, serverUri);
|
TestMessageHandler clientEndpoint = new TestMessageHandler()
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public void onOpen(CoreSession coreSession, Callback callback)
|
||||||
|
{
|
||||||
|
assertDoesNotThrow(() -> onOpenWait.await(5, TimeUnit.SECONDS));
|
||||||
|
super.onOpen(coreSession, callback);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
CoreClientUpgradeRequest coreUpgrade = CoreClientUpgradeRequest.from(client, serverUri, clientEndpoint);
|
||||||
|
client.connect(coreUpgrade);
|
||||||
Socket serverSocket = server.accept();
|
Socket serverSocket = server.accept();
|
||||||
|
|
||||||
|
// Receive the upgrade request with the Socket.
|
||||||
String upgradeRequest = getRequestHeaders(serverSocket.getInputStream());
|
String upgradeRequest = getRequestHeaders(serverSocket.getInputStream());
|
||||||
assertThat(upgradeRequest, containsString("HTTP/1.1"));
|
assertThat(upgradeRequest, containsString("HTTP/1.1"));
|
||||||
assertThat(upgradeRequest, containsString("Upgrade: websocket"));
|
assertThat(upgradeRequest, containsString("Upgrade: websocket"));
|
||||||
|
@ -88,21 +101,34 @@ public class UpgradeWithLeftOverHttpBytesTest extends WebSocketTester
|
||||||
"Connection: Upgrade\n" +
|
"Connection: Upgrade\n" +
|
||||||
"Sec-WebSocket-Accept: " + getAcceptKey(upgradeRequest) + "\n" +
|
"Sec-WebSocket-Accept: " + getAcceptKey(upgradeRequest) + "\n" +
|
||||||
"\n";
|
"\n";
|
||||||
|
Frame firstFrame = new Frame(OpCode.TEXT, BufferUtil.toBuffer("first message payload"));
|
||||||
|
byte[] bytes = combineToByteArray(BufferUtil.toBuffer(upgradeResponse), generateFrame(firstFrame));
|
||||||
|
serverSocket.getOutputStream().write(bytes);
|
||||||
|
|
||||||
Frame dataFrame = new Frame(OpCode.TEXT, BufferUtil.toBuffer("first message payload"));
|
// Now we send the rest of the data.
|
||||||
|
int numFrames = 1000;
|
||||||
|
for (int i = 0; i < numFrames; i++)
|
||||||
|
{
|
||||||
|
Frame frame = new Frame(OpCode.TEXT, BufferUtil.toBuffer(Integer.toString(i)));
|
||||||
|
serverSocket.getOutputStream().write(toByteArray(frame));
|
||||||
|
}
|
||||||
Frame closeFrame = new CloseStatus(CloseStatus.NORMAL, "closed by test").toFrame();
|
Frame closeFrame = new CloseStatus(CloseStatus.NORMAL, "closed by test").toFrame();
|
||||||
|
serverSocket.getOutputStream().write(toByteArray(closeFrame));
|
||||||
|
|
||||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
// First payload sent with upgrade request, delay to ensure HttpConnection is not still reading from network.
|
||||||
baos.write(upgradeResponse.getBytes(StandardCharsets.ISO_8859_1));
|
Thread.sleep(1000);
|
||||||
BufferUtil.writeTo(generateFrame(dataFrame), baos);
|
onOpenWait.countDown();
|
||||||
BufferUtil.writeTo(generateFrame(closeFrame), baos);
|
|
||||||
serverSocket.getOutputStream().write(baos.toByteArray());
|
|
||||||
|
|
||||||
// Check the client receives upgrade response and then the two websocket frames.
|
|
||||||
CoreSession coreSession = clientConnect.get(5, TimeUnit.SECONDS);
|
|
||||||
assertNotNull(coreSession);
|
|
||||||
assertTrue(clientEndpoint.openLatch.await(5, TimeUnit.SECONDS));
|
assertTrue(clientEndpoint.openLatch.await(5, TimeUnit.SECONDS));
|
||||||
assertThat(clientEndpoint.textMessages.poll(5, TimeUnit.SECONDS), is("first message payload"));
|
assertThat(clientEndpoint.textMessages.poll(5, TimeUnit.SECONDS), is("first message payload"));
|
||||||
|
|
||||||
|
// We receive the rest of the frames all sent as separate writes.
|
||||||
|
for (int i = 0; i < numFrames; i++)
|
||||||
|
{
|
||||||
|
String msg = clientEndpoint.textMessages.poll(5, TimeUnit.SECONDS);
|
||||||
|
assertThat(msg, is(Integer.toString(i)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Closed successfully with correct status.
|
||||||
assertTrue(clientEndpoint.closeLatch.await(5, TimeUnit.SECONDS));
|
assertTrue(clientEndpoint.closeLatch.await(5, TimeUnit.SECONDS));
|
||||||
assertThat(clientEndpoint.closeStatus.getCode(), is(CloseStatus.NORMAL));
|
assertThat(clientEndpoint.closeStatus.getCode(), is(CloseStatus.NORMAL));
|
||||||
assertThat(clientEndpoint.closeStatus.getReason(), is("closed by test"));
|
assertThat(clientEndpoint.closeStatus.getReason(), is("closed by test"));
|
||||||
|
@ -131,4 +157,20 @@ public class UpgradeWithLeftOverHttpBytesTest extends WebSocketTester
|
||||||
Scanner s = new Scanner(is).useDelimiter("\r\n\r\n");
|
Scanner s = new Scanner(is).useDelimiter("\r\n\r\n");
|
||||||
return s.hasNext() ? s.next() : "";
|
return s.hasNext() ? s.next() : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
byte[] combineToByteArray(ByteBuffer... buffers) throws IOException
|
||||||
|
{
|
||||||
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
|
for (ByteBuffer bb : buffers)
|
||||||
|
{
|
||||||
|
BufferUtil.writeTo(bb, baos);
|
||||||
|
}
|
||||||
|
|
||||||
|
return baos.toByteArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
byte[] toByteArray(Frame frame)
|
||||||
|
{
|
||||||
|
return BufferUtil.toArray(generateFrame(frame));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,9 +24,13 @@ import java.time.Duration;
|
||||||
import org.eclipse.jetty.util.Callback;
|
import org.eclipse.jetty.util.Callback;
|
||||||
import org.eclipse.jetty.websocket.core.CoreSession;
|
import org.eclipse.jetty.websocket.core.CoreSession;
|
||||||
import org.eclipse.jetty.websocket.core.TestMessageHandler;
|
import org.eclipse.jetty.websocket.core.TestMessageHandler;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public class AutobahnFrameHandler extends TestMessageHandler
|
public class AutobahnFrameHandler extends TestMessageHandler
|
||||||
{
|
{
|
||||||
|
protected static final Logger LOG = LoggerFactory.getLogger(AutobahnFrameHandler.class);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onOpen(CoreSession coreSession, Callback callback)
|
public void onOpen(CoreSession coreSession, Callback callback)
|
||||||
{
|
{
|
||||||
|
@ -47,4 +51,11 @@ public class AutobahnFrameHandler extends TestMessageHandler
|
||||||
{
|
{
|
||||||
sendText(wholeMessage, callback, false);
|
sendText(wholeMessage, callback, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onError(Throwable cause, Callback callback)
|
||||||
|
{
|
||||||
|
LOG.warn("Error from AutobahnFrameHandler: {}", cause.toString());
|
||||||
|
super.onError(cause, callback);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,7 @@ import java.util.concurrent.Future;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.TimeoutException;
|
import java.util.concurrent.TimeoutException;
|
||||||
|
|
||||||
|
import org.eclipse.jetty.util.Callback;
|
||||||
import org.eclipse.jetty.util.Jetty;
|
import org.eclipse.jetty.util.Jetty;
|
||||||
import org.eclipse.jetty.util.UrlEncoded;
|
import org.eclipse.jetty.util.UrlEncoded;
|
||||||
import org.eclipse.jetty.websocket.core.CoreSession;
|
import org.eclipse.jetty.websocket.core.CoreSession;
|
||||||
|
@ -150,21 +151,20 @@ public class CoreAutobahnClient
|
||||||
this.client.start();
|
this.client.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getCaseCount() throws IOException, InterruptedException
|
public int getCaseCount() throws Exception
|
||||||
{
|
{
|
||||||
URI wsUri = baseWebsocketUri.resolve("/getCaseCount");
|
URI wsUri = baseWebsocketUri.resolve("/getCaseCount");
|
||||||
TestMessageHandler onCaseCount = new TestMessageHandler();
|
TestMessageHandler onCaseCount = new TestMessageHandler();
|
||||||
Future<CoreSession> response = client.connect(onCaseCount, wsUri);
|
CoreSession session = client.connect(onCaseCount, wsUri).get(5, TimeUnit.SECONDS);
|
||||||
|
assertTrue(onCaseCount.openLatch.await(5, TimeUnit.SECONDS));
|
||||||
|
String msg = onCaseCount.textMessages.poll(5, TimeUnit.SECONDS);
|
||||||
|
|
||||||
if (waitForUpgrade(wsUri, response))
|
// Close the connection.
|
||||||
{
|
session.close(Callback.NOOP);
|
||||||
String msg = onCaseCount.textMessages.poll(10, TimeUnit.SECONDS);
|
assertTrue(onCaseCount.closeLatch.await(5, TimeUnit.SECONDS));
|
||||||
onCaseCount.getCoreSession().abort(); // Don't expect normal close
|
|
||||||
assertTrue(onCaseCount.closeLatch.await(2, TimeUnit.SECONDS));
|
assertNotNull(msg);
|
||||||
assertNotNull(msg);
|
return Integer.decode(msg);
|
||||||
return Integer.decode(msg);
|
|
||||||
}
|
|
||||||
throw new IllegalStateException("Unable to get Case Count");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void runCaseByNumber(int caseNumber) throws IOException, InterruptedException
|
public void runCaseByNumber(int caseNumber) throws IOException, InterruptedException
|
||||||
|
|
Loading…
Reference in New Issue