Skip to content

Commit

Permalink
remove temporary ssl test
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorolyov committed Jan 7, 2025
1 parent 7badf3d commit 60f7dd4
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,4 @@ public void throwExceptionWhenAlternatorDisabled() {
.hasMessageContaining("Alternator is not enabled");
}
}

@Test
public void testSslConfiguration() {
try (ScyllaDBContainer scylladb = new ScyllaDBContainer(SCYLLADB_IMAGE)) {
scylladb.start();
assertThat(scylladb.getEnvMap().get("SCYLLA_SSL")).isEqualTo("1");
assertThat(scylladb.getEnvMap().get("SCYLLA_SSL_CERT_FILE")).isEqualTo("/etc/scylla/certs/scylla.crt");
assertThat(scylladb.getEnvMap().get("SCYLLA_SSL_KEY_FILE")).isEqualTo("/etc/scylla/certs/scylla.key");
assertThat(scylladb.getEnvMap().get("SCYLLA_SSL_CA_FILE")).isEqualTo("/etc/scylla/certs/ca.crt");
}
}
}

0 comments on commit 60f7dd4

Please sign in to comment.