Name | Status | Type | Time(s) |
test_node_cannot_join_as_hibernating_node_without_replace_address | Skipped | ported to in-JVM from 4.1 >= 5.0
/home/cassandra/cassandra-dtest/conftest.py:526: ported to in-JVM from 4.1 >= 5.0 | 1.016 |
test_boolean | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:2251: test not applicable to env. | 0.000 |
test_expanded_list_item_conditional | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:4500: test not applicable to env. | 0.003 |
test_range_query | Success | | 90.096 |
test_user_types | Success | | 60.575 |
test_order_by_validation | Success | | 92.379 |
test_NPE_during_select_with_token | Success | | 58.321 |
test_secondary_index_query | Skipped | https://issues.apache.org/jira/browse/CASSANDRA-14961
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:5427: https://issues.apache.org/jira/browse/CASSANDRA-14961 | 0.000 |
test_composite_index_collections | Success | | 155.663 |
test_expanded_map_item_conditional | Success | | 65.275 |
test_row_existence | Success | | 134.072 |
test_collection_indexing | Success | | 72.048 |
test_nameless_index | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:868: test not applicable to env. | 0.000 |
test_conditional_update | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:3062: test not applicable to env. | 0.000 |
test_large_collection_errors | Skipped | 5.0 > 2.99
/home/cassandra/cassandra-dtest/conftest.py:449: 5.0 > 2.99 | 0.767 |
test_composite_partition_key_validation | Success | | 52.833 |
test_limit_compact_table | Success | | 55.066 |
test_range_slice | Success | | 54.480 |
test_static_columns_cas | Success | | 55.071 |
test_token_range | Success | | 56.112 |
test_select_with_alias | Success | | 56.162 |
test_sparse_cf | Success | | 57.657 |
test_large_clustering_in | Success | | 58.268 |
test_end_of_component_uses_oecBound | Success | | 56.524 |
test_order_by_multikey | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:1922: test not applicable to env. | 0.000 |
test_cas_and_ttl | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/cql_tests.py:4204: test not applicable to env. | 0.000 |
test_with_no_results | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/paging_test.py:47: test not applicable to env. | 0.000 |
test_with_limit | Success | | 63.601 |
test_paging_a_single_wide_row | Success | | 63.958 |
test_single_row_deletions | Success | | 67.357 |
test_single_cell_deletions | Skipped | test not applicable to env.
/home/cassandra/cassandra-dtest/upgrade_tests/paging_test.py:1374: test not applicable to env. | 0.001 |
test_sstableloader_compression_snappy_to_none | Skipped | 5.0 > 3.99
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 3.99 | 0.533 |
test_sstableloader_compression_deflate_to_snappy | Skipped | 5.0 > 4.99
/home/cassandra/cassandra-dtest/conftest.py:468: 5.0 > 4.99 | 0.512 |
test_parallel_upgrade_with_internode_ssl | Failure | AssertionError: Could not update git
self = <upgrade_tests.upgrade_through_versions_test.TestProtoV3Upgrade_AllVersions_RandomPartitioner_EndsAt_Trunk_HEAD object at 0x7fee93b4c0d0>
@pytest.mark.timeout(3000)
def test_parallel_upgrade_with_internode_ssl(self):
"""
Test upgrading cluster all at once (requires cluster downtime), with internode ssl.
"""
> self.upgrade_scenario(internode_ssl=True)
upgrade_tests/upgrade_through_versions_test.py:402:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
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 | 554.696 |