Search in sources :

Example 26 with Parser

use of org.eclipse.jetty.websocket.common.Parser in project jetty.project by eclipse.

the class TestABCase1_2 method testParseEmptyBinaryCase1_2_1.

@Test
public void testParseEmptyBinaryCase1_2_1() {
    ByteBuffer expected = ByteBuffer.allocate(5);
    expected.put(new byte[] { (byte) 0x82, (byte) 0x00 });
    expected.flip();
    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(0));
// Assert.assertNull("BinaryFrame.payload",pActual.getPayloadData());
}
Also used : Frame(org.eclipse.jetty.websocket.api.extensions.Frame) BinaryFrame(org.eclipse.jetty.websocket.common.frames.BinaryFrame) WebSocketFrame(org.eclipse.jetty.websocket.common.WebSocketFrame) IncomingFramesCapture(org.eclipse.jetty.websocket.common.test.IncomingFramesCapture) UnitParser(org.eclipse.jetty.websocket.common.test.UnitParser) ByteBuffer(java.nio.ByteBuffer) Parser(org.eclipse.jetty.websocket.common.Parser) UnitParser(org.eclipse.jetty.websocket.common.test.UnitParser) Test(org.junit.Test)

Example 27 with Parser

use of org.eclipse.jetty.websocket.common.Parser in project jetty.project by eclipse.

the class DeflateFrameExtensionTest method assertIncoming.

private void assertIncoming(byte[] raw, String... expectedTextDatas) {
    WebSocketPolicy policy = WebSocketPolicy.newClientPolicy();
    DeflateFrameExtension ext = new DeflateFrameExtension();
    ext.setBufferPool(bufferPool);
    ext.setPolicy(policy);
    ExtensionConfig config = ExtensionConfig.parse("deflate-frame");
    ext.setConfig(config);
    // Setup capture of incoming frames
    IncomingFramesCapture capture = new IncomingFramesCapture();
    // Wire up stack
    ext.setNextIncomingFrames(capture);
    Parser parser = new UnitParser(policy);
    parser.configureFromExtensions(Collections.singletonList(ext));
    parser.setIncomingFramesHandler(ext);
    parser.parse(ByteBuffer.wrap(raw));
    int len = expectedTextDatas.length;
    capture.assertFrameCount(len);
    capture.assertHasFrame(OpCode.TEXT, len);
    int i = 0;
    for (WebSocketFrame actual : capture.getFrames()) {
        String prefix = "Frame[" + i + "]";
        Assert.assertThat(prefix + ".opcode", actual.getOpCode(), is(OpCode.TEXT));
        Assert.assertThat(prefix + ".fin", actual.isFin(), is(true));
        // RSV1 should be unset at this point
        Assert.assertThat(prefix + ".rsv1", actual.isRsv1(), is(false));
        Assert.assertThat(prefix + ".rsv2", actual.isRsv2(), is(false));
        Assert.assertThat(prefix + ".rsv3", actual.isRsv3(), is(false));
        ByteBuffer expected = BufferUtil.toBuffer(expectedTextDatas[i], StandardCharsets.UTF_8);
        Assert.assertThat(prefix + ".payloadLength", actual.getPayloadLength(), is(expected.remaining()));
        ByteBufferAssert.assertEquals(prefix + ".payload", expected, actual.getPayload().slice());
        i++;
    }
}
Also used : WebSocketPolicy(org.eclipse.jetty.websocket.api.WebSocketPolicy) ExtensionConfig(org.eclipse.jetty.websocket.api.extensions.ExtensionConfig) IncomingFramesCapture(org.eclipse.jetty.websocket.common.test.IncomingFramesCapture) WebSocketFrame(org.eclipse.jetty.websocket.common.WebSocketFrame) UnitParser(org.eclipse.jetty.websocket.common.test.UnitParser) ByteBuffer(java.nio.ByteBuffer) Parser(org.eclipse.jetty.websocket.common.Parser) UnitParser(org.eclipse.jetty.websocket.common.test.UnitParser)

Aggregations

ByteBuffer (java.nio.ByteBuffer)27 Parser (org.eclipse.jetty.websocket.common.Parser)27 IncomingFramesCapture (org.eclipse.jetty.websocket.common.test.IncomingFramesCapture)27 UnitParser (org.eclipse.jetty.websocket.common.test.UnitParser)27 Test (org.junit.Test)26 Frame (org.eclipse.jetty.websocket.api.extensions.Frame)22 WebSocketFrame (org.eclipse.jetty.websocket.common.WebSocketFrame)19 BinaryFrame (org.eclipse.jetty.websocket.common.frames.BinaryFrame)7 TextFrame (org.eclipse.jetty.websocket.common.frames.TextFrame)7 WebSocketPolicy (org.eclipse.jetty.websocket.api.WebSocketPolicy)5 StacklessLogging (org.eclipse.jetty.util.log.StacklessLogging)4 ProtocolException (org.eclipse.jetty.websocket.api.ProtocolException)4 WebSocketException (org.eclipse.jetty.websocket.api.WebSocketException)4 CloseFrame (org.eclipse.jetty.websocket.common.frames.CloseFrame)4 PingFrame (org.eclipse.jetty.websocket.common.frames.PingFrame)4 ExtensionConfig (org.eclipse.jetty.websocket.api.extensions.ExtensionConfig)1 Matchers.containsString (org.hamcrest.Matchers.containsString)1