takahe/tests/users/views/test_activitypub.py

64 lines
2.4 KiB
Python
Raw Normal View History

2022-11-17 05:23:32 +00:00
import pytest
@pytest.mark.django_db
def test_webfinger_actor(client, identity):
2022-11-17 05:23:32 +00:00
"""
Ensures the webfinger and actor URLs are working properly
"""
identity.generate_keypair()
# Fetch their webfinger
response = client.get("/.well-known/webfinger?resource=acct:test@example.com")
assert response.headers["content-type"] == "application/jrd+json"
data = response.json()
2022-11-17 05:23:32 +00:00
assert data["subject"] == "acct:test@example.com"
assert data["aliases"][0] == "https://example.com/@test/"
# Fetch their actor
2022-11-20 18:37:26 +00:00
data = client.get("/@test@example.com/", HTTP_ACCEPT="application/ld+json").json()
assert data["id"] == "https://example.com/@test@example.com/"
2022-12-10 20:24:49 +00:00
assert data["endpoints"]["sharedInbox"] == "https://example.com/inbox/"
@pytest.mark.django_db
def test_webfinger_system_actor(client):
"""
Ensures the webfinger and actor URLs are working properly for system actor
"""
# Fetch their webfinger
data = client.get(
"/.well-known/webfinger?resource=acct:__system__@example.com"
).json()
assert data["subject"] == "acct:__system__@example.com"
assert data["aliases"][0] == "https://example.com/about/"
# Fetch their actor
data = client.get("/actor/", HTTP_ACCEPT="application/ld+json").json()
assert data["id"] == "https://example.com/actor/"
assert data["inbox"] == "https://example.com/actor/inbox/"
2022-12-10 20:24:49 +00:00
assert data["endpoints"]["sharedInbox"] == "https://example.com/inbox/"
@pytest.mark.django_db
2023-01-09 06:06:09 +00:00
def test_delete_unknown_actor(client, identity):
"""
Tests that unknown actor delete messages are dropped
"""
data = {
"@context": "https://www.w3.org/ns/activitystreams",
2023-01-09 06:06:09 +00:00
"actor": "https://mastodon.test/users/fakec8b6984105c8f15070a2",
"id": "https://mastodon.test/users/fakec8b6984105c8f15070a2#delete",
"object": "https://mastodon.test/users/fakec8b6984105c8f15070a2",
"signature": {
"created": "2022-12-06T03:54:28Z",
2023-01-09 06:06:09 +00:00
"creator": "https://mastodon.test/users/fakec8b6984105c8f15070a2#main-key",
"signatureValue": "This value doesn't matter",
"type": "RsaSignature2017",
},
"to": ["https://www.w3.org/ns/activitystreams#Public"],
"type": "Delete",
}
resp = client.post(
identity.inbox_uri, data=data, content_type="application/activity+json"
)
2023-01-09 06:06:09 +00:00
print(resp.content)
assert resp.status_code == 202