self = <swh.storage.tests.test_in_memory.TestInMemoryStorage object at 0x7f3854eb10f0>
swh_storage = <swh.storage.in_memory.InMemoryStorage object at 0x7f3854eb1e10>
sample_data = <swh.storage.tests.storage_data.StorageData object at 0x7f3854eb1390>
def test_skipped_content_add_missing_hashes(self, swh_storage, sample_data):
cont, cont2 = [
attr.evolve(c, sha1_git=None) for c in sample_data.skipped_contents[:2]
]
contents_dict = [c.to_dict() for c in [cont, cont2]]
missing = list(swh_storage.skipped_content_missing(contents_dict))
assert len(missing) == 2
> actual_result = swh_storage.skipped_content_add([cont, cont, cont2])
.tox/py3/lib/python3.7/site-packages/swh/storage/tests/storage_tests.py:426:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.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 0x7f3854eb1e10>
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'...Content too long', origin=None, ctime=datetime.datetime(2021, 4, 29, 8, 21, 40, 561193, 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
TEST RESULT
TEST RESULT
- Run At
- Apr 29 2021, 10:23 AM