testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() — netty Function Reference
Architecture documentation for the testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() function in JdkSslEngineTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a44ad743_f758_f3bc_6345_3c2e62b59be3["testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure()"] 30adda7f_4d88_ce9b_59a8_bf86122e30b1["JdkSslEngineTest"] a44ad743_f758_f3bc_6345_3c2e62b59be3 -->|defined in| 30adda7f_4d88_ce9b_59a8_bf86122e30b1 26c9d431_d7e9_3f0f_c077_a396cd607cb3["runTest()"] a44ad743_f758_f3bc_6345_3c2e62b59be3 -->|calls| 26c9d431_d7e9_3f0f_c077_a396cd607cb3 style a44ad743_f758_f3bc_6345_3c2e62b59be3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/JdkSslEngineTest.java lines 161–177
@MethodSource("newJdkParams")
@ParameterizedTest
public void testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure(JdkSSLEngineTestParam param) throws Exception {
try {
param.providerType.activate(this);
ApplicationProtocolConfig clientApn = acceptingNegotiator(param.providerType.protocol(),
PREFERRED_APPLICATION_LEVEL_PROTOCOL);
ApplicationProtocolConfig serverApn = acceptingNegotiator(param.providerType.protocol(),
APPLICATION_LEVEL_PROTOCOL_NOT_COMPATIBLE);
setupHandlers(param, serverApn, clientApn);
runTest(null);
} catch (SkipTestException e) {
// ALPN availability is dependent on the java version. If ALPN is not available because of
// java version incompatibility don't fail the test, but instead just skip the test
throw new TestAbortedException("Not expected", e);
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() do?
testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/JdkSslEngineTest.java.
Where is testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() defined?
testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() is defined in handler/src/test/java/io/netty/handler/ssl/JdkSslEngineTest.java at line 161.
What does testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() call?
testTlsExtensionNoCompatibleProtocolsNoHandshakeFailure() calls 1 function(s): runTest.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free