Unit Test Results.

Designed for use with JUnit and Ant.

All Failures

ClassNameStatusTypeTime(s)
8_cythonno_x86_64_30_32test_bootstrap_multidcFailureccmlib.node.TimeoutError: 22 Aug 2024 00:10:36 [node3] after 240.24/240 seconds Missing: ['127.0.0.5:7000.* is now UP'] not found in system.log: Head: INFO [ScheduledTasks:1] 2024-08-22 00:06:23,422 T Tail: ...7.0.0.3:7000(/127.0.0.1:52644)->/127.0.0.5:7000-LARGE_MESSAGES-1a3ffefc successfully connected, version = 12, framing = CRC, encryption = unencrypted

self = <upgrade_tests.upgrade_through_versions_test.TestUpgrade_current_4_0_x_To_indev_5_0_x object at 0x7f4d4b42e670>

def test_bootstrap_multidc(self):
# try and add a new node
# multi dc, 2 nodes in each dc
self.prepare()
cluster = self.cluster

if cluster.version() >= '5.0':
cluster.set_configuration_options({'user_defined_functions_threads_enabled': 'true',
'scripted_user_defined_functions_enabled': 'false'})
elif cluster.version() >= '3.0':
cluster.set_configuration_options({'enable_user_defined_functions': 'true',
'enable_scripted_user_defined_functions': 'true'})
elif cluster.version() >= '2.2':
cluster.set_configuration_options({'enable_user_defined_functions': 'true'})

cluster.populate([2, 2])
[node.start(use_jna=True, wait_for_binary_proto=True) for node in self.cluster.nodelist()]
self._multidc_schema_create()
> self.upgrade_scenario(populate=False, create_schema=False, after_upgrade_call=(self._bootstrap_new_node_multidc,))

upgrade_tests/upgrade_through_versions_test.py:865:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
upgrade_tests/upgrade_through_versions_test.py:506: in upgrade_scenario
call()
upgrade_tests/upgrade_through_versions_test.py:837: in _bootstrap_new_node_multidc
nnode.start(use_jna=True, wait_other_notice=240, wait_for_binary_proto=True)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:919: in start
node.watch_log_for_alive(self, from_mark=mark, timeout=wait_other_notice)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:686: in watch_log_for_alive
self.watch_log_for(tofind, from_mark=from_mark, timeout=timeout, filename=filename)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:610: in watch_log_for
TimeoutError.raise_if_passed(start=start, timeout=timeout, node=self.name,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

start = 1724285195.8876133, timeout = 240
msg = "Missing: ['127.0.0.5:7000.* is now UP'] not found in system.log:\n Head: INFO [ScheduledTasks:1] 2024-08-22 00:06:23...127.0.0.5:7000-LARGE_MESSAGES-1a3ffefc successfully connected, version = 12, framing = CRC, encryption = unencrypted\n"
node = 'node3'

@staticmethod
def raise_if_passed(start, timeout, msg, node=None):
if start + timeout < time.time():
> raise TimeoutError.create(start, timeout, msg, node)
E ccmlib.node.TimeoutError: 22 Aug 2024 00:10:36 [node3] after 240.24/240 seconds Missing: ['127.0.0.5:7000.* is now UP'] not found in system.log:
E Head: INFO [ScheduledTasks:1] 2024-08-22 00:06:23,422 T
E Tail: ...7.0.0.3:7000(/127.0.0.1:52644)->/127.0.0.5:7000-LARGE_MESSAGES-1a3ffefc successfully connected, version = 12, framing = CRC, encryption = unencrypted

../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:56: TimeoutError
546.663