Page MenuHomeSoftware Heritage

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

TEST RESULT

Run At
Mar 10 2021, 11:39 AM
Details
archive_data = <swh.web.tests.conftest._ArchiveData object at 0x7f87b0e89f28> @given(origin()) > def test_lookup_revision_with_context_by(archive_data, origin): .tox/py3/lib/python3.7/site-packages/swh/web/tests/common/test_archive.py:725: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .tox/py3/lib/python3.7/site-packages/swh/web/tests/common/test_archive.py:741: in test_lookup_revision_with_context_by origin["url"], branch_name, None, rev .tox/py3/lib/python3.7/site-packages/swh/web/common/archive.py:726: in lookup_revision_with_context_by rev_root_id = _lookup_revision_id_by(origin, branch_name, timestamp) .tox/py3/lib/python3.7/site-packages/swh/web/common/archive.py:615: in _lookup_revision_id_by branch = _get_snapshot_branch(visit["snapshot"], branch_name) .tox/py3/lib/python3.7/site-packages/swh/web/common/archive.py:598: in _get_snapshot_branch visit["snapshot"], branches_from=branch_name, branches_count=10 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ snapshot_id = 'a939fc6ac1a445973cd6eecc04e86afd7b46bbfa' branches_from = 'refs/remotes/origin/master', branches_count = 10 target_types = None, branch_name_include_pattern = None branch_name_exclude_prefix = None def lookup_snapshot( snapshot_id: str, branches_from: str = "", branches_count: int = 1000, target_types: Optional[List[str]] = None, branch_name_include_pattern: Optional[str] = None, branch_name_exclude_prefix: Optional[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_include_pattern: if provided, only return branches whose name contains given pattern branch_name_exclude_prefix: if provided, do not return branches whose name starts with given pattern Returns: A dict filled with the snapshot content. """ snapshot_id_bin = _to_sha1_bin(snapshot_id) partial_branches = storage.snapshot_get_branches( snapshot_id_bin, branches_from.encode(), branches_count, target_types, branch_name_include_pattern.encode() if branch_name_include_pattern else None, > branch_name_exclude_prefix.encode() if branch_name_exclude_prefix else None, ) E TypeError: snapshot_get_branches() takes from 2 to 5 positional arguments but 7 were given .tox/py3/lib/python3.7/site-packages/swh/web/common/archive.py:1088: TypeError