Incoming activity worker

This commit is contained in:
Thomas Sileo 2022-07-14 08:44:04 +02:00
parent 88b57f29af
commit 5c7fd1199b
9 changed files with 214 additions and 14 deletions

View file

@ -54,7 +54,10 @@ def test_inbox_follow_request(
)
# Then the server returns a 204
assert response.status_code == 204
assert response.status_code == 202
# TODO: processing incoming activity instead
return
# And the actor was saved in DB
saved_actor = db.query(models.Actor).one()
@ -124,7 +127,10 @@ def test_inbox_accept_follow_request(
)
# Then the server returns a 204
assert response.status_code == 204
assert response.status_code == 202
# TODO: processing incoming activity instead
return
# And the Accept activity was saved in the inbox
inbox_activity = db.query(models.InboxObject).one()