Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.storage.tests.test_api_client.TestStorageApi::test_types
Failed

TEST RESULT

Run At
Sep 23 2020, 1:19 PM
Details
self = <swh.storage.tests.test_api_client.TestStorageApi object at 0x7f55fb5d3b70> swh_storage_backend_config = {'check_config': {'check_write': True}, 'cls': 'local', 'db': 'postgresql://postgres@127.0.0.1:14085/tests', 'journal_writer': {'cls': 'memory'}, ...} def test_types(self, swh_storage_backend_config): """Checks all methods of StorageInterface are implemented by this backend, and that they have the same signature.""" # Create an instance of the protocol (which cannot be instantiated # directly, so this creates a subclass, then instantiates it) interface = type("_", (StorageInterface,), {})() storage = get_storage(**swh_storage_backend_config) assert "content_add" in dir(interface) missing_methods = [] for meth_name in dir(interface): if meth_name.startswith("_"): continue interface_meth = getattr(interface, meth_name) try: concrete_meth = getattr(storage, meth_name) except AttributeError: if not getattr(interface_meth, "deprecated_endpoint", False): # The backend is missing a (non-deprecated) endpoint missing_methods.append(meth_name) continue expected_signature = inspect.signature(interface_meth) actual_signature = inspect.signature(concrete_meth) > assert expected_signature == actual_signature, meth_name E AssertionError: flush E assert <Signature (o...str]) -> Dict> == <Signature (o...ict[str, int]> E +<Signature (object_types: Iterable[str]) -> Dict> E -<Signature (object_types: Iterable[str]) -> Dict[str, int]> .tox/py3/lib/python3.7/site-packages/swh/storage/tests/storage_tests.py:139: AssertionError