valepakh commented on code in PR #1779:
URL: https://github.com/apache/ignite-3/pull/1779#discussion_r1135318654


##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/ssl/ItSslTest.java:
##########
@@ -250,6 +253,148 @@ void jdbcCanConnectWithSsl() throws SQLException {
         }
     }
 
+    @Nested
+    @DisplayName("Given SSL enabled on the cluster and specific cipher 
enabled")
+    class ClusterWithSslCustomCipher {
+
+        @Language("JSON")
+        String sslEnabledWithCipherBoostrapConfig = "{\n"
+                + "  network: {\n"
+                + "    ssl : {"
+                + "      enabled: true,\n"
+                + "      ciphers: TLS_AES_256_GCM_SHA384,\n"
+                + "      trustStore: {\n"
+                + "        password: \"" + password + "\","
+                + "        path: \"" + escapeWindowsPath(trustStorePath) + "\""
+                + "      },\n"
+                + "      keyStore: {\n"
+                + "        password: \"" + password + "\","
+                + "        path: \"" + escapeWindowsPath(keyStorePath) + "\""
+                + "      }\n"
+                + "    },\n"
+                + "    port: 3345,\n"
+                + "    portRange: 2,\n"
+                + "    nodeFinder:{\n"
+                + "      netClusterNodes: [ \"localhost:3345\", 
\"localhost:3346\" ]\n"
+                + "    }\n"
+                + "  },\n"
+                + "  clientConnector.ssl: {\n"
+                + "    enabled: true, "

Review Comment:
   I changed the configuration and the cipher in the client connection test - 
it was passing before because default ciphers suite doesn't include the cipher 
chosen for the client connection.



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to