Home / Function/ testHttp3HeadersFrame() — netty Function Reference

testHttp3HeadersFrame() — netty Function Reference

Architecture documentation for the testHttp3HeadersFrame() function in Http3FrameCodecTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fc310149_9a44_5921_5e79_c1eb5e8637be["testHttp3HeadersFrame()"]
  5690f307_9248_ec29_2c84_6839dbcdc179["Http3FrameCodecTest"]
  fc310149_9a44_5921_5e79_c1eb5e8637be -->|defined in| 5690f307_9248_ec29_2c84_6839dbcdc179
  f172e438_95aa_794a_73ee_b2131dfe9d18["setUp()"]
  fc310149_9a44_5921_5e79_c1eb5e8637be -->|calls| f172e438_95aa_794a_73ee_b2131dfe9d18
  0371e2a1_748f_2fa3_507f_b4a407f027d6["addRequestHeaders()"]
  fc310149_9a44_5921_5e79_c1eb5e8637be -->|calls| 0371e2a1_748f_2fa3_507f_b4a407f027d6
  b1ff5de9_9ca0_35d9_9bc2_5d0d9a917169["testFrameEncodedAndDecoded()"]
  fc310149_9a44_5921_5e79_c1eb5e8637be -->|calls| b1ff5de9_9ca0_35d9_9bc2_5d0d9a917169
  style fc310149_9a44_5921_5e79_c1eb5e8637be fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java lines 286–294

    @ParameterizedTest(name = "{index}: fragmented = {0}, maxBlockedStreams = {1}, delayQpackStreams = {2}")
    @MethodSource("data")
    public void testHttp3HeadersFrame(
            boolean fragmented, int maxBlockedStreams, boolean delayQpackStreams) throws Exception {
        setUp(maxBlockedStreams, delayQpackStreams);
        Http3HeadersFrame headersFrame = new DefaultHttp3HeadersFrame();
        addRequestHeaders(headersFrame.headers());
        testFrameEncodedAndDecoded(fragmented, maxBlockedStreams, delayQpackStreams, headersFrame);
    }

Domain

Subdomains

Frequently Asked Questions

What does testHttp3HeadersFrame() do?
testHttp3HeadersFrame() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java.
Where is testHttp3HeadersFrame() defined?
testHttp3HeadersFrame() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java at line 286.
What does testHttp3HeadersFrame() call?
testHttp3HeadersFrame() calls 3 function(s): addRequestHeaders, setUp, testFrameEncodedAndDecoded.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free