Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-novnode_jdk11_python3.8_cythonno_x86_64_3_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_3_6418015740.9742024-11-07T09:25:03.980728b7301710799c

Tests

NameStatusTypeTime(s)
test_archiving_fqlSuccess39.667
test_role_requires_password_to_loginSuccess31.450
test_simple_bootstrap_small_keepalive_periodSuccess59.443
test_disable_autocompaction_nodetool[LeveledCompactionStrategy]Success44.486
test_counter_node_downFailurecassandra.WriteTimeout: Error from server: code=1100 [Coordinator node timed out waiting for replica nodes' responses] message="Operation timed out - received 0/1 responses." info={'consistency': 'ONE', 'required_responses': 1, 'received_responses': 0, 'write_type': 'COUNTER'}

self = <counter_test.TestCounters object at 0x7f772f2be070>

def test_counter_node_down(self):
"""
@jira_ticket CASSANDRA-17411
"""
cluster = self.cluster
cluster.populate(3).start()
node1, node2, node3 = cluster.nodelist()
session = self.patient_cql_connection(node1)
create_ks(session, 'counter_tests', 3)

session.execute("""
CREATE TABLE IF NOT EXISTS counter_cs (
key text PRIMARY KEY,
count counter
)
""")

node2.stop(gently=False, wait_other_notice=True)

for _ in range(0, 20):
> session.execute("UPDATE counter_cs SET count = count + 1 WHERE key = 'test'")

counter_test.py:447:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:2618: in execute
return self.execute_async(query, parameters, trace, custom_payload, timeout, execution_profile, paging_state, host, execute_as).result()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <ResponseFuture: query='<SimpleStatement query="UPDATE counter_cs SET count = count + 1 WHERE key = 'test'", consisten...cy': 'ONE', 'required_responses': 1, 'received_responses': 0, 'write_type': 'COUNTER'} coordinator_host=127.0.0.1:9042>

def result(self):
"""
Return the final result or raise an Exception if errors were
encountered. If the final result or error has not been set
yet, this method will block until it is set, or the timeout
set for the request expires.

Timeout is specified in the Session request execution functions.
If the timeout is exceeded, an :exc:`cassandra.OperationTimedOut` will be raised.
This is a client-side timeout. For more information
about server-side coordinator timeouts, see :class:`.policies.RetryPolicy`.

Example usage::

>>> future = session.execute_async("SELECT * FROM mycf")
>>> # do other stuff...

>>> try:
... rows = future.result()
... for row in rows:
... ... # process results
... except Exception:
... log.exception("Operation failed:")

"""
self._event.wait()
if self._final_result is not _NOT_SET:
return ResultSet(self, self._final_result)
else:
> raise self._final_exception
E cassandra.WriteTimeout: Error from server: code=1100 [Coordinator node timed out waiting for replica nodes' responses] message="Operation timed out - received 0/1 responses." info={'consistency': 'ONE', 'required_responses': 1, 'received_responses': 0, 'write_type': 'COUNTER'}

../cassandra/build/venv/src/cassandra-driver/cassandra/cluster.py:4894: WriteTimeout
67.449
test_putget_with_internode_ssl_without_compressionSuccess53.902
test_base_column_in_view_pk_complex_timestamp_without_flushSuccess189.637
test_select_in_clause_with_duplicate_keysSuccess35.975
test_gcable_tombstone_resurrection_on_range_slice_querySkippedported to in-JVM from 4.0 >= 5.1

/home/cassandra/cassandra-dtest/conftest.py:526: ported to in-JVM from 4.0 >= 5.1
0.479
test_complementary_deletion_with_limit_on_static_column_with_not_empty_partitionsSuccess76.407
test_low_cardinality_indexesSuccess44.246
test_sstableloader_compression_deflate_to_noneSkippedDon't need to run base class test, only derived classes

/home/cassandra/cassandra-dtest/sstable_generation_loading_test.py:47: Don't need to run base class test, only derived classes
0.478
test_get_slice_rangeSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.443
test_multi_dc_tokens_defaultSkipped5.1 > 3.0.0

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 3.0.0
0.440
test_expiration_overflow_policy_capnowarnSuccess46.939
test_describe_mvSuccess26.157
test_reading_use_headerSuccess22.467
test_force_repair_range_async_1Skipped5.1 > 4

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