self = <swh.storage.tests.test_tenacious.TestTenaciousStorage object at 0x7fd9d9fe0cf8>
swh_storage = <swh.storage.proxies.tenacious.TenaciousProxyStorage object at 0x7fd9da042ba8>
sample_data = <swh.storage.tests.storage_data.StorageData object at 0x7fd9d76dff28>
def test_directory_add(self, swh_storage, sample_data):
content = sample_data.content
directory = sample_data.directories[1]
assert directory.entries[0].target == content.sha1_git
swh_storage.content_add([content])
init_missing = list(swh_storage.directory_missing([directory.id]))
assert [directory.id] == init_missing
actual_result = swh_storage.directory_add([directory])
assert actual_result == {"directory:add": 1}
assert ("directory", directory) in list(
swh_storage.journal_writer.journal.objects
)
actual_data = list(swh_storage.directory_ls(directory.id))
expected_data = list(transform_entries(swh_storage, directory))
for data in actual_data:
assert data in expected_data
after_missing = list(swh_storage.directory_missing([directory.id]))
assert after_missing == []
if not isinstance(swh_storage, (CassandraStorage, RemoteStorage)):
swh_storage.refresh_stat_counters()
> assert swh_storage.stat_counters()["directory"] == 1
.tox/py3/lib/python3.7/site-packages/swh/storage/tests/storage_tests.py:714:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <swh.storage.in_memory.InMemoryStorage object at 0x7fd9da02a390>
def stat_counters(self):
> raise NotImplementedError()
E NotImplementedError
.tox/py3/lib/python3.7/site-packages/swh/storage/cassandra/storage.py:1293: NotImplementedError
TEST RESULT
TEST RESULT
- Run At
- Aug 27 2021, 12:11 PM