diff options
Diffstat (limited to 'tests/users/views')
| -rw-r--r-- | tests/users/views/test_activitypub.py | 34 | 
1 files changed, 18 insertions, 16 deletions
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/"  | 
