Home / Function/ testPseudoHeaderFollowsNormalHeader() — netty Function Reference

testPseudoHeaderFollowsNormalHeader() — netty Function Reference

Architecture documentation for the testPseudoHeaderFollowsNormalHeader() function in Http3HeadersSinkTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  69000419_a88e_e2ad_587c_7dacf15633f1["testPseudoHeaderFollowsNormalHeader()"]
  44533ac4_926b_9689_4e92_561270ec7a60["Http3HeadersSinkTest"]
  69000419_a88e_e2ad_587c_7dacf15633f1 -->|defined in| 44533ac4_926b_9689_4e92_561270ec7a60
  style 69000419_a88e_e2ad_587c_7dacf15633f1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3HeadersSinkTest.java lines 44–50

    @Test
    public void testPseudoHeaderFollowsNormalHeader() {
        Http3HeadersSink sink = new Http3HeadersSink(new DefaultHttp3Headers(), 512, true, false);
        sink.accept("name", "value");
        sink.accept(Http3Headers.PseudoHeaderName.AUTHORITY.value(), "value");
        assertThrows(Http3HeadersValidationException.class, () -> sink.finish());
    }

Domain

Subdomains

Frequently Asked Questions

What does testPseudoHeaderFollowsNormalHeader() do?
testPseudoHeaderFollowsNormalHeader() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3HeadersSinkTest.java.
Where is testPseudoHeaderFollowsNormalHeader() defined?
testPseudoHeaderFollowsNormalHeader() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3HeadersSinkTest.java at line 44.

Analyze Your Own Codebase

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

Try Supermodel Free