Search in sources :

Example 6 with PongFrame

use of org.eclipse.jetty.websocket.common.frames.PongFrame in project jetty.project by eclipse.

the class TestABCase5 method testCase5_6.

/**
     * Send text fragmented in 2 packets, with ping between them
     * @throws Exception on test failure
     */
@Test
public void testCase5_6() throws Exception {
    List<WebSocketFrame> send = new ArrayList<>();
    send.add(new TextFrame().setPayload("hello, ").setFin(false));
    send.add(new PingFrame().setPayload("ping"));
    send.add(new ContinuationFrame().setPayload("world").setFin(true));
    send.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    List<WebSocketFrame> expect = new ArrayList<>();
    expect.add(new PongFrame().setPayload("ping"));
    expect.add(new TextFrame().setPayload("hello, world"));
    expect.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    try (Fuzzer fuzzer = new Fuzzer(this);
        StacklessLogging supress = new StacklessLogging(Parser.class)) {
        fuzzer.connect();
        fuzzer.setSendMode(Fuzzer.SendMode.BULK);
        fuzzer.send(send);
        fuzzer.expect(expect);
    }
}
Also used : PongFrame(org.eclipse.jetty.websocket.common.frames.PongFrame) Fuzzer(org.eclipse.jetty.websocket.common.test.Fuzzer) PingFrame(org.eclipse.jetty.websocket.common.frames.PingFrame) ArrayList(java.util.ArrayList) TextFrame(org.eclipse.jetty.websocket.common.frames.TextFrame) WebSocketFrame(org.eclipse.jetty.websocket.common.WebSocketFrame) ContinuationFrame(org.eclipse.jetty.websocket.common.frames.ContinuationFrame) StacklessLogging(org.eclipse.jetty.util.log.StacklessLogging) CloseInfo(org.eclipse.jetty.websocket.common.CloseInfo) Test(org.junit.Test)

Example 7 with PongFrame

use of org.eclipse.jetty.websocket.common.frames.PongFrame in project jetty.project by eclipse.

the class TestABCase2 method testCase2_1.

/**
     * Ping without payload
     * @throws Exception on test failure
     */
@Test
public void testCase2_1() throws Exception {
    WebSocketFrame send = new PingFrame();
    WebSocketFrame expect = new PongFrame();
    try (Fuzzer fuzzer = new Fuzzer(this)) {
        fuzzer.connect();
        fuzzer.setSendMode(Fuzzer.SendMode.BULK);
        fuzzer.send(send);
        fuzzer.expect(expect);
    }
}
Also used : PongFrame(org.eclipse.jetty.websocket.common.frames.PongFrame) Fuzzer(org.eclipse.jetty.websocket.common.test.Fuzzer) PingFrame(org.eclipse.jetty.websocket.common.frames.PingFrame) WebSocketFrame(org.eclipse.jetty.websocket.common.WebSocketFrame) Test(org.junit.Test)

Example 8 with PongFrame

use of org.eclipse.jetty.websocket.common.frames.PongFrame in project jetty.project by eclipse.

the class TestABCase2 method testCase2_3.

/**
     * Ping with small binary (non-utf8) payload
     * @throws Exception on test failure
     */
@Test
public void testCase2_3() throws Exception {
    byte[] payload = new byte[] { 0x00, (byte) 0xFF, (byte) 0xFE, (byte) 0xFD, (byte) 0xFC, (byte) 0xFB, 0x00, (byte) 0xFF };
    List<WebSocketFrame> send = new ArrayList<>();
    send.add(new PingFrame().setPayload(payload));
    send.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    List<WebSocketFrame> expect = new ArrayList<>();
    expect.add(new PongFrame().setPayload(copyOf(payload)));
    expect.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    try (Fuzzer fuzzer = new Fuzzer(this)) {
        fuzzer.connect();
        fuzzer.setSendMode(Fuzzer.SendMode.BULK);
        fuzzer.send(send);
        fuzzer.expect(expect);
    }
}
Also used : PongFrame(org.eclipse.jetty.websocket.common.frames.PongFrame) Fuzzer(org.eclipse.jetty.websocket.common.test.Fuzzer) PingFrame(org.eclipse.jetty.websocket.common.frames.PingFrame) ArrayList(java.util.ArrayList) WebSocketFrame(org.eclipse.jetty.websocket.common.WebSocketFrame) CloseInfo(org.eclipse.jetty.websocket.common.CloseInfo) Test(org.junit.Test)

Example 9 with PongFrame

use of org.eclipse.jetty.websocket.common.frames.PongFrame in project jetty.project by eclipse.

the class TestABCase2 method testCase2_7.

/**
     * Unsolicited pong frame without payload
     * @throws Exception on test failure
     */
@Test
public void testCase2_7() throws Exception {
    List<WebSocketFrame> send = new ArrayList<>();
    // unsolicited pong
    send.add(new PongFrame());
    send.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    List<WebSocketFrame> expect = new ArrayList<>();
    expect.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    try (Fuzzer fuzzer = new Fuzzer(this)) {
        fuzzer.connect();
        fuzzer.setSendMode(Fuzzer.SendMode.BULK);
        fuzzer.send(send);
        fuzzer.expect(expect);
    }
}
Also used : PongFrame(org.eclipse.jetty.websocket.common.frames.PongFrame) Fuzzer(org.eclipse.jetty.websocket.common.test.Fuzzer) ArrayList(java.util.ArrayList) WebSocketFrame(org.eclipse.jetty.websocket.common.WebSocketFrame) CloseInfo(org.eclipse.jetty.websocket.common.CloseInfo) Test(org.junit.Test)

Example 10 with PongFrame

use of org.eclipse.jetty.websocket.common.frames.PongFrame in project jetty.project by eclipse.

the class TestABCase2 method testCase2_8.

/**
     * Unsolicited pong frame with basic payload
     * @throws Exception on test failure
     */
@Test
public void testCase2_8() throws Exception {
    List<WebSocketFrame> send = new ArrayList<>();
    // unsolicited pong
    send.add(new PongFrame().setPayload("unsolicited"));
    send.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    List<WebSocketFrame> expect = new ArrayList<>();
    expect.add(new CloseInfo(StatusCode.NORMAL).asFrame());
    try (Fuzzer fuzzer = new Fuzzer(this)) {
        fuzzer.connect();
        fuzzer.setSendMode(Fuzzer.SendMode.BULK);
        fuzzer.send(send);
        fuzzer.expect(expect);
    }
}
Also used : PongFrame(org.eclipse.jetty.websocket.common.frames.PongFrame) Fuzzer(org.eclipse.jetty.websocket.common.test.Fuzzer) ArrayList(java.util.ArrayList) WebSocketFrame(org.eclipse.jetty.websocket.common.WebSocketFrame) CloseInfo(org.eclipse.jetty.websocket.common.CloseInfo) Test(org.junit.Test)

Aggregations

PongFrame (org.eclipse.jetty.websocket.common.frames.PongFrame)24 Test (org.junit.Test)21 CloseInfo (org.eclipse.jetty.websocket.common.CloseInfo)19 PingFrame (org.eclipse.jetty.websocket.common.frames.PingFrame)19 ArrayList (java.util.ArrayList)18 WebSocketFrame (org.eclipse.jetty.websocket.common.WebSocketFrame)17 Fuzzer (org.eclipse.jetty.websocket.common.test.Fuzzer)17 ContinuationFrame (org.eclipse.jetty.websocket.common.frames.ContinuationFrame)9 TextFrame (org.eclipse.jetty.websocket.common.frames.TextFrame)9 StacklessLogging (org.eclipse.jetty.util.log.StacklessLogging)7 ByteBuffer (java.nio.ByteBuffer)3 ListenerPingPongSocket (examples.ListenerPingPongSocket)2 BinaryFrame (org.eclipse.jetty.websocket.common.frames.BinaryFrame)2 CloseFrame (org.eclipse.jetty.websocket.common.frames.CloseFrame)2 CloseableLocalWebSocketSession (org.eclipse.jetty.websocket.common.io.CloseableLocalWebSocketSession)2 LocalWebSocketSession (org.eclipse.jetty.websocket.common.io.LocalWebSocketSession)2 Slow (org.eclipse.jetty.toolchain.test.annotation.Slow)1 ProtocolException (org.eclipse.jetty.websocket.api.ProtocolException)1 IncomingFramesCapture (org.eclipse.jetty.websocket.common.test.IncomingFramesCapture)1 UnitParser (org.eclipse.jetty.websocket.common.test.UnitParser)1