Home / Function/ testConnectPathDoesNotExist() — netty Function Reference

testConnectPathDoesNotExist() — netty Function Reference

Architecture documentation for the testConnectPathDoesNotExist() function in EpollDomainDatagramPathTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  24553ab8_cc9a_fd6e_3de0_e9b268f25356["testConnectPathDoesNotExist()"]
  70a48e6a_d264_da35_e8d5_562eb3a962d4["EpollDomainDatagramPathTest"]
  24553ab8_cc9a_fd6e_3de0_e9b268f25356 -->|defined in| 70a48e6a_d264_da35_e8d5_562eb3a962d4
  style 24553ab8_cc9a_fd6e_3de0_e9b268f25356 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollDomainDatagramPathTest.java lines 37–51

    @Test
    void testConnectPathDoesNotExist(TestInfo testInfo) throws Throwable {
        run(testInfo, new Runner<Bootstrap>() {
            @Override
            public void run(Bootstrap bootstrap) {
                try {
                    bootstrap.handler(new ChannelInboundHandlerAdapter())
                             .connect(EpollSocketTestPermutation.newDomainSocketAddress()).sync().channel();
                    fail("Expected FileNotFoundException");
                } catch (Exception e) {
                    assertTrue(e instanceof FileNotFoundException);
                }
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testConnectPathDoesNotExist() do?
testConnectPathDoesNotExist() is a function in the netty codebase, defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollDomainDatagramPathTest.java.
Where is testConnectPathDoesNotExist() defined?
testConnectPathDoesNotExist() is defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollDomainDatagramPathTest.java at line 37.

Analyze Your Own Codebase

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

Try Supermodel Free