Unit Test Results.

Designed for use with JUnit and Ant.

Class dtest-upgrade-novnode_jdk11_python3.8_cythonno_x86_64_25_64

NameTestsErrorsFailuresSkippedTime(s)Time StampHost
8_cythonno_x86_64_25_643401131894.0992024-08-14T22:32:54.222060cdfbfa9314ce

Tests

NameStatusTypeTime(s)
test_decommissioned_wiped_node_can_gossip_to_single_seedSuccess164.062
test_collection_and_regularSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:2197: test not applicable to env.
0.000
test_whole_list_conditionalSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:4364: test not applicable to env.
0.000
test_listSuccess59.691
test_add_deletion_info_in_unsorted_columnSuccess55.665
test_order_bySuccess59.990
test_IN_clause_on_last_keySkipped5.0 > 3.11.99

/home/cassandra/cassandra-dtest/conftest.py:449: 5.0 > 3.11.99
0.510
test_select_list_key_multi_rowSkippedawaiting CASSANDRA-7396

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5378: awaiting CASSANDRA-7396
0.000
test_returned_nullSuccess141.489
test_whole_map_conditionalSuccess67.183
test_cql3_insert_thriftSkipped5.0 > 3.99

/home/cassandra/cassandra-dtest/conftest.py:449: 5.0 > 3.99
0.547
test_intersection_logic_returns_empty_resultSuccess155.545
test_reversed_comparatorSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:784: test not applicable to env.
0.000
test_renameSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:3006: test not applicable to env.
0.000
test_materialized_view_simpleSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5506: test not applicable to env.
0.000
test_range_with_deletesSuccess52.898
test_static_with_limitSuccess52.636
test_no_clusteringSuccess56.056
test_nan_infinitySuccess52.356
test_countSuccess56.604
test_conditional_deleteSuccess57.301
test_dynamic_cfSuccess53.646
test_multi_in_compactSuccess54.800
test_invalid_custom_timestampSuccess55.883
test_limit_bugsSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:1833: test not applicable to env.
0.001
test_static_columns_with_distinctSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:4076: test not applicable to env.
0.000
test_with_equal_results_to_page_sizeSuccess61.416
test_with_order_bySuccess54.422
test_basic_pagingSuccess54.397
test_single_partition_deletionsSuccess62.400
test_multiple_partition_deletionsSkippedtest not applicable to env.

/home/cassandra/cassandra-dtest/upgrade_tests/paging_test.py:1305: test not applicable to env.
0.000
test_sstableloader_compression_none_to_snappySkipped5.0 > 3.99

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 3.99
0.566
test_sstableloader_compression_snappy_to_deflateSkipped5.0 > 4.99

/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 4.99
0.365
test_parallel_upgradeFailureAssertionError: Could not update git

self = <upgrade_tests.upgrade_through_versions_test.TestProtoV3Upgrade_AllVersions_RandomPartitioner_EndsAt_Trunk_HEAD object at 0x7f5f5affc850>

@pytest.mark.timeout(3000)
def test_parallel_upgrade(self):
"""
Test upgrading cluster all at once (requires cluster downtime).
"""
> self.upgrade_scenario()

upgrade_tests/upgrade_through_versions_test.py:388:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
upgrade_tests/upgrade_through_versions_test.py:493: in upgrade_scenario
self.upgrade_to_version(version_meta, internode_ssl=internode_ssl)
upgrade_tests/upgrade_through_versions_test.py:562: in upgrade_to_version
node.set_install_dir(version=version_meta.version)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:334: in set_install_dir
self.__install_dir = self.node_setup(version, verbose=verbose)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/node.py:322: in node_setup
dir, v = setup(version, verbose=verbose)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/repository.py:70: in setup
clone_development(GITHUB_REPO, version, verbose=verbose)
../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/repository.py:270: in clone_development
raise e
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

git_repo = 'https://github.com/apache/cassandra'
version = 'github:apache/trunk', verbose = False, alias = False

def clone_development(git_repo, version, verbose=False, alias=False):
print_(git_repo, version)
target_dir = directory_name(version)
assert target_dir
if 'github' in version:
git_repo_name, git_branch = github_username_and_branch_name(version)
elif 'local:' in version:
git_repo_name = 'local_{}'.format(git_repo) # add git repo location to distinguish cache location for differing repos
git_branch = version.split(':')[-1] # last token on 'local:...' slugs should always be branch name
elif alias:
git_repo_name = 'alias_{}'.format(version.split('/')[0].split(':')[-1])
git_branch = version.split('/')[-1]
else:
git_repo_name = 'apache'
git_branch = version.split(':', 1)[1]
local_git_cache = os.path.join(__get_dir(), '_git_cache_' + git_repo_name)

logfile = lastlogfilename()
logger = get_logger(logfile)

try:
# Checkout/fetch a local repository cache to reduce the number of
# remote fetches we need to perform:
if not os.path.exists(local_git_cache):
common.info("Cloning Cassandra...")
process = subprocess.Popen(
['git', 'clone', '--mirror', git_repo, local_git_cache],
cwd=__get_dir(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, _, _ = log_info(process, logger)
assert out == 0, "Could not do a git clone"
else:
common.info("Fetching Cassandra updates...")
process = subprocess.Popen(
['git', 'fetch', '-fup', 'origin', '+refs/*:refs/*'],
cwd=local_git_cache, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, _, _ = log_info(process, logger)
> assert out == 0, "Could not update git"
E AssertionError: Could not update git

../cassandra/build/venv/lib/python3.8/site-packages/ccmlib/repository.py:177: AssertionError
462.358
Properties »