File tree Expand file tree Collapse file tree 4 files changed +0
-10
lines changed
integration-tests/src/test/java/com/datastax/oss/driver/core/ssl Expand file tree Collapse file tree 4 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 30
30
import com .datastax .oss .driver .api .testinfra .session .SessionUtils ;
31
31
import com .datastax .oss .driver .internal .core .ssl .DefaultSslEngineFactory ;
32
32
import org .junit .ClassRule ;
33
- import org .junit .Ignore ;
34
33
import org .junit .Test ;
35
34
36
35
public class DefaultSslEngineFactoryIT {
37
36
38
37
@ ClassRule public static final CustomCcmRule CCM_RULE = CustomCcmRule .builder ().withSsl ().build ();
39
38
40
39
@ Test
41
- @ Ignore ("@IntegrationTestDisabledCassandra3Failure @IntegrationTestDisabledSSL" )
42
40
public void should_connect_with_ssl () {
43
41
DriverConfigLoader loader =
44
42
SessionUtils .configLoaderBuilder ()
@@ -89,7 +87,6 @@ public void should_not_connect_if_truststore_not_provided() {
89
87
}
90
88
91
89
@ Test (expected = AllNodesFailedException .class )
92
- @ Ignore ("@IntegrationTestDisabledCassandra3Failure @IntegrationTestDisabledSSL" )
93
90
public void should_not_connect_if_not_using_ssl () {
94
91
try (CqlSession session = SessionUtils .newSession (CCM_RULE )) {
95
92
session .execute ("select * from system.local" );
Original file line number Diff line number Diff line change 30
30
import com .datastax .oss .driver .categories .IsolatedTests ;
31
31
import com .datastax .oss .driver .internal .core .ssl .DefaultSslEngineFactory ;
32
32
import org .junit .ClassRule ;
33
- import org .junit .Ignore ;
34
33
import org .junit .Test ;
35
34
import org .junit .experimental .categories .Category ;
36
35
@@ -41,7 +40,6 @@ public class DefaultSslEngineFactoryPropertyBasedWithClientAuthIT {
41
40
public static final CustomCcmRule CCM_RULE = CustomCcmRule .builder ().withSslAuth ().build ();
42
41
43
42
@ Test
44
- @ Ignore ("@IntegrationTestDisabledCassandra3Failure @IntegrationTestDisabledSSL" )
45
43
public void should_connect_with_ssl_using_client_auth () {
46
44
System .setProperty (
47
45
"javax.net.ssl.keyStore" , CcmBridge .DEFAULT_CLIENT_KEYSTORE_FILE .getAbsolutePath ());
Original file line number Diff line number Diff line change 30
30
import com .datastax .oss .driver .api .testinfra .session .SessionUtils ;
31
31
import com .datastax .oss .driver .internal .core .ssl .DefaultSslEngineFactory ;
32
32
import org .junit .ClassRule ;
33
- import org .junit .Ignore ;
34
33
import org .junit .Test ;
35
34
36
35
public class DefaultSslEngineFactoryWithClientAuthIT {
@@ -39,7 +38,6 @@ public class DefaultSslEngineFactoryWithClientAuthIT {
39
38
public static final CustomCcmRule CCM_RULE = CustomCcmRule .builder ().withSslAuth ().build ();
40
39
41
40
@ Test
42
- @ Ignore ("@IntegrationTestDisabledCassandra3Failure @IntegrationTestDisabledSSL" )
43
41
public void should_connect_with_ssl_using_client_auth () {
44
42
DriverConfigLoader loader =
45
43
SessionUtils .configLoaderBuilder ()
Original file line number Diff line number Diff line change 36
36
import javax .net .ssl .SSLContext ;
37
37
import javax .net .ssl .TrustManagerFactory ;
38
38
import org .junit .ClassRule ;
39
- import org .junit .Ignore ;
40
39
import org .junit .Test ;
41
40
42
41
public class ProgrammaticSslIT {
43
42
44
43
@ ClassRule public static final CustomCcmRule CCM_RULE = CustomCcmRule .builder ().withSsl ().build ();
45
44
46
45
@ Test
47
- @ Ignore ("@IntegrationTestDisabledCassandra3Failure @IntegrationTestDisabledSSL" )
48
46
public void should_connect_with_programmatic_factory () {
49
47
SslEngineFactory factory = new ProgrammaticSslEngineFactory (createSslContext ());
50
48
try (CqlSession session =
@@ -58,7 +56,6 @@ public void should_connect_with_programmatic_factory() {
58
56
}
59
57
60
58
@ Test
61
- @ Ignore ("@IntegrationTestDisabledCassandra3Failure @IntegrationTestDisabledSSL" )
62
59
public void should_connect_with_programmatic_ssl_context () {
63
60
SSLContext sslContext = createSslContext ();
64
61
try (CqlSession session =
You can’t perform that action at this time.
0 commit comments