Search in sources :

Example 1 with PriorityGenerator

use of org.eclipse.jetty.http2.generator.PriorityGenerator in project jetty.project by eclipse.

the class PriorityGenerateParseTest method testGenerateParseOneByteAtATime.

@Test
public void testGenerateParseOneByteAtATime() throws Exception {
    PriorityGenerator generator = new PriorityGenerator(new HeaderGenerator());
    final List<PriorityFrame> frames = new ArrayList<>();
    Parser parser = new Parser(byteBufferPool, new Parser.Listener.Adapter() {

        @Override
        public void onPriority(PriorityFrame frame) {
            frames.add(frame);
        }
    }, 4096, 8192);
    int streamId = 13;
    int parentStreamId = 17;
    int weight = 3;
    boolean exclusive = true;
    // Iterate a few times to be sure generator and parser are properly reset.
    for (int i = 0; i < 2; ++i) {
        ByteBufferPool.Lease lease = new ByteBufferPool.Lease(byteBufferPool);
        generator.generatePriority(lease, streamId, parentStreamId, weight, exclusive);
        frames.clear();
        for (ByteBuffer buffer : lease.getByteBuffers()) {
            while (buffer.hasRemaining()) {
                parser.parse(ByteBuffer.wrap(new byte[] { buffer.get() }));
            }
        }
        Assert.assertEquals(1, frames.size());
        PriorityFrame frame = frames.get(0);
        Assert.assertEquals(streamId, frame.getStreamId());
        Assert.assertEquals(parentStreamId, frame.getParentStreamId());
        Assert.assertEquals(weight, frame.getWeight());
        Assert.assertEquals(exclusive, frame.isExclusive());
    }
}
Also used : MappedByteBufferPool(org.eclipse.jetty.io.MappedByteBufferPool) ByteBufferPool(org.eclipse.jetty.io.ByteBufferPool) PriorityGenerator(org.eclipse.jetty.http2.generator.PriorityGenerator) ArrayList(java.util.ArrayList) ByteBuffer(java.nio.ByteBuffer) Parser(org.eclipse.jetty.http2.parser.Parser) HeaderGenerator(org.eclipse.jetty.http2.generator.HeaderGenerator) Test(org.junit.Test)

Example 2 with PriorityGenerator

use of org.eclipse.jetty.http2.generator.PriorityGenerator in project jetty.project by eclipse.

the class PriorityGenerateParseTest method testGenerateParse.

@Test
public void testGenerateParse() throws Exception {
    PriorityGenerator generator = new PriorityGenerator(new HeaderGenerator());
    final List<PriorityFrame> frames = new ArrayList<>();
    Parser parser = new Parser(byteBufferPool, new Parser.Listener.Adapter() {

        @Override
        public void onPriority(PriorityFrame frame) {
            frames.add(frame);
        }
    }, 4096, 8192);
    int streamId = 13;
    int parentStreamId = 17;
    int weight = 256;
    boolean exclusive = true;
    // Iterate a few times to be sure generator and parser are properly reset.
    for (int i = 0; i < 2; ++i) {
        ByteBufferPool.Lease lease = new ByteBufferPool.Lease(byteBufferPool);
        generator.generatePriority(lease, streamId, parentStreamId, weight, exclusive);
        frames.clear();
        for (ByteBuffer buffer : lease.getByteBuffers()) {
            while (buffer.hasRemaining()) {
                parser.parse(buffer);
            }
        }
    }
    Assert.assertEquals(1, frames.size());
    PriorityFrame frame = frames.get(0);
    Assert.assertEquals(streamId, frame.getStreamId());
    Assert.assertEquals(parentStreamId, frame.getParentStreamId());
    Assert.assertEquals(weight, frame.getWeight());
    Assert.assertEquals(exclusive, frame.isExclusive());
}
Also used : MappedByteBufferPool(org.eclipse.jetty.io.MappedByteBufferPool) ByteBufferPool(org.eclipse.jetty.io.ByteBufferPool) PriorityGenerator(org.eclipse.jetty.http2.generator.PriorityGenerator) ArrayList(java.util.ArrayList) ByteBuffer(java.nio.ByteBuffer) Parser(org.eclipse.jetty.http2.parser.Parser) HeaderGenerator(org.eclipse.jetty.http2.generator.HeaderGenerator) Test(org.junit.Test)

Aggregations

ByteBuffer (java.nio.ByteBuffer)2 ArrayList (java.util.ArrayList)2 HeaderGenerator (org.eclipse.jetty.http2.generator.HeaderGenerator)2 PriorityGenerator (org.eclipse.jetty.http2.generator.PriorityGenerator)2 Parser (org.eclipse.jetty.http2.parser.Parser)2 ByteBufferPool (org.eclipse.jetty.io.ByteBufferPool)2 MappedByteBufferPool (org.eclipse.jetty.io.MappedByteBufferPool)2 Test (org.junit.Test)2