From f88efa40d497995a5f645d03f99345c804f808d7 Mon Sep 17 00:00:00 2001 From: Michael Manfre Date: Tue, 22 Nov 2022 23:53:02 -0500 Subject: Code dedupe Webfinger and fix SystemActor inbox URL --- tests/users/views/test_activitypub.py | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) (limited to 'tests/users') diff --git a/tests/users/views/test_activitypub.py b/tests/users/views/test_activitypub.py index 72ab8c3..d9ad578 100644 --- a/tests/users/views/test_activitypub.py +++ b/tests/users/views/test_activitypub.py @@ -1,26 +1,11 @@ import pytest -from users.models import Domain, Identity, User - @pytest.mark.django_db -def test_webfinger_actor(client): +def test_webfinger_actor(client, identity): """ Ensures the webfinger and actor URLs are working properly """ - # Make a user - user = User.objects.create(email="test@example.com") - # Make a domain - domain = Domain.objects.create(domain="example.com", local=True) - domain.users.add(user) - # Make an identity for them - identity = Identity.objects.create( - actor_uri="https://example.com/@test@example.com/", - username="test", - domain=domain, - name="Test User", - local=True, - ) identity.generate_keypair() # Fetch their webfinger data = client.get("/.well-known/webfinger?resource=acct:test@example.com").json() @@ -29,3 +14,20 @@ def test_webfinger_actor(client): # Fetch their actor data = client.get("/@test@example.com/", HTTP_ACCEPT="application/ld+json").json() assert data["id"] == "https://example.com/@test@example.com/" + + +@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/" -- cgit v1.2.3