self = <swh.storage.tests.test_in_memory.TestInMemoryStorage object at 0x7fb615eefb70>
swh_storage = <swh.storage.in_memory.InMemoryStorage object at 0x7fb615eef7b8>
sample_data = <swh.storage.tests.storage_data.StorageData object at 0x7fb7401bd978>
def test_origin_search_single_result(self, swh_storage, sample_data):
origin, origin2 = sample_data.origins[:2]
actual_page = swh_storage.origin_search(origin.url)
assert actual_page.next_page_token is None
assert actual_page.results == []
actual_page = swh_storage.origin_search(origin.url, regexp=True)
assert actual_page.next_page_token is None
assert actual_page.results == []
> swh_storage.origin_add([origin])
.tox/py3/lib/python3.7/site-packages/swh/storage/tests/storage_tests.py:1900:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <swh.storage.in_memory.InMemoryStorage object at 0x7fb615eef7b8>
origins = [Origin(url='https://github.com/user1/repo1')]
def origin_add(self, origins: List[Origin]) -> Dict[str, int]:
> 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:937: AttributeError
TEST RESULT
TEST RESULT
- Run At
- Apr 22 2021, 8:33 PM