Skip to content

Commit a0b86e9

Browse files
adutraolim7t
authored andcommitted
Various test fixes for 3.2.0 (apache#791)
Motivation: Many tests are failing when using recent versions of C* or DSE. Modifications: 1) Bump the default C* version to 3.8 2) Redesign @CassandraVersion and @DseVersion to be able to fully accept tick-tock releases and correctly compare them. 3) Reduce log verbosity for Scassandra tests 4) Prevent thrift from being enabled for C* >= 4.0 5) Fix decommission tests with C* >= 3.12 This commit contains contributions by Andrew Tolbert (@tolbertam). Result: All tests should pass.
1 parent 8a144ee commit a0b86e9

File tree

80 files changed

+238
-232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+238
-232
lines changed

driver-core/src/test/java/com/datastax/driver/core/AggregateMetadataTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import static com.datastax.driver.core.DataType.text;
2525
import static com.datastax.driver.core.TestUtils.serializeForDynamicCompositeType;
2626

27-
@CassandraVersion(major = 2.2)
27+
@CassandraVersion("2.2.0")
2828
@CCMConfig(config = "enable_user_defined_functions:true")
2929
public class AggregateMetadataTest extends CCMTestsSupport {
3030

@@ -183,7 +183,7 @@ public void should_parse_and_format_aggregate_with_udts() {
183183
* @since 3.0.1
184184
*/
185185
@Test(groups = "short")
186-
@CassandraVersion(major = 2.2)
186+
@CassandraVersion("2.2.0")
187187
public void should_parse_and_format_aggregate_with_composite_type_literal_initcond() {
188188
VersionNumber ver = VersionNumber.parse(CCMBridge.getCassandraVersion());
189189
if (ver.getMajor() == 3) {
@@ -204,7 +204,7 @@ public void should_parse_and_format_aggregate_with_composite_type_literal_initco
204204
* @since 3.0.1
205205
*/
206206
@Test(groups = "short")
207-
@CassandraVersion(major = 3.0, minor = 4)
207+
@CassandraVersion("3.4")
208208
public void should_parse_and_format_aggregate_with_composite_type_hex_initcond() {
209209
VersionNumber ver = VersionNumber.parse(CCMBridge.getCassandraVersion());
210210
if ((ver.getMinor() >= 1 && ver.getMinor() < 4)) {

driver-core/src/test/java/com/datastax/driver/core/AsyncQueryTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public Thread apply(ResultSet input) {
166166
}
167167

168168
@Test(groups = "short")
169-
@CassandraVersion(major = 2.0, description = "Paging is not supported until 2.0")
169+
@CassandraVersion(value = "2.0.0", description = "Paging is not supported until 2.0")
170170
public void should_fail_when_auto_paging_on_io_thread() throws Exception {
171171
for (int i = 0; i < 1000; i++) {
172172
Statement statement = new SimpleStatement("select v from asyncquerytest.foo where k = 1");

driver-core/src/test/java/com/datastax/driver/core/AsyncResultSetTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
import static org.assertj.core.api.Assertions.assertThat;
2929

30-
@CassandraVersion(major = 2.0, description = "uses paging")
30+
@CassandraVersion(value = "2.0.0", description = "uses paging")
3131
public class AsyncResultSetTest extends CCMTestsSupport {
3232

3333
@Override

driver-core/src/test/java/com/datastax/driver/core/BatchStatementTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void simpleBatchTest() {
7171
}
7272

7373
@Test(groups = "short")
74-
@CassandraVersion(major = 2.0, minor = 9, description = "This will only work with C* 2.0.9 (CASSANDRA-7337)")
74+
@CassandraVersion(value = "2.0.9", description = "This will only work with C* 2.0.9 (CASSANDRA-7337)")
7575
public void casBatchTest() {
7676
PreparedStatement st = session().prepare("INSERT INTO test (k, v) VALUES (?, ?) IF NOT EXISTS");
7777

driver-core/src/test/java/com/datastax/driver/core/CCMBridge.java

+43-6
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,21 @@ public static String getCassandraVersion() {
281281
}
282282
}
283283

284+
/**
285+
* @return {@link VersionNumber} representation of {@link CCMBridge#getCassandraVersion()}
286+
*/
287+
public static VersionNumber getCassandraVersionNumber() {
288+
return VersionNumber.parse(getCassandraVersion());
289+
}
290+
291+
/**
292+
* @param compareVersion The given version to compare with.
293+
* @return Whether or not the configured cassandra version is greater than or equal to the given version.
294+
*/
295+
public static boolean isCassandraVersionAtLeast(String compareVersion) {
296+
return getCassandraVersionNumber().compareTo(VersionNumber.parse(compareVersion)) >= 0;
297+
}
298+
284299
/**
285300
* @return The configured DSE version if '-Ddse=true' specified, otherwise null.
286301
*/
@@ -292,6 +307,22 @@ public static String getDSEVersion() {
292307
}
293308
}
294309

310+
/**
311+
* @return {@link VersionNumber} representation of {@link CCMBridge#getDSEVersion()}
312+
*/
313+
public static VersionNumber getDSEVersionNumber() {
314+
return VersionNumber.parse(getDSEVersion());
315+
}
316+
317+
/**
318+
* @param compareVersion The given version to compare with.
319+
* @return Whether or not the configured dse version is greater than or equal to the given version.
320+
*/
321+
public static boolean isDSEVersionAtLeast(String compareVersion) {
322+
VersionNumber dseVersion = getDSEVersionNumber();
323+
return dseVersion != null && dseVersion.compareTo(VersionNumber.parse(compareVersion)) >= 0;
324+
}
325+
295326
/**
296327
* @return Whether or not DSE was configured via '-Ddse=true'.
297328
*/
@@ -549,7 +580,12 @@ public void add(int dc, int n) {
549580
@Override
550581
public void decommission(int n) {
551582
logger.debug(String.format("Decommissioning: node %s (%s%s:%s) from %s", n, TestUtils.IP_PREFIX, n, binaryPort, this));
552-
execute(CCM_COMMAND + " node%d decommission", n);
583+
// Special case for C* 3.12+, DSE 5.1+, force decommission (see CASSANDRA-12510)
584+
String cmd = CCM_COMMAND + " node%d decommission";
585+
if ((!isDSE() && isCassandraVersionAtLeast("3.12")) || (isDSE() && isDSEVersionAtLeast("5.1"))) {
586+
cmd += " --force";
587+
}
588+
execute(cmd, n);
553589
}
554590

555591
@Override
@@ -908,7 +944,7 @@ public CCMBridge build() {
908944
int storagePort = Integer.parseInt(cassandraConfiguration.get("storage_port").toString());
909945
int thriftPort = Integer.parseInt(cassandraConfiguration.get("rpc_port").toString());
910946
int binaryPort = Integer.parseInt(cassandraConfiguration.get("native_transport_port").toString());
911-
if (version.compareTo(VersionNumber.parse("4.0")) >= 0) {
947+
if (!isThriftSupported(dse, version)) {
912948
// remove thrift configuration
913949
cassandraConfiguration.remove("start_rpc");
914950
cassandraConfiguration.remove("rpc_port");
@@ -926,10 +962,7 @@ public void run() {
926962
ccm.updateConfig(cassandraConfiguration);
927963
if (dse) {
928964
Map<String, Object> dseConfiguration = Maps.newLinkedHashMap(this.dseConfiguration);
929-
/* TODO: Use version passed in if present, there is currently a conflation of C* and DSE versions
930-
* when it comes to this that don't want to disturb. No tests are currently using withVersion with
931-
* dse, so its not an issue at the moment. */
932-
if (VersionNumber.parse(CCMBridge.getDSEVersion()).getMajor() >= 5) {
965+
if (dse && version.getMajor() >= 5) {
933966
// randomize DSE specific ports if dse present and greater than 5.0
934967
dseConfiguration.put("lease_netty_server_port", RANDOM_PORT);
935968
dseConfiguration.put("internode_messaging_options.port", RANDOM_PORT);
@@ -946,6 +979,10 @@ public void run() {
946979
return ccm;
947980
}
948981

982+
private static boolean isThriftSupported(boolean dse, VersionNumber version) {
983+
return dse || version.compareTo(VersionNumber.parse("4.0")) < 0;
984+
}
985+
949986
public int weight() {
950987
// the weight is simply function of the number of nodes
951988
int totalNodes = 0;

driver-core/src/test/java/com/datastax/driver/core/ConditionalUpdateTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* Test {@link ResultSet#wasApplied()} for conditional updates.
2626
*/
27-
@CassandraVersion(major = 2.0, description = "Conditional Updates requires 2.0+.")
27+
@CassandraVersion(value = "2.0.0", description = "Conditional Updates requires 2.0+.")
2828
public class ConditionalUpdateTest extends CCMTestsSupport {
2929

3030
@Override

driver-core/src/test/java/com/datastax/driver/core/ControlConnectionTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public void should_prevent_simultaneous_reconnection_attempts() throws Interrupt
9494
* Therefore we use two different driver instances in this test.
9595
*/
9696
@Test(groups = "short")
97-
@CassandraVersion(major = 2.1)
97+
@CassandraVersion("2.1.0")
9898
public void should_parse_UDT_definitions_when_using_default_protocol_version() {
9999
// First driver instance: create UDT
100100
Cluster cluster = register(Cluster.builder()

driver-core/src/test/java/com/datastax/driver/core/CustomPayloadTest.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import static org.assertj.core.api.Assertions.assertThat;
3434
import static org.assertj.core.api.Fail.fail;
3535

36-
@CassandraVersion(major = 2.2)
36+
@CassandraVersion("2.2.0")
3737
@CCMConfig(jvmArgs = "-Dcassandra.custom_query_handler_class=org.apache.cassandra.cql3.CustomPayloadMirroringQueryHandler")
3838
public class CustomPayloadTest extends CCMTestsSupport {
3939

@@ -85,8 +85,6 @@ public void should_echo_custom_payload_when_building_statement() throws Exceptio
8585

8686
/**
8787
* Ensures that an incoming payload is propagated from prepared to bound statements.
88-
*
89-
* @throws Exception
9088
*/
9189
@Test(groups = "short")
9290
public void should_propagate_incoming_payload_to_bound_statement() throws Exception {
@@ -113,8 +111,6 @@ public void should_propagate_incoming_payload_to_bound_statement() throws Except
113111
/**
114112
* Ensures that an incoming payload is overridden by an explicitly set outgoing payload
115113
* when propagated to bound statements.
116-
*
117-
* @throws Exception
118114
*/
119115
@Test(groups = "short")
120116
public void should_override_incoming_payload_when_outgoing_payload_explicitly_set_on_preparing_statement() throws Exception {
@@ -141,8 +137,6 @@ public void should_override_incoming_payload_when_outgoing_payload_explicitly_se
141137
/**
142138
* Ensures that payloads can still be set individually on bound statements
143139
* if the prepared statement does not have a default payload.
144-
*
145-
* @throws Exception
146140
*/
147141
@Test(groups = "short")
148142
public void should_not_set_any_payload_on_bound_statement() throws Exception {
@@ -171,8 +165,6 @@ public void should_not_set_any_payload_on_bound_statement() throws Exception {
171165

172166
/**
173167
* Ensures that a custom payload is propagated throughout pages.
174-
*
175-
* @throws Exception
176168
*/
177169
@Test(groups = "short")
178170
public void should_echo_custom_payload_when_paginating() throws Exception {
@@ -253,8 +245,6 @@ public void should_throw_ufe_when_protocol_version_lesser_than_4() throws Except
253245

254246
/**
255247
* Ensures that when debugging custom payloads, the driver will print appropriate log messages.
256-
*
257-
* @throws Exception
258248
*/
259249
@Test(groups = "short")
260250
public void should_print_log_message_when_level_trace() throws Exception {

driver-core/src/test/java/com/datastax/driver/core/CustomTypeTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import org.testng.annotations.Test;
2020

2121
import java.nio.ByteBuffer;
22-
import java.util.ArrayList;
2322
import java.util.List;
2423
import java.util.Map;
2524

@@ -153,7 +152,7 @@ public void should_serialize_and_deserialize_collections_of_custom_types() {
153152
* @test_category metadata
154153
*/
155154
@Test(groups = "short")
156-
@CassandraVersion(major = 2.1)
155+
@CassandraVersion("2.1.0")
157156
public void should_handle_udt_with_custom_type() {
158157
// Given: a UDT with custom types, and a table using it.
159158
session().execute("CREATE TYPE custom_udt (regular int, c1 'DynamicCompositeType(s => UTF8Type, i => Int32Type)', c2 'LongType')");

driver-core/src/test/java/com/datastax/driver/core/DataTypeCqlNameParserTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import static com.datastax.driver.core.DataTypeCqlNameParser.parse;
2424
import static com.datastax.driver.core.Metadata.quote;
2525

26-
@CassandraVersion(major = 3.0)
26+
@CassandraVersion("3.0")
2727
public class DataTypeCqlNameParserTest extends CCMTestsSupport {
2828

2929
@Test(groups = "short")

driver-core/src/test/java/com/datastax/driver/core/DataTypeIntegrationTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
* (protocol > v2 only) and a prepared statement.
3737
* This is repeated with a large number of datatypes.
3838
*/
39-
@CCMConfig(clusterProvider = "createClusterBuilderNoDebouncing")
4039
public class DataTypeIntegrationTest extends CCMTestsSupport {
4140
private static final Logger logger = LoggerFactory.getLogger(DataTypeIntegrationTest.class);
4241

@@ -71,7 +70,7 @@ public void should_insert_and_retrieve_data_with_prepared_statements() {
7170
}
7271

7372
@Test(groups = "long")
74-
@CassandraVersion(major = 2.0, description = "Uses parameterized simple statements, which are only available with protocol v2")
73+
@CassandraVersion(value = "2.0", description = "Uses parameterized simple statements, which are only available with protocol v2")
7574
public void should_insert_and_retrieve_data_with_parameterized_simple_statements() {
7675
should_insert_and_retrieve_data(StatementType.SIMPLE_WITH_PARAM);
7776
}

driver-core/src/test/java/com/datastax/driver/core/DirectCompressionTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void should_function_with_snappy_compression() throws Exception {
4040
* @expected_result session established and queries made successfully using it.
4141
*/
4242
@Test(groups = "short")
43-
@CassandraVersion(major = 2.0)
43+
@CassandraVersion("2.0.0")
4444
public void should_function_with_lz4_compression() throws Exception {
4545
compressionTest(ProtocolOptions.Compression.LZ4);
4646
}

driver-core/src/test/java/com/datastax/driver/core/DurationIntegrationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
import static com.datastax.driver.core.Assertions.assertThat;
2525

26-
@CassandraVersion(major = 3.10)
26+
@CassandraVersion("3.10")
2727
public class DurationIntegrationTest extends CCMTestsSupport {
2828

2929
@Override

driver-core/src/test/java/com/datastax/driver/core/FunctionMetadataTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@
1919
import org.testng.annotations.Test;
2020

2121
import static com.datastax.driver.core.Assertions.assertThat;
22-
import static com.datastax.driver.core.DataType.*;
22+
import static com.datastax.driver.core.DataType.cint;
23+
import static com.datastax.driver.core.DataType.map;
2324
import static org.assertj.core.api.Assertions.entry;
2425

25-
@CassandraVersion(major = 2.2)
26+
@CassandraVersion("2.2.0")
2627
@CCMConfig(config = "enable_user_defined_functions:true")
2728
public class FunctionMetadataTest extends CCMTestsSupport {
2829

driver-core/src/test/java/com/datastax/driver/core/HeapCompressionTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void should_function_with_snappy_compression() throws Exception {
4747
* @expected_result session established and queries made successfully using it.
4848
*/
4949
@Test(groups = "isolated")
50-
@CassandraVersion(major = 2.0)
50+
@CassandraVersion("2.0.0")
5151
public void should_function_with_lz4_compression() throws Exception {
5252
compressionTest(ProtocolOptions.Compression.LZ4);
5353
}

driver-core/src/test/java/com/datastax/driver/core/HostMetadataIntegrationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class HostMetadataIntegrationTest {
4242
* @see HostMetadataIntegrationTest#should_parse_dse_workload_and_version_if_available()
4343
*/
4444
@Test(groups = "long")
45-
@DseVersion(major = 5.0)
45+
@DseVersion("5.0.0")
4646
public void test_mixed_dse_workload() {
4747
CCMBridge.Builder builder = CCMBridge.builder()
4848
.withNodes(3)

driver-core/src/test/java/com/datastax/driver/core/IndexMetadataTest.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import static com.datastax.driver.core.DataType.*;
3333
import static com.datastax.driver.core.IndexMetadata.Kind.*;
3434

35-
@CassandraVersion(major = 1.2)
35+
@CassandraVersion("1.2.0")
3636
public class IndexMetadataTest extends CCMTestsSupport {
3737

3838
/**
@@ -103,7 +103,7 @@ public void should_create_metadata_for_simple_index() {
103103
}
104104

105105
@Test(groups = "short")
106-
@CassandraVersion(major = 2.1, description = "index names with quoted identifiers and collection indexes not supported until 2.1")
106+
@CassandraVersion(value = "2.1", description = "index names with quoted identifiers and collection indexes not supported until 2.1")
107107
public void should_create_metadata_for_values_index_on_mixed_case_column() {
108108
// 3.0 assumes the 'values' keyword if index on a collection
109109
String createValuesIndex = ccm().getVersion().getMajor() > 2 ?
@@ -123,7 +123,7 @@ public void should_create_metadata_for_values_index_on_mixed_case_column() {
123123
}
124124

125125
@Test(groups = "short")
126-
@CassandraVersion(major = 2.1)
126+
@CassandraVersion("2.1.0")
127127
public void should_create_metadata_for_index_on_map_values() {
128128
// 3.0 assumes the 'values' keyword if index on a collection
129129
String createValuesIndex = ccm().getVersion().getMajor() > 2 ?
@@ -143,7 +143,7 @@ public void should_create_metadata_for_index_on_map_values() {
143143
}
144144

145145
@Test(groups = "short")
146-
@CassandraVersion(major = 2.1)
146+
@CassandraVersion("2.1.0")
147147
public void should_create_metadata_for_index_on_map_keys() {
148148
String createKeysIndex = String.format("CREATE INDEX map_keys_index ON %s.indexing (keys(map_keys));", keyspace);
149149
session().execute(createKeysIndex);
@@ -160,7 +160,7 @@ public void should_create_metadata_for_index_on_map_keys() {
160160
}
161161

162162
@Test(groups = "short")
163-
@CassandraVersion(major = 2.1, minor = 3)
163+
@CassandraVersion("2.1.3")
164164
public void should_create_metadata_for_full_index_on_map() {
165165
String createFullIndex = String.format("CREATE INDEX map_full_index ON %s.indexing (full(map_full));", keyspace);
166166
session().execute(createFullIndex);
@@ -177,7 +177,7 @@ public void should_create_metadata_for_full_index_on_map() {
177177
}
178178

179179
@Test(groups = "short")
180-
@CassandraVersion(major = 2.1, minor = 3)
180+
@CassandraVersion("2.1.3")
181181
public void should_create_metadata_for_full_index_on_set() {
182182
String createFullIndex = String.format("CREATE INDEX set_full_index ON %s.indexing (full(set_full));", keyspace);
183183
session().execute(createFullIndex);
@@ -194,7 +194,7 @@ public void should_create_metadata_for_full_index_on_set() {
194194
}
195195

196196
@Test(groups = "short")
197-
@CassandraVersion(major = 2.1, minor = 3)
197+
@CassandraVersion("2.1.3")
198198
public void should_create_metadata_for_full_index_on_list() {
199199
String createFullIndex = String.format("CREATE INDEX list_full_index ON %s.indexing (full(list_full));", keyspace);
200200
session().execute(createFullIndex);
@@ -211,7 +211,7 @@ public void should_create_metadata_for_full_index_on_list() {
211211
}
212212

213213
@Test(groups = "short")
214-
@CassandraVersion(major = 2.2)
214+
@CassandraVersion("2.2.0")
215215
public void should_create_metadata_for_index_on_map_entries() {
216216
String createEntriesIndex = String.format("CREATE INDEX map_entries_index ON %s.indexing (entries(map_entries));", keyspace);
217217
session().execute(createEntriesIndex);
@@ -228,7 +228,7 @@ public void should_create_metadata_for_index_on_map_entries() {
228228
}
229229

230230
@Test(groups = "short")
231-
@CassandraVersion(major = 3.0)
231+
@CassandraVersion("3.0")
232232
public void should_allow_multiple_indexes_on_map_column() {
233233
String createEntriesIndex = String.format("CREATE INDEX map_all_entries_index ON %s.indexing (entries(map_all));", keyspace);
234234
session().execute(createEntriesIndex);

0 commit comments

Comments
 (0)