kopia lustrzana https://git.sr.ht/~tsileo/microblog.pub
54 wiersze
1.8 KiB
Python
54 wiersze
1.8 KiB
Python
import pytest
|
|
from fastapi.testclient import TestClient
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app import activitypub as ap
|
|
from app.actor import LOCAL_ACTOR
|
|
|
|
_ACCEPTED_AP_HEADERS = [
|
|
"application/activity+json",
|
|
"application/activity+json; charset=utf-8",
|
|
"application/ld+json",
|
|
'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
|
|
]
|
|
|
|
|
|
def test_index__html(db: Session, client: TestClient):
|
|
response = client.get("/")
|
|
assert response.status_code == 200
|
|
assert response.headers["content-type"].startswith("text/html")
|
|
|
|
|
|
@pytest.mark.parametrize("accept", _ACCEPTED_AP_HEADERS)
|
|
def test_index__ap(db: Session, client: TestClient, accept: str):
|
|
response = client.get("/", headers={"Accept": accept})
|
|
assert response.status_code == 200
|
|
assert response.headers["content-type"] == ap.AP_CONTENT_TYPE
|
|
assert response.json() == LOCAL_ACTOR.ap_actor
|
|
|
|
|
|
def test_followers__ap(client, db) -> None:
|
|
response = client.get("/followers", headers={"Accept": ap.AP_CONTENT_TYPE})
|
|
assert response.status_code == 200
|
|
assert response.headers["content-type"] == ap.AP_CONTENT_TYPE
|
|
assert response.json()["id"].endswith("/followers")
|
|
|
|
|
|
def test_followers__html(client, db) -> None:
|
|
response = client.get("/followers")
|
|
assert response.status_code == 200
|
|
assert response.headers["content-type"].startswith("text/html")
|
|
|
|
|
|
def test_following__ap(client, db) -> None:
|
|
response = client.get("/following", headers={"Accept": ap.AP_CONTENT_TYPE})
|
|
assert response.status_code == 200
|
|
assert response.headers["content-type"] == ap.AP_CONTENT_TYPE
|
|
assert response.json()["id"].endswith("/following")
|
|
|
|
|
|
def test_following__html(client, db) -> None:
|
|
response = client.get("/following")
|
|
assert response.status_code == 200
|
|
assert response.headers["content-type"].startswith("text/html")
|