Jokser commented on a change in pull request #6799: IGNITE-11094 Add SSL 
support for ignite zookeeper SPI
URL: https://github.com/apache/ignite/pull/6799#discussion_r323839169
 
 

 ##########
 File path: 
modules/zookeeper/src/test/java/org/apache/ignite/spi/discovery/zk/internal/ZookeeperDiscoverySpiSslTest.java
 ##########
 @@ -0,0 +1,109 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite.spi.discovery.zk.internal;
+
+import java.nio.file.Paths;
+import java.util.function.Function;
+import org.apache.ignite.IgniteCheckedException;
+import org.apache.ignite.internal.IgniteEx;
+import org.apache.ignite.internal.util.typedef.internal.U;
+import org.apache.ignite.testframework.GridTestUtils;
+import org.junit.Test;
+
+/**
+ * Base class for Zookeeper SPI discovery tests in this package. It is 
intended to provide common overrides for
+ * superclass methods to be shared by all subclasses.
+ */
+public class ZookeeperDiscoverySpiSslTest extends 
ZookeeperDiscoverySpiTestBase {
+    /** Ignite home. */
+    private static final String IGNITE_HOME = U.getIgniteHome();
+
+    /** Resource path. */
+    private static final Function<String, String> rsrcPath = rsrc -> Paths.get(
+        IGNITE_HOME == null ? "." : IGNITE_HOME,
+        "modules",
+        "core",
+        "src",
+        "test",
+        "resources",
+        rsrc
+    ).toString();
+
+    /** {@inheritDoc} */
+    @Override protected void beforeTest() throws Exception {
+        sslEnabled = true;
+
+        setupSystemProperties();
+
+        super.beforeTest();
+    }
+
+    /**
+     * @throws Exception if failed.
+     */
+    @Test
+    public void testIgniteSsl() throws Exception {
+        System.setProperty("zookeeper.clientCnxnSocket", 
"org.apache.zookeeper.ClientCnxnSocketNetty");
+
+        IgniteEx ignite = startGrids(2);
+
+        assertEquals(2, ignite.cluster().topologyVersion());
+    }
+
+    /**
+     * @throws Exception if failed.
+     */
+    @Test
+    public void testIgniteNoSsl() throws Exception {
+        sslEnabled = false;
+
+        System.setProperty("zookeeper.clientCnxnSocket", 
"org.apache.zookeeper.ClientCnxnSocketNetty");
+
+        GridTestUtils.assertThrowsAnyCause(log,
+            () -> startGrids(2),
+            IgniteCheckedException.class,
 
 Review comment:
   What if we use both SSL on client and server, but a client has incompatible 
with server nodes keyStore/trustStore? Will it result in the same behavior? I 
think we need to add a test for that also. Try to up a node in separate JVM (It 
can be done overriding method `isMultiJvm` to `true` and adding client system 
properties overriding method `additionalRemoteJvmArgs`)
   I think we need to propagate in exception a message that connection was not 
established and also if system property indicates that SSL is enabled exists we 
need to add to the exception a hint to check SSL configuration.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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