Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.web.tests.common.test_identifiers::Tests / Python tests / test_get_swhids_info_characters_and_url_escaping
Failed

TEST RESULT

Run At
Nov 26 2020, 6:22 PM
Details
archive_data = <swh.web.tests.conftest._ArchiveData object at 0x7fdb38489a20> @given(origin(), directory()) > def test_get_swhids_info_characters_and_url_escaping(archive_data, origin, directory): .tox/py3/lib/python3.7/site-packages/swh/web/tests/common/test_identifiers.py:416: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .tox/py3/lib/python3.7/site-packages/swh/web/tests/common/test_identifiers.py:417: in test_get_swhids_info_characters_and_url_escaping snapshot_context = get_snapshot_context(origin_url=origin["url"]) .tox/py3/lib/python3.7/site-packages/swh/web/browse/snapshot_context.py:466: in get_snapshot_context origin_info, timestamp, visit_id, snapshot_id .tox/py3/lib/python3.7/site-packages/swh/web/browse/snapshot_context.py:390: in get_origin_visit_snapshot return get_snapshot_content(visit_info["snapshot"]) .tox/py3/lib/python3.7/site-packages/swh/web/browse/snapshot_context.py:335: in get_snapshot_content snapshot_id, branches_count=snapshot_content_max_size _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ snapshot_id = 'a939fc6ac1a445973cd6eecc04e86afd7b46bbfa', branches_from = '' branches_count = 1000, target_types = None, branch_name_includes = None branch_name_excludes = None def lookup_snapshot( snapshot_id: str, branches_from: str = "", branches_count: int = 1000, target_types: Optional[List[str]] = None, branch_name_includes: Optional[List[str]] = None, branch_name_excludes: Optional[List[str]] = None, ) -> Dict[str, Any]: """Return information about a snapshot, aka the list of named branches found during a specific visit of an origin. Args: snapshot_id: sha1 identifier of the snapshot branches_from: optional parameter used to skip branches whose name is lesser than it before returning them branches_count: optional parameter used to restrain the amount of returned branches target_types: optional parameter used to filter the target types of branch to return (possible values that can be contained in that list are `'content', 'directory', 'revision', 'release', 'snapshot', 'alias'`) branch_name_includes: optional parameter used to filter branches according to their names, only those whose name is containing one of the substring in the provided list will be returned branch_name_excludes: optional parameter used to filter out branches according to their names, those whose name is containing one of the substring in the provided list will not be returned Returns: A dict filled with the snapshot content. """ snapshot_id_bin = _to_sha1_bin(snapshot_id) branches_name_pattern = None if branch_name_includes and branch_name_excludes: includes = "|".join([re.escape(include) for include in branch_name_includes]) excludes = "|".join([re.escape(exclude) for exclude in branch_name_excludes]) branches_name_pattern = ( f"^(?:(?!(?:{excludes})).)*(?:{includes})(?:(?!(?:{excludes})).)*$" ) elif branch_name_includes: branches_name_pattern = "|".join( [re.escape(include) for include in branch_name_includes] ) elif branch_name_excludes: excludes = "|".join([re.escape(exclude) for exclude in branch_name_excludes]) branches_name_pattern = f"^((?!{excludes}).)*$" partial_branches = storage.snapshot_get_branches( snapshot_id_bin, branches_from.encode(), branches_count, target_types, > branches_name_pattern, ) E TypeError: snapshot_get_branches() takes from 2 to 5 positional arguments but 6 were given .tox/py3/lib/python3.7/site-packages/swh/web/common/archive.py:1069: TypeError