ivmaykov commented on a change in pull request #728: ZOOKEEPER-3160: Custom
User SSLContext
URL: https://github.com/apache/zookeeper/pull/728#discussion_r249221188
##########
File path:
zookeeper-server/src/test/java/org/apache/zookeeper/common/X509UtilTest.java
##########
@@ -403,6 +407,32 @@ public void
testGetSslHandshakeDetectionTimeoutMillisProperty() {
}
}
+ @Test(expected = X509Exception.SSLContextException.class)
+ public void testCreateSSLContext_invalidCustomSSLContextClass() throws
Exception {
+ ZKConfig zkConfig = new ZKConfig();
+ ClientX509Util clientX509Util = new ClientX509Util();
+
zkConfig.setProperty(clientX509Util.getSslContextSupplierClassProperty(),
String.class.getCanonicalName());
+ clientX509Util.createSSLContext(zkConfig);
+ }
+
+ @Test
+ public void testCreateSSLContext_validNullCustomSSLContextClass() throws
X509Exception.SSLContextException {
+ ZKConfig zkConfig = new ZKConfig();
+ ClientX509Util clientX509Util = new ClientX509Util();
+
zkConfig.setProperty(clientX509Util.getSslContextSupplierClassProperty(),
NullSslContextSupplier.class.getName());
+ final SSLContext sslContext =
clientX509Util.createSSLContext(zkConfig);
+ assertNull(sslContext);
Review comment:
nit: rest of the file doesn't use static import and calls
`Assert.assert*()`, maybe follow precedent?
----------------------------------------------------------------
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