use of org.eclipse.jetty.websocket.common.test.UnitParser in project jetty.project by eclipse.
the class RFC6455ExamplesParserTest method testSingleUnmaskedPingRequest.
@Test
public void testSingleUnmaskedPingRequest() {
ByteBuffer buf = ByteBuffer.allocate(16);
// Raw bytes as found in RFC 6455, Section 5.7 - Examples
// Unmasked Ping request
buf.put(new byte[] { (byte) 0x89, 0x05, 0x48, 0x65, 0x6c, 0x6c, 0x6f });
buf.flip();
WebSocketPolicy policy = new WebSocketPolicy(WebSocketBehavior.CLIENT);
Parser parser = new UnitParser(policy);
IncomingFramesCapture capture = new IncomingFramesCapture();
parser.setIncomingFramesHandler(capture);
parser.parse(buf);
capture.assertNoErrors();
capture.assertHasFrame(OpCode.PING, 1);
WebSocketFrame ping = capture.getFrames().poll();
String actual = BufferUtil.toUTF8String(ping.getPayload());
Assert.assertThat("PingFrame.payload", actual, is("Hello"));
}
use of org.eclipse.jetty.websocket.common.test.UnitParser in project jetty.project by eclipse.
the class TestABCase4 method testParserNonControlOpCode4WithPayloadCase4_1_2.
@Test
public void testParserNonControlOpCode4WithPayloadCase4_1_2() throws Exception {
ByteBuffer expected = ByteBuffer.allocate(32);
expected.put(new byte[] { (byte) 0x84, 0x01, 0x00 });
expected.flip();
IncomingFramesCapture capture = new IncomingFramesCapture();
try (StacklessLogging logging = new StacklessLogging(Parser.class)) {
Parser parser = new UnitParser(policy);
parser.setIncomingFramesHandler(capture);
try {
parser.parse(expected);
} catch (ProtocolException ignore) {
// ignore
}
}
Assert.assertEquals("error on undefined opcode", 1, capture.getErrorCount(WebSocketException.class));
Throwable known = capture.getErrors().poll();
Assert.assertTrue("undefined option should be in message", known.getMessage().contains("Unknown opcode: 4"));
}
use of org.eclipse.jetty.websocket.common.test.UnitParser in project jetty.project by eclipse.
the class TestABCase7_3 method testCase7_3_2Parse1BytePayloadClose.
@Test
public void testCase7_3_2Parse1BytePayloadClose() {
ByteBuffer expected = Hex.asByteBuffer("880100");
UnitParser parser = new UnitParser(policy);
IncomingFramesCapture capture = new IncomingFramesCapture();
parser.setIncomingFramesHandler(capture);
parser.parseQuietly(expected);
Assert.assertEquals("error on invalid close payload", 1, capture.getErrorCount(ProtocolException.class));
ProtocolException known = (ProtocolException) capture.getErrors().poll();
Assert.assertThat("Payload.message", known.getMessage(), containsString("Invalid close frame payload length"));
}
use of org.eclipse.jetty.websocket.common.test.UnitParser in project jetty.project by eclipse.
the class TestABCase7_3 method testCase7_3_6ParseCloseWithInvalidStatusReason.
@Test
public void testCase7_3_6ParseCloseWithInvalidStatusReason() {
byte[] messageBytes = new byte[124];
Arrays.fill(messageBytes, (byte) '*');
ByteBuffer expected = ByteBuffer.allocate(256);
byte b;
// fin + op
b = 0x00;
// fin on
b |= 0x80;
// close
b |= 0x08;
expected.put(b);
// mask + len
b = 0x00;
// no masking
b |= 0x00;
// 2 byte len
b |= 0x7E;
expected.put(b);
// 2 byte len
expected.putChar((char) (messageBytes.length + 2));
// payload
// status code
expected.putShort((short) 1000);
// reason
expected.put(messageBytes);
expected.flip();
UnitParser parser = new UnitParser(policy);
IncomingFramesCapture capture = new IncomingFramesCapture();
parser.setIncomingFramesHandler(capture);
parser.parseQuietly(expected);
Assert.assertEquals("error on invalid close payload", 1, capture.getErrorCount(ProtocolException.class));
ProtocolException known = (ProtocolException) capture.getErrors().poll();
Assert.assertThat("Payload.message", known.getMessage(), containsString("Invalid control frame payload length"));
}
use of org.eclipse.jetty.websocket.common.test.UnitParser in project jetty.project by eclipse.
the class TestABCase1_2 method testParse65535ByteBinaryCase1_2_6.
@Test
public void testParse65535ByteBinaryCase1_2_6() {
int length = 65535;
ByteBuffer expected = ByteBuffer.allocate(length + 5);
expected.put(new byte[] { (byte) 0x82 });
// no masking
byte b = 0x00;
b |= 0x7E;
expected.put(b);
expected.put(new byte[] { (byte) 0xff, (byte) 0xff });
for (int i = 0; i < length; ++i) {
expected.put("*".getBytes());
}
expected.flip();
WebSocketPolicy policy = new WebSocketPolicy(WebSocketBehavior.CLIENT);
policy.setMaxBinaryMessageSize(length);
Parser parser = new UnitParser(policy);
IncomingFramesCapture capture = new IncomingFramesCapture();
parser.setIncomingFramesHandler(capture);
parser.parse(expected);
capture.assertNoErrors();
capture.assertHasFrame(OpCode.BINARY, 1);
Frame pActual = capture.getFrames().poll();
Assert.assertThat("BinaryFrame.payloadLength", pActual.getPayloadLength(), is(length));
// Assert.assertEquals("BinaryFrame.payload",length,pActual.getPayloadData().length);
}
Aggregations