Skip to content

Commit

Permalink
cassandra_int_tests: Remove 'cross connection state' test cases (#1114)
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai authored Apr 3, 2023
1 parent 9128d66 commit 15a2c45
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions shotover-proxy/tests/cassandra_int_tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,6 @@ async fn cluster_single_rack_v3(#[case] driver: CassandraDriver) {

routing::test("127.0.0.1", 9042, "172.16.1.2", 9042, driver).await;

//Check for bugs in cross connection state
native_types::test(&connection().await).await;

shotover.shutdown_and_then_consume_events(&[]).await;
}

Expand Down Expand Up @@ -207,15 +204,6 @@ async fn cluster_single_rack_v4(#[case] driver: CassandraDriver) {

routing::test("127.0.0.1", 9042, "172.16.1.2", 9044, driver).await;

//Check for bugs in cross connection state
let mut connection2 = CassandraConnectionBuilder::new("127.0.0.1", 9042, driver)
.build()
.await;
connection2
.enable_schema_awaiter("172.16.1.2:9044", None)
.await;
native_types::test(&connection2).await;

cluster::single_rack_v4::test_node_going_down(&compose, driver).await;

shotover
Expand Down Expand Up @@ -307,9 +295,6 @@ async fn cluster_multi_rack(#[case] driver: CassandraDriver) {
standard_test_suite(&connection, driver).await;
cluster::multi_rack::test(&connection().await).await;

//Check for bugs in cross connection state
native_types::test(&connection().await).await;

shotover_rack1.shutdown_and_then_consume_events(&[]).await;
shotover_rack2.shutdown_and_then_consume_events(&[]).await;
shotover_rack3.shutdown_and_then_consume_events(&[]).await;
Expand Down

0 comments on commit 15a2c45

Please sign in to comment.