ivmaykov commented on a change in pull request #728: ZOOKEEPER-3160: Custom 
User SSLContext
URL: https://github.com/apache/zookeeper/pull/728#discussion_r248513820
 
 

 ##########
 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.");
+        } catch (X509Exception.SSLContextException e) {
+            
assertTrue(e.getMessage().contains(clientX509Util.getSslClientContextProperty()));
+        }
+    }
+    @Test
+    public void testCreateSSLContext_validCustomSSLContextClass() throws 
X509Exception.SSLContextException {
+        ZKConfig zkConfig = new ZKConfig();
+        ClientX509Util clientX509Util = new ClientX509Util();
+        zkConfig.setProperty(clientX509Util.getSslClientContextProperty(), 
ZKTestClientSSLContext.class.getCanonicalName());
+        final SSLContext sslContext = 
clientX509Util.createSSLContext(zkConfig);
+        assertNull(sslContext);
+    }
+
 
 Review comment:
   I would also add an inner class to this test that returns a non-null context 
(can be a singleton), and add a test case that exercises that code path.

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to