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 22 2021, 8:40 PM
Details
swh_storage = <swh.storage.filter.FilteringProxyStorage object at 0x7fa90a916ba8> sample_data = <swh.storage.tests.storage_data.StorageData object at 0x7fa90a916048> 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:386: in skipped_content_add return self._skipped_content_add(contents) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <swh.storage.in_memory.InMemoryStorage object at 0x7fa90a916710> 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'...g', origin='file:///dev/zero', ctime=datetime.datetime(2021, 4, 22, 18, 39, 13, 474902, tzinfo=datetime.timezone.utc))] def _skipped_content_add(self, contents: List[SkippedContent]) -> Dict: # Filter-out content already in the database. > if self._check_missing: E AttributeError: 'InMemoryStorage' object has no attribute '_check_missing' .tox/py3/lib/python3.7/site-packages/swh/storage/cassandra/storage.py:360: AttributeError