Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.storage.tests.test_filter::test_filtering_proxy_storage_skipped_content_missing_sha1_git
Failed

TEST RESULT

Run At
Apr 29 2021, 10:23 AM
Details
swh_storage = <swh.storage.filter.FilteringProxyStorage object at 0x7f3845ccb828> sample_data = <swh.storage.tests.storage_data.StorageData object at 0x7f3845ccbf28> def test_filtering_proxy_storage_skipped_content_missing_sha1_git( swh_storage, sample_data ): sample_contents = [ attr.evolve(c, sha1_git=None) for c in sample_data.skipped_contents ] sample_content, sample_content2 = [c.to_dict() for c in sample_contents[:2]] content = next(swh_storage.skipped_content_missing([sample_content])) assert content["sha1"] == sample_content["sha1"] > s = swh_storage.skipped_content_add([sample_contents[0]]) .tox/py3/lib/python3.7/site-packages/swh/storage/tests/test_filter.py:76: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .tox/py3/lib/python3.7/site-packages/swh/storage/filter.py:49: in skipped_content_add [x for x in content if x.sha1_git is None or x.sha1_git in contents_to_add] .tox/py3/lib/python3.7/site-packages/swh/storage/cassandra/storage.py:389: in skipped_content_add return self._skipped_content_add(contents) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <swh.storage.in_memory.InMemoryStorage object at 0x7f3845ccb710> contents = [SkippedContent(sha1=b'C\xe4]V\xf8\x89\x93\xaa\xe6\xa0\x19\x80\x13\xef\xa8\x07\x16\xfd\x89 ', sha1_git=None, sha256=b'...ng', origin='file:///dev/zero', ctime=datetime.datetime(2021, 4, 29, 8, 21, 37, 131826, tzinfo=datetime.timezone.utc))] def _skipped_content_add(self, contents: List[SkippedContent]) -> Dict: # Filter-out content already in the database. > if not self._allow_overwrite: E AttributeError: 'InMemoryStorage' object has no attribute '_allow_overwrite' .tox/py3/lib/python3.7/site-packages/swh/storage/cassandra/storage.py:363: AttributeError