Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest_jdk11_python3.8_cythonno_x86_64_20_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_20_6417015875.1182024-05-21T14:39:17.773655838fe512b058

Tests

NameStatusTypeTime(s)
test_drop_user_case_sensitiveSuccess36.623
test_builtin_functions_require_no_special_permissionsSuccess33.580
test_cleanupFailureassert not True + where True = <bound method Event.is_set of <threading.Event object at 0x7f1f07fbd550>>() + where <bound method Event.is_set of <threading.Event object at 0x7f1f07fbd550>> = <threading.Event object at 0x7f1f07fbd550>.is_set

self = <bootstrap_test.TestBootstrap object at 0x7f1f1effcca0>

def test_cleanup(self):
"""
@jira_ticket CASSANDRA-11179
Make sure we remove processed files during cleanup
"""
cluster = self.cluster
cluster.set_environment_variable('CASSANDRA_TOKEN_PREGENERATION_DISABLED', 'True')
cluster.set_configuration_options(values={'concurrent_compactors': 4})
cluster.populate(1)
cluster.start()
node1, = cluster.nodelist()
for x in range(0, 5):
node1.stress(['write', 'n=100k', 'no-warmup', '-schema', 'compaction(strategy=SizeTieredCompactionStrategy,enabled=false)', 'replication(factor=1)', '-rate', 'threads=10'])
node1.flush()
node2 = new_node(cluster)
node2.start(wait_for_binary_proto=True)
event = threading.Event()
failed = threading.Event()
jobs = 1
thread = threading.Thread(target=self._monitor_datadir, args=(node1, event, len(node1.get_sstables("keyspace1", "standard1")), jobs, failed))
thread.setDaemon(True)
thread.start()
node1.nodetool("cleanup -j {} keyspace1 standard1".format(jobs))
event.set()
thread.join()
> assert not failed.is_set()
E assert not True
E + where True = <bound method Event.is_set of <threading.Event object at 0x7f1f07fbd550>>()
E + where <bound method Event.is_set of <threading.Event object at 0x7f1f07fbd550>> = <threading.Event object at 0x7f1f07fbd550>.is_set

bootstrap_test.py:959: AssertionError
168.383
test_create_lots_of_mv_concurrentlySkippedawaiting CASSANDRA-10699

/home/cassandra/cassandra-dtest/concurrent_schema_changes_test.py:244: awaiting CASSANDRA-10699
0.001
test_disable_slow_query_logSuccess30.954
test_pkey_requirementSkipped5.1 > 5.0

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 5.0
0.596
test_use_custom_ssl_portSuccess125.902
test_data_change_impacting_later_pageSuccess46.661
test_complementary_deletion_with_limit_on_partition_key_column_with_empty_partitionsSuccess92.488
test_creating_and_dropping_keyspaceSuccess26.825
test_archive_commitlog_point_in_time_lnSuccess207.244
test_integer_orderSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.304
test_insert_max_default_ttlSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.544
test_expiration_overflow_policy_rejectSuccess50.871
test_float_formattingSuccess26.488
test_datetimeformat_round_trip_40Success26.230
test_force_repair_range_async_3Skipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.521
Properties »