use of com.datastax.oss.driver.api.core.CqlSession in project zipkin by openzipkin.
the class SchemaTest method ensureKeyspaceMetadata_failsWhenKeyspaceMetadataIsNotNull.
@Test
public void ensureKeyspaceMetadata_failsWhenKeyspaceMetadataIsNotNull() {
CqlSession session = mock(CqlSession.class);
Metadata metadata = mock(Metadata.class);
Node node = mock(Node.class);
when(session.getMetadata()).thenReturn(metadata);
when(metadata.getNodes()).thenReturn(Collections.singletonMap(UUID.fromString("11111111-1111-1111-1111-111111111111"), node));
when(node.getCassandraVersion()).thenReturn(Version.parse("3.11.3"));
assertThatThrownBy(() -> Schema.ensureKeyspaceMetadata(session, "zipkin2")).isInstanceOf(RuntimeException.class).hasMessageStartingWith("Cannot read keyspace metadata for keyspace");
}
use of com.datastax.oss.driver.api.core.CqlSession in project zipkin by openzipkin.
the class SchemaTest method ensureKeyspaceMetadata_failsWhenVersionLessThan3_11_3.
@Test
public void ensureKeyspaceMetadata_failsWhenVersionLessThan3_11_3() {
CqlSession session = mock(CqlSession.class);
Metadata metadata = mock(Metadata.class);
Node node = mock(Node.class);
when(session.getMetadata()).thenReturn(metadata);
when(metadata.getNodes()).thenReturn(Collections.singletonMap(UUID.fromString("11111111-1111-1111-1111-111111111111"), node));
when(node.getCassandraVersion()).thenReturn(Version.parse("3.11.2"));
assertThatThrownBy(() -> Schema.ensureKeyspaceMetadata(session, "zipkin2")).isInstanceOf(RuntimeException.class).hasMessage("Node 11111111-1111-1111-1111-111111111111 is running Cassandra 3.11.2, but minimum version is 3.11.3");
}
use of com.datastax.oss.driver.api.core.CqlSession in project zipkin by openzipkin.
the class LazySession method close.
void close() {
CqlSession maybeSession = session;
if (maybeSession != null) {
session.close();
session = null;
}
}
use of com.datastax.oss.driver.api.core.CqlSession in project thingsboard by thingsboard.
the class CustomCassandraCQLUnit method after.
@Override
protected void after() {
super.after();
try (CqlSession s = session) {
session = null;
}
System.setSecurityManager(null);
}
use of com.datastax.oss.driver.api.core.CqlSession in project spring-boot by spring-projects.
the class CassandraDriverHealthIndicatorTests method healthWithNodeVersionShouldAddVersionDetail.
@Test
void healthWithNodeVersionShouldAddVersionDetail() {
CqlSession session = mock(CqlSession.class);
Metadata metadata = mock(Metadata.class);
given(session.getMetadata()).willReturn(metadata);
Node node = mock(Node.class);
given(node.getState()).willReturn(NodeState.UP);
given(node.getCassandraVersion()).willReturn(Version.V4_0_0);
given(metadata.getNodes()).willReturn(createNodesWithRandomUUID(Collections.singletonList(node)));
CassandraDriverHealthIndicator healthIndicator = new CassandraDriverHealthIndicator(session);
Health health = healthIndicator.health();
assertThat(health.getStatus()).isEqualTo(Status.UP);
assertThat(health.getDetails().get("version")).isEqualTo(Version.V4_0_0);
}
Aggregations