replayer_storage_and_client = (<swh.storage.in_memory.InMemoryStorage object at 0x7f56e146af60>, <swh.journal.client.JournalClient object at 0x7f56e146ab00>)
caplog = <_pytest.logging.LogCaptureFixture object at 0x7f56e146a518>
def test_storage_play_with_collision(replayer_storage_and_client, caplog):
"""Another replayer scenario with collisions.
This:
- writes objects to the topic, including colliding contents
- replayer consumes objects from the topic and replay them
- This drops the colliding contents from the replay when detected
"""
src, replayer = replayer_storage_and_client
# Fill Kafka using a source storage
nb_sent = 0
for object_type, objects in TEST_OBJECTS.items():
> method = getattr(src, object_type + "_add")
E AttributeError: 'InMemoryStorage' object has no attribute 'extid_add'
.tox/py3/lib/python3.7/site-packages/swh/storage/tests/test_replay.py:113: AttributeError
TEST RESULT
TEST RESULT
- Run At
- Mar 11 2021, 3:13 PM