kopia lustrzana https://github.com/jointakahe/takahe
143 wiersze
4.3 KiB
Python
143 wiersze
4.3 KiB
Python
import pytest
|
|
|
|
from activities.models import Post
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_post_status(api_client):
|
|
"""
|
|
Tests posting, editing and deleting a status
|
|
"""
|
|
# Post new one
|
|
response = api_client.post(
|
|
"/api/v1/statuses",
|
|
content_type="application/json",
|
|
data={
|
|
"status": "Hello, world!",
|
|
"visibility": "unlisted",
|
|
},
|
|
).json()
|
|
assert response["content"] == "<p>Hello, world!</p>"
|
|
assert response["visibility"] == "unlisted"
|
|
status_id = response["id"]
|
|
# Retrieve "source" version an edit would use
|
|
response = api_client.get(f"/api/v1/statuses/{status_id}/source").json()
|
|
assert response["text"] == "Hello, world!"
|
|
# Post an edit
|
|
response = api_client.put(
|
|
f"/api/v1/statuses/{status_id}",
|
|
content_type="application/json",
|
|
data={
|
|
"status": "Hello, world! Again!",
|
|
},
|
|
).json()
|
|
# Check it stuck
|
|
response = api_client.get(f"/api/v1/statuses/{status_id}").json()
|
|
assert response["content"] == "<p>Hello, world! Again!</p>"
|
|
# Delete it
|
|
response = api_client.delete(f"/api/v1/statuses/{status_id}")
|
|
assert response.status_code == 200
|
|
# Check it's gone
|
|
response = api_client.get(f"/api/v1/statuses/{status_id}")
|
|
assert response.status_code == 404
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_mention_format(api_client, identity, remote_identity):
|
|
"""
|
|
Ensures mentions work, and only have one link around them.
|
|
"""
|
|
# Make a local post and check it
|
|
response = api_client.post(
|
|
"/api/v1/statuses",
|
|
data={
|
|
"status": "Hello, @test!",
|
|
"visibility": "unlisted",
|
|
},
|
|
).json()
|
|
assert (
|
|
response["content"]
|
|
== '<p>Hello, <a href="https://example.com/@test/">@test</a>!</p>'
|
|
)
|
|
assert response["visibility"] == "unlisted"
|
|
|
|
# Make a remote post and check it
|
|
post = Post.objects.create(
|
|
local=False,
|
|
author=remote_identity,
|
|
content='<p>Hey <a href="https://example.com/@test/" class="u-url mention" rel="nofollow">@test</a></p>',
|
|
object_uri="https://remote.test/status/12345",
|
|
)
|
|
post.mentions.add(identity)
|
|
response = api_client.get(
|
|
f"/api/v1/statuses/{post.id}",
|
|
).json()
|
|
assert (
|
|
response["text"] == '<p>Hey <a href="https://example.com/@test/">@test</a></p>'
|
|
)
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_post_question_status(api_client):
|
|
response = api_client.post(
|
|
"/api/v1/statuses",
|
|
content_type="application/json",
|
|
data={
|
|
"status": "Hello, world!",
|
|
"poll": {
|
|
"options": ["Option 1", "Option 2"],
|
|
"expires_in": 300,
|
|
},
|
|
},
|
|
).json()
|
|
|
|
assert response["poll"]["id"] == response["id"]
|
|
assert response["poll"]["options"] == [
|
|
{"title": "Option 1", "votes_count": 0},
|
|
{"title": "Option 2", "votes_count": 0},
|
|
]
|
|
assert not response["poll"]["expired"]
|
|
assert not response["poll"]["multiple"]
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_question_format(api_client, remote_identity):
|
|
"""
|
|
Ensures incoming questions are property parsed.
|
|
"""
|
|
# Make a remote question post and check it
|
|
post = Post.objects.create(
|
|
local=False,
|
|
author=remote_identity,
|
|
content="<p>Test Question</p>",
|
|
object_uri="https://remote.test/status/123456",
|
|
type=Post.Types.question,
|
|
type_data={
|
|
"type": "Question",
|
|
"mode": "oneOf",
|
|
"options": [
|
|
{"name": "Option 1", "type": "Note", "votes": 10},
|
|
{"name": "Option 2", "type": "Note", "votes": 20},
|
|
],
|
|
"voter_count": 30,
|
|
"end_time": "2022-01-01T23:04:45+00:00",
|
|
},
|
|
)
|
|
response = api_client.get(f"/api/v1/statuses/{post.id}").json()
|
|
assert response["text"] == "<p>Test Question</p>"
|
|
assert response["poll"] == {
|
|
"id": str(post.id),
|
|
"expires_at": "2022-01-01T23:04:45.000Z",
|
|
"expired": True,
|
|
"multiple": False,
|
|
"votes_count": 30,
|
|
"voters_count": None,
|
|
"voted": False,
|
|
"own_votes": [],
|
|
"options": [
|
|
{"title": "Option 1", "votes_count": 10},
|
|
{"title": "Option 2", "votes_count": 20},
|
|
],
|
|
"emojis": [],
|
|
}
|