@@ -169,7 +169,7 @@ public void testInvalidNodes() {
169
169
public void testValidNodes () {
170
170
Map <String , String > options = new HashMap <>();
171
171
options .put (ClickHouseClientOption .SSL .getKey (), "false" );
172
- options .put (ClickHouseClientOption .SSL_MODE .getKey (), "NONE" );
172
+ options .put (ClickHouseClientOption .SSL_MODE .getKey (), ClickHouseSslMode . STRICT . name () );
173
173
options .put (ClickHouseClientOption .DATABASE .getKey (), "db1" );
174
174
175
175
Set <String > tags = new HashSet <>();
@@ -183,7 +183,7 @@ public void testValidNodes() {
183
183
public void testSecureNode () {
184
184
Map <String , String > options = new HashMap <>();
185
185
options .put (ClickHouseClientOption .SSL .getKey (), "true" );
186
- options .put (ClickHouseClientOption .SSL_MODE .getKey (), "NONE" );
186
+ options .put (ClickHouseClientOption .SSL_MODE .getKey (), ClickHouseSslMode . STRICT . name () );
187
187
options .put (ClickHouseClientOption .DATABASE .getKey (), "db1" );
188
188
189
189
Assert .assertEquals (ClickHouseNode .of ("https://node1:443/db1" ),
@@ -218,7 +218,7 @@ public void testSingleWordNode() {
218
218
public void testNodeWithProtocol () {
219
219
Map <String , String > options = new HashMap <>();
220
220
options .put (ClickHouseClientOption .SSL .getKey (), "true" );
221
- options .put (ClickHouseClientOption .SSL_MODE .getKey (), "NONE" );
221
+ options .put (ClickHouseClientOption .SSL_MODE .getKey (), ClickHouseSslMode . STRICT . name () );
222
222
223
223
for (ClickHouseProtocol p : ClickHouseProtocol .values ()) {
224
224
Assert .assertEquals (ClickHouseNode .of (p .name () + ":///?#" ),
@@ -254,7 +254,7 @@ public void testNodeWithHostAndPort() {
254
254
public void testNodeWithDatabase () {
255
255
Map <String , String > options = new HashMap <>();
256
256
options .put (ClickHouseClientOption .SSL .getKey (), "true" );
257
- options .put (ClickHouseClientOption .SSL_MODE .getKey (), "NONE" );
257
+ options .put (ClickHouseClientOption .SSL_MODE .getKey (), ClickHouseSslMode . STRICT . name () );
258
258
259
259
Assert .assertEquals (ClickHouseNode .of ("grpcs://node1:19100/" ),
260
260
new ClickHouseNode ("node1" , ClickHouseProtocol .GRPC , 19100 , null , options , null ));
@@ -324,13 +324,13 @@ public void testNodeWithOptions() {
324
324
Map <String , String > options = new HashMap <>();
325
325
options .put (ClickHouseClientOption .ASYNC .getKey (), "false" );
326
326
options .put (ClickHouseClientOption .SSL .getKey (), "true" );
327
- options .put (ClickHouseClientOption .SSL_MODE .getKey (), "NONE" );
327
+ options .put (ClickHouseClientOption .SSL_MODE .getKey (), ClickHouseSslMode . STRICT . name () );
328
328
options .put (ClickHouseClientOption .CONNECTION_TIMEOUT .getKey (), "500" );
329
329
330
330
for (String uri : new String [] {
331
331
"https://node1?!async&ssl&connect_timeout=500" ,
332
- "http://node1?async=false&ssl=true&sslmode=NONE &connect_timeout=500" ,
333
- "http://node1?&&&&async=false&ssl&&&&&sslmode=NONE &connect_timeout=500&&&" ,
332
+ "http://node1?async=false&ssl=true&sslmode=STRICT &connect_timeout=500" ,
333
+ "http://node1?&&&&async=false&ssl&&&&&sslmode=STRICT &connect_timeout=500&&&" ,
334
334
}) {
335
335
Assert .assertEquals (ClickHouseNode .of (uri ),
336
336
new ClickHouseNode ("node1" , ClickHouseProtocol .HTTP ,
@@ -379,7 +379,7 @@ public void testQueryWithSlash() throws Exception {
379
379
Assert .assertEquals (server .toUri (), new URI ("http://localhost:1234?/a/b/c=d" ));
380
380
381
381
Assert .assertEquals (ClickHouseNode .of ("https://myserver/db/1/2/3?a%20=%201&b=/root/my.crt" ).toUri (),
382
- new URI ("http://myserver:8443/db/1/2/3?ssl=true&sslmode=NONE &a%20=%201&b=/root/my.crt" ));
382
+ new URI ("http://myserver:8443/db/1/2/3?ssl=true&sslmode=STRICT &a%20=%201&b=/root/my.crt" ));
383
383
}
384
384
385
385
@ Test (groups = { "integration" })
0 commit comments