arankin-irl commented on a change in pull request #728: ZOOKEEPER-3160: Custom
User SSLContext
URL: https://github.com/apache/zookeeper/pull/728#discussion_r248803849
##########
File path:
zookeeper-server/src/test/java/org/apache/zookeeper/common/X509UtilTest.java
##########
@@ -389,6 +393,27 @@ public void
testGetSslHandshakeDetectionTimeoutMillisProperty() {
}
}
+ @Test
+ public void testCreateSSLContext_invalidCustomSSLContextClass() {
+ ZKConfig zkConfig = new ZKConfig();
+ ClientX509Util clientX509Util = new ClientX509Util();
+ zkConfig.setProperty(clientX509Util.getSslClientContextProperty(),
String.class.getCanonicalName());
+ try {
+ clientX509Util.createSSLContext(zkConfig);
+ fail("SSLContextException expected.");
Review comment:
Yep, I'll have that changed.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services