From 15a2c45dfe18efab122041fecf7bae2afacd3193 Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Mon, 3 Apr 2023 19:11:03 +1000 Subject: [PATCH] cassandra_int_tests: Remove 'cross connection state' test cases (#1114) --- shotover-proxy/tests/cassandra_int_tests/mod.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/shotover-proxy/tests/cassandra_int_tests/mod.rs b/shotover-proxy/tests/cassandra_int_tests/mod.rs index 7d01731b9..9cf0e711d 100644 --- a/shotover-proxy/tests/cassandra_int_tests/mod.rs +++ b/shotover-proxy/tests/cassandra_int_tests/mod.rs @@ -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; } @@ -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 @@ -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;