2023-04-06 11:36:10 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import pytest
|
|
|
|
import fastapi
|
|
|
|
import respx
|
2023-04-07 05:47:13 +02:00
|
|
|
import httpx
|
|
|
|
from uuid import uuid4
|
|
|
|
from tests import factories # type: ignore
|
|
|
|
|
|
|
|
from unittest import mock
|
2023-04-06 11:36:10 +02:00
|
|
|
from app.main import app
|
|
|
|
from app.utils import precheck
|
|
|
|
from fastapi.testclient import TestClient
|
|
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app import activitypub as ap, httpsig
|
|
|
|
from app.config import AP_CONTENT_TYPE
|
2023-04-07 05:47:13 +02:00
|
|
|
from app import models
|
|
|
|
from sqlalchemy import select
|
2023-04-06 11:36:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-04-07 05:47:13 +02:00
|
|
|
def test_inbox_follow_request(
|
2023-04-06 11:36:10 +02:00
|
|
|
db: Session,
|
|
|
|
client: TestClient,
|
|
|
|
respx_mock: respx.MockRouter,
|
|
|
|
) -> None:
|
|
|
|
|
|
|
|
async def inbox_prechecker(
|
|
|
|
request: fastapi.Request,
|
|
|
|
) -> bool:
|
|
|
|
return True
|
|
|
|
|
2023-04-07 08:07:59 +02:00
|
|
|
# build test actor
|
2023-04-07 05:47:13 +02:00
|
|
|
ra = factories.RemoteActorFactory(
|
|
|
|
base_url="https://example.com",
|
|
|
|
username="test",
|
|
|
|
public_key="pk",
|
|
|
|
)
|
|
|
|
|
|
|
|
ap_id = ra.ap_id # type: ignore
|
2023-04-07 08:07:59 +02:00
|
|
|
app.dependency_overrides[precheck.inbox_prechecker] = inbox_prechecker
|
|
|
|
|
|
|
|
# mock request
|
2023-04-07 05:47:13 +02:00
|
|
|
respx_mock.get(ap_id).mock(return_value=httpx.Response(200,json=ra.ap_actor))
|
|
|
|
respx_mock.post(ap_id + "/inbox").mock(return_value=httpx.Response(202))
|
|
|
|
|
2023-04-07 08:07:59 +02:00
|
|
|
# send follower request
|
2023-04-07 05:47:13 +02:00
|
|
|
with mock.patch("app.boxes.MANUALLY_APPROVES_FOLLOWERS", False):
|
|
|
|
response = client.post(
|
|
|
|
"/inbox",
|
|
|
|
headers={"Content-Type": AP_CONTENT_TYPE},
|
|
|
|
json={
|
|
|
|
"@context": ap.AS_CTX,
|
|
|
|
"type": "Follow",
|
|
|
|
"id": ap_id + "/follow/" + (uuid4().hex),
|
|
|
|
"actor": ap_id,
|
|
|
|
"object": ap.ME["id"],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 202
|
|
|
|
|
2023-04-07 08:07:59 +02:00
|
|
|
# actor was saved in actor table
|
2023-04-07 05:47:13 +02:00
|
|
|
saved_actor = db.execute(select(models.Actor)).scalar_one()
|
|
|
|
assert saved_actor.ap_id == ap_id
|
|
|
|
|
2023-04-07 08:07:59 +02:00
|
|
|
# follower request was saved in outbox table
|
2023-04-07 05:47:13 +02:00
|
|
|
outbox_object = db.execute(select(models.OutboxObject)).scalar_one()
|
|
|
|
assert outbox_object.ap_type == "Accept"
|
2023-04-07 08:07:59 +02:00
|
|
|
|
|
|
|
# follower was saved in follower table
|
|
|
|
follower_actor = db.execute(select(models.Follower)).scalar_one()
|
|
|
|
assert follower_actor.ap_actor_id == ap_id
|