Home / Function/ testValidTypeOutbound() — netty Function Reference

testValidTypeOutbound() — netty Function Reference

Architecture documentation for the testValidTypeOutbound() function in AbstractHttp3FrameTypeValidationHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  da93f4ee_4626_e558_cc5e_08ed25712141["testValidTypeOutbound()"]
  31f14ae0_7748_87a0_a9e5_5f2bdd8e1c2e["AbstractHttp3FrameTypeValidationHandlerTest"]
  da93f4ee_4626_e558_cc5e_08ed25712141 -->|defined in| 31f14ae0_7748_87a0_a9e5_5f2bdd8e1c2e
  66d22a34_2aa1_c0de_9f06_f8a33ee659e3["setUp()"]
  da93f4ee_4626_e558_cc5e_08ed25712141 -->|calls| 66d22a34_2aa1_c0de_9f06_f8a33ee659e3
  8ae272ad_e5c5_65d7_1d45_37e20121d0ca["newValidFrames()"]
  da93f4ee_4626_e558_cc5e_08ed25712141 -->|calls| 8ae272ad_e5c5_65d7_1d45_37e20121d0ca
  style da93f4ee_4626_e558_cc5e_08ed25712141 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/AbstractHttp3FrameTypeValidationHandlerTest.java lines 110–123

    @ParameterizedTest(name = "{index}: server = {0}")
    @MethodSource("data")
    public void testValidTypeOutbound(boolean server) throws Exception {
        assumeTrue(isOutbound);
        setUp(server);
        final EmbeddedQuicStreamChannel channel = newStream(defaultStreamType, newHandler(server));
        List<T> validFrames = newValidFrames();
        for (T valid : validFrames) {
            assertTrue(channel.writeOutbound(valid));
            T read = channel.readOutbound();
            assertFrameSame(valid, read);
        }
        assertFalse(channel.finish());
    }

Domain

Subdomains

Frequently Asked Questions

What does testValidTypeOutbound() do?
testValidTypeOutbound() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/AbstractHttp3FrameTypeValidationHandlerTest.java.
Where is testValidTypeOutbound() defined?
testValidTypeOutbound() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/AbstractHttp3FrameTypeValidationHandlerTest.java at line 110.
What does testValidTypeOutbound() call?
testValidTypeOutbound() calls 2 function(s): newValidFrames, setUp.

Analyze Your Own Codebase

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

Try Supermodel Free