File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/test/java/com/arangodb Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 3232import javax .net .ssl .SSLHandshakeException ;
3333import javax .net .ssl .TrustManagerFactory ;
3434
35+ import org .junit .Ignore ;
3536import org .junit .Test ;
3637
3738import com .arangodb .entity .ArangoDBVersion ;
@@ -55,6 +56,7 @@ public class ArangoSslTest {
5556 private static final String SSL_TRUSTSTORE_PASSWORD = "12345678" ;
5657
5758 @ Test
59+ @ Ignore
5860 public void connect () throws Exception {
5961 final KeyStore ks = KeyStore .getInstance (KeyStore .getDefaultType ());
6062 ks .load (this .getClass ().getResourceAsStream (SSL_TRUSTSTORE ), SSL_TRUSTSTORE_PASSWORD .toCharArray ());
@@ -74,6 +76,7 @@ public void connect() throws Exception {
7476 }
7577
7678 @ Test
79+ @ Ignore
7780 public void connectWithoutValidSslContext () throws Exception {
7881 try {
7982 final ArangoDBAsync arangoDB = new ArangoDBAsync .Builder ().port (8530 ).useSsl (true ).build ();
You can’t perform that action at this time.
0 commit comments