Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-novnode_jdk11_python3.8_cythonno_x86_64_46_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_46_64180143010.6782024-11-21T21:02:03.278507d34f3a74c0c5

Tests

NameStatusTypeTime(s)
test_create_drop_role_validationSuccess47.825
test_logged_batch_rejects_counter_mutationsSuccess33.590
test_stop_commit_failure_policySuccess94.363
test_13911_rows_srpSkippedported to in-JVM from 4.0 >= 5.0.3

/home/cassandra/cassandra-dtest/conftest.py:526: ported to in-JVM from 4.0 >= 5.0.3
1.016
test_disk_balance_after_joining_ring_stcsSuccess663.960
test_clustering_columnSuccess112.724
test_sstableupgradeSkipped5.0.3 > 3.X

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 3.X
1.027
test_move_single_nodeSuccess138.516
test_complementary_update_with_limit_on_regular_columnSuccess142.507
test_nondefault_table_settingsSuccess30.054
test_optional_outbound_tlsSuccess272.610
test_batch_mutate_remove_slice_of_entire_supercolumnsSkipped5.0.3 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 4
1.045
test_incr_decr_standard_removeSkipped5.0.3 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0.3 > 4
1.043
test_full_repair_from_full_replicaSuccess123.309
test_oversized_mutationSuccess124.586
test_list_roles_after_loginSuccess49.909
test_bulk_round_trip_with_single_coreSuccess259.128
test_dc_repairFailureFailed: Timeout >900.0s

self = <repair_tests.repair_test.TestRepair object at 0x7f28d94ca9d0>

def test_dc_repair(self):
"""
* Set up a multi DC cluster
* Perform a -dc repair on two dc's
* Assert only nodes on those dcs were repaired
"""
cluster = self._setup_multi_dc()
node1 = cluster.nodes["node1"]
node2 = cluster.nodes["node2"]
node3 = cluster.nodes["node3"]

logger.debug("starting repair...")
opts = ["-dc", "dc1", "-dc", "dc2"]
opts += _repair_options(self.cluster.version(), ks="ks")
> node1.repair(opts)

repair_tests/repair_test.py:660:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:1576: in repair
return self.nodetool(cmd)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:1032: in nodetool
return handle_external_tool_process(p, ['nodetool', '-h', 'localhost', '-p', str(self.jmx_port)] + shlex.split(cmd))
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:2325: in handle_external_tool_process
out, err = process.communicate()
/usr/lib/python3.8/subprocess.py:1028: in communicate
stdout, stderr = self._communicate(input, endtime, timeout)
/usr/lib/python3.8/subprocess.py:1868: in _communicate
ready = selector.select(timeout)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <selectors.PollSelector object at 0x7f28d95a94f0>, timeout = None

def select(self, timeout=None):
# This is shared between poll() and epoll().
# epoll() has a different signature and handling of timeout parameter.
if timeout is None:
timeout = None
elif timeout <= 0:
timeout = 0
else:
# poll() has a resolution of 1 millisecond, round away from
# zero to wait *at least* timeout seconds.
timeout = math.ceil(timeout * 1e3)
ready = []
try:
> fd_event_list = self._selector.poll(timeout)
E Failed: Timeout >900.0s

/usr/lib/python3.8/selectors.py:415: Failed
908.967
Properties »