Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-latest_jdk11_python3.8_cythonno_x86_64_23_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_23_6417014758.3502024-09-19T00:17:17.8922199056d9ef511e

Tests

NameStatusTypeTime(s)
test_users_cant_alter_their_superuser_statusSuccess31.103
test_aggregate_function_permissionsSuccess30.901
test_cdc_disabled_data_readable_on_round_tripSuccess25.719
test_basicSkippedawaiting CASSANDRA-10699

/home/cassandra/cassandra-dtest/concurrent_schema_changes_test.py:358: awaiting CASSANDRA-10699
0.001
test_conditional_updates_on_static_columns_with_null_valuesSuccess42.830
test_complex_schemaSuccess34.481
test_correct_dc_rack_in_nodetool_infoSuccess93.426
test_cell_TTL_expiry_during_pagingSuccess62.380
test_complementary_deletion_with_limit_on_clustering_key_columnFailureAssertionError: Expected nothing from SELECT * FROM t WHERE c = 0 LIMIT 1, but got [[1, 0]]

self = <replica_side_filtering_test.TestSecondaryIndexes object at 0x7fd452f7f250>

def test_complementary_deletion_with_limit_on_clustering_key_column(self):
self._prepare_cluster(
create_table="CREATE TABLE t (k int, c int, PRIMARY KEY (k, c))",
create_index="CREATE INDEX ON t(c)",
both_nodes=["INSERT INTO t (k, c) VALUES (1, 0)",
"INSERT INTO t (k, c) VALUES (2, 0)"],
only_node1=["DELETE FROM t WHERE k = 1"],
only_node2=["DELETE FROM t WHERE k = 2"])

> self._assert_none("SELECT * FROM t WHERE c = 0 LIMIT 1")

replica_side_filtering_test.py:213:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
replica_side_filtering_test.py:81: in _assert_none
assert_none(self.session, decorated_query)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

session = <cassandra.cluster.Session object at 0x7fd4501a68b0>
query = 'SELECT * FROM t WHERE c = 0 LIMIT 1', cl = None

def assert_none(session, query, cl=None):
"""
Assert query returns nothing
@param session Session to use
@param query Query to run
@param cl Optional Consistency Level setting. Default ONE

Examples:
assert_none(self.session1, "SELECT * FROM test where key=2;")
assert_none(cursor, "SELECT * FROM test WHERE k=2", cl=ConsistencyLevel.SERIAL)
"""
simple_query = SimpleStatement(query, consistency_level=cl)
res = session.execute(simple_query)
list_res = _rows_to_list(res)
> assert list_res == [], "Expected nothing from {}, but got {}".format(query, list_res)
E AssertionError: Expected nothing from SELECT * FROM t WHERE c = 0 LIMIT 1, but got [[1, 0]]

tools/assertions.py:149: AssertionError
80.009
test_creating_and_dropping_table_with_2ary_indexesSuccess23.232
test_archive_and_restore_commitlog_repeatedlySuccess104.237
test_long_removeSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.544
test_expiration_with_default_ttlSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.492
test_ttl_is_replicatedSuccess37.434
test_datetime_valuesSkipped5.1 > 4

/home/cassandra/cassandra-dtest/conftest.py:468: 5.1 > 4
0.514
test_reading_with_skip_and_max_rowsSuccess59.466
test_consistent_repairSuccess131.018
Properties »