2022-11-14 01:42:47 +00:00
|
|
|
import pytest
|
|
|
|
from pytest_httpx import HTTPXMock
|
|
|
|
|
2022-11-27 18:09:46 +00:00
|
|
|
from activities.models import Post, PostStates
|
2022-11-14 01:42:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.django_db
|
2022-12-05 04:30:18 +00:00
|
|
|
def test_fetch_post(httpx_mock: HTTPXMock, config_system):
|
2022-11-14 01:42:47 +00:00
|
|
|
"""
|
|
|
|
Tests that a post we don't have locally can be fetched by by_object_uri
|
|
|
|
"""
|
|
|
|
httpx_mock.add_response(
|
|
|
|
url="https://example.com/test-post",
|
|
|
|
json={
|
|
|
|
"@context": [
|
|
|
|
"https://www.w3.org/ns/activitystreams",
|
|
|
|
],
|
|
|
|
"id": "https://example.com/test-post",
|
|
|
|
"type": "Note",
|
|
|
|
"published": "2022-11-13T23:20:16Z",
|
|
|
|
"url": "https://example.com/test-post",
|
|
|
|
"attributedTo": "https://example.com/test-actor",
|
|
|
|
"content": "BEEEEEES",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
# Fetch with a HTTP access
|
|
|
|
post = Post.by_object_uri("https://example.com/test-post", fetch=True)
|
|
|
|
assert post.content == "BEEEEEES"
|
|
|
|
assert post.author.actor_uri == "https://example.com/test-actor"
|
|
|
|
# Fetch again with a DB hit
|
|
|
|
assert Post.by_object_uri("https://example.com/test-post").id == post.id
|
2022-11-22 03:25:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.django_db
|
2022-12-06 04:44:26 +00:00
|
|
|
def test_linkify_mentions_remote(
|
|
|
|
identity, identity2, remote_identity, remote_identity2
|
|
|
|
):
|
2022-11-22 03:25:00 +00:00
|
|
|
"""
|
2022-11-22 04:18:13 +00:00
|
|
|
Tests that we can linkify post mentions properly for remote use
|
2022-11-22 03:25:00 +00:00
|
|
|
"""
|
2022-11-22 04:18:13 +00:00
|
|
|
# Test a short username (remote)
|
2022-11-22 03:25:00 +00:00
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>Hello @test</p>",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
2022-11-22 04:18:13 +00:00
|
|
|
post.mentions.add(remote_identity)
|
|
|
|
assert (
|
|
|
|
post.safe_content_remote()
|
|
|
|
== '<p>Hello <a href="https://remote.test/@test/">@test</a></p>'
|
|
|
|
)
|
|
|
|
# Test a full username (local)
|
2022-11-22 03:25:00 +00:00
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>@test@example.com, welcome!</p>",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
2022-11-22 04:18:13 +00:00
|
|
|
post.mentions.add(identity)
|
2022-11-22 03:25:00 +00:00
|
|
|
assert (
|
2022-11-22 04:18:13 +00:00
|
|
|
post.safe_content_remote()
|
2022-12-06 03:26:21 +00:00
|
|
|
== '<p><a href="https://example.com/@test/">@test</a>, welcome!</p>'
|
2022-11-22 03:25:00 +00:00
|
|
|
)
|
2022-11-22 04:18:13 +00:00
|
|
|
# Test that they don't get touched without a mention
|
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>@test@example.com, welcome!</p>",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
assert post.safe_content_remote() == "<p>@test@example.com, welcome!</p>"
|
2022-12-05 03:22:24 +00:00
|
|
|
# Test case insensitivity (remote)
|
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>Hey @TeSt</p>",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
post.mentions.add(remote_identity)
|
|
|
|
assert (
|
|
|
|
post.safe_content_remote()
|
|
|
|
== '<p>Hey <a href="https://remote.test/@test/">@test</a></p>'
|
|
|
|
)
|
2022-11-22 04:18:13 +00:00
|
|
|
|
2022-12-06 04:44:26 +00:00
|
|
|
# Test that collapsing only applies to the first unique, short username
|
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>Hey @TeSt@remote.test and @test@remote2.test</p>",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
post.mentions.set([remote_identity, remote_identity2])
|
|
|
|
assert post.safe_content_remote() == (
|
|
|
|
'<p>Hey <a href="https://remote.test/@test/">@test</a> '
|
|
|
|
'and <a href="https://remote2.test/@test/">@test@remote2.test</a></p>'
|
|
|
|
)
|
|
|
|
|
|
|
|
post.content = "<p>Hey @TeSt, @Test@remote.test and @test</p>"
|
|
|
|
assert post.safe_content_remote() == (
|
|
|
|
'<p>Hey <a href="https://remote2.test/@test/">@test</a>, '
|
|
|
|
'<a href="https://remote.test/@test/">@test@remote.test</a> '
|
|
|
|
'and <a href="https://remote2.test/@test/">@test</a></p>'
|
|
|
|
)
|
|
|
|
|
2022-11-22 04:18:13 +00:00
|
|
|
|
|
|
|
@pytest.mark.django_db
|
2022-12-06 04:44:26 +00:00
|
|
|
def test_linkify_mentions_local(identity, identity2, remote_identity):
|
2022-11-22 04:18:13 +00:00
|
|
|
"""
|
|
|
|
Tests that we can linkify post mentions properly for local use
|
|
|
|
"""
|
|
|
|
# Test a short username (remote)
|
2022-11-22 03:25:00 +00:00
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>Hello @test</p>",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
post.mentions.add(remote_identity)
|
2022-11-22 04:18:13 +00:00
|
|
|
assert (
|
|
|
|
post.safe_content_local()
|
|
|
|
== '<p>Hello <a href="/@test@remote.test/">@test</a></p>'
|
|
|
|
)
|
|
|
|
# Test a full username (local)
|
|
|
|
post = Post.objects.create(
|
2022-12-06 04:44:26 +00:00
|
|
|
content="<p>@test@example.com, welcome! @test@example2.com @test@example.com</p>",
|
2022-11-22 04:18:13 +00:00
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
post.mentions.add(identity)
|
2022-12-06 04:44:26 +00:00
|
|
|
post.mentions.add(identity2)
|
|
|
|
assert post.safe_content_local() == (
|
|
|
|
'<p><a href="/@test@example.com/">@test</a>, welcome!'
|
|
|
|
' <a href="/@test@example2.com/">@test@example2.com</a>'
|
|
|
|
' <a href="/@test@example.com/">@test</a></p>'
|
2022-11-22 04:18:13 +00:00
|
|
|
)
|
2022-11-22 05:17:22 +00:00
|
|
|
# Test a full username (remote) with no <p>
|
|
|
|
post = Post.objects.create(
|
|
|
|
content="@test@remote.test hello!",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
post.mentions.add(remote_identity)
|
2022-12-06 03:26:21 +00:00
|
|
|
assert post.safe_content_local() == '<a href="/@test@remote.test/">@test</a> hello!'
|
2022-11-22 04:18:13 +00:00
|
|
|
# Test that they don't get touched without a mention
|
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>@test@example.com, welcome!</p>",
|
|
|
|
author=identity,
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
assert post.safe_content_local() == "<p>@test@example.com, welcome!</p>"
|
2022-11-27 18:09:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.django_db
|
2022-12-06 02:21:00 +00:00
|
|
|
def test_post_transitions(identity, stator):
|
2022-11-27 18:09:46 +00:00
|
|
|
|
|
|
|
# Create post
|
|
|
|
post = Post.objects.create(
|
|
|
|
content="<p>Hello!</p>",
|
|
|
|
author=identity,
|
|
|
|
local=False,
|
|
|
|
visibility=Post.Visibilities.mentioned,
|
|
|
|
)
|
|
|
|
# Test: | --> new --> fanned_out
|
|
|
|
assert post.state == str(PostStates.new)
|
2022-12-06 02:21:00 +00:00
|
|
|
stator.run_single_cycle_sync()
|
2022-11-27 18:09:46 +00:00
|
|
|
post = Post.objects.get(id=post.id)
|
|
|
|
assert post.state == str(PostStates.fanned_out)
|
|
|
|
|
|
|
|
# Test: fanned_out --> (forced) edited --> edited_fanned_out
|
|
|
|
Post.transition_perform(post, PostStates.edited)
|
2022-12-06 02:21:00 +00:00
|
|
|
stator.run_single_cycle_sync()
|
2022-11-27 18:09:46 +00:00
|
|
|
post = Post.objects.get(id=post.id)
|
|
|
|
assert post.state == str(PostStates.edited_fanned_out)
|
|
|
|
|
|
|
|
# Test: edited_fanned_out --> (forced) deleted --> deleted_fanned_out
|
|
|
|
Post.transition_perform(post, PostStates.deleted)
|
2022-12-06 02:21:00 +00:00
|
|
|
stator.run_single_cycle_sync()
|
2022-11-27 18:09:46 +00:00
|
|
|
post = Post.objects.get(id=post.id)
|
|
|
|
assert post.state == str(PostStates.deleted_fanned_out)
|