2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-02-15 19:00:06 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
|
2020-01-25 07:47:30 +00:00
|
|
|
use Oban.Testing, repo: Pleroma.Repo
|
2018-02-15 19:00:06 +00:00
|
|
|
use Pleroma.DataCase
|
2020-01-25 07:47:30 +00:00
|
|
|
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Activity
|
2019-03-14 19:04:33 +00:00
|
|
|
alias Pleroma.Object
|
2019-08-13 17:20:26 +00:00
|
|
|
alias Pleroma.Tests.ObanHelpers
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2018-02-15 19:00:06 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
2020-09-10 09:11:10 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-10-23 19:27:22 +00:00
|
|
|
alias Pleroma.Web.AdminAPI.AccountView
|
2019-06-29 17:04:50 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2018-02-17 19:13:12 +00:00
|
|
|
|
2019-06-29 17:04:50 +00:00
|
|
|
import Mock
|
2018-02-17 13:11:20 +00:00
|
|
|
import Pleroma.Factory
|
2019-06-16 11:42:29 +00:00
|
|
|
import ExUnit.CaptureLog
|
2018-02-15 19:00:06 +00:00
|
|
|
|
2018-12-04 11:01:39 +00:00
|
|
|
setup_all do
|
|
|
|
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
2018-12-03 15:53:22 +00:00
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:instance, :max_remote_account_fields])
|
2019-08-21 18:24:35 +00:00
|
|
|
|
2018-02-15 19:00:06 +00:00
|
|
|
describe "handle_incoming" do
|
2020-08-11 12:00:21 +00:00
|
|
|
test "it works for incoming unfollows with an existing follow" do
|
2018-05-18 03:55:00 +00:00
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
follow_data =
|
|
|
|
File.read!("test/fixtures/mastodon-follow-activity.json")
|
2020-11-23 19:28:55 +00:00
|
|
|
|> Jason.decode!()
|
2018-05-18 03:55:00 +00:00
|
|
|
|> Map.put("object", user.ap_id)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: _, local: false}} = Transmogrifier.handle_incoming(follow_data)
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-unfollow-activity.json")
|
2020-11-23 19:28:55 +00:00
|
|
|
|> Jason.decode!()
|
2018-05-18 03:55:00 +00:00
|
|
|
|> Map.put("object", follow_data)
|
|
|
|
|
|
|
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert data["type"] == "Undo"
|
|
|
|
assert data["object"]["type"] == "Follow"
|
2018-05-20 01:23:52 +00:00
|
|
|
assert data["object"]["object"] == user.ap_id
|
2018-05-18 03:55:00 +00:00
|
|
|
assert data["actor"] == "http://mastodon.example.org/users/admin"
|
|
|
|
|
2019-04-22 07:20:43 +00:00
|
|
|
refute User.following?(User.get_cached_by_ap_id(data["actor"]), user)
|
2018-05-18 03:55:00 +00:00
|
|
|
end
|
2018-05-20 01:23:52 +00:00
|
|
|
|
2019-03-14 19:04:33 +00:00
|
|
|
test "it accepts Flag activities" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "test post"})
|
2021-01-04 12:38:31 +00:00
|
|
|
object = Object.normalize(activity, fetch: false)
|
2019-03-14 19:04:33 +00:00
|
|
|
|
2019-10-23 19:27:22 +00:00
|
|
|
note_obj = %{
|
|
|
|
"type" => "Note",
|
|
|
|
"id" => activity.data["id"],
|
|
|
|
"content" => "test post",
|
|
|
|
"published" => object.data["published"],
|
2020-07-23 12:08:30 +00:00
|
|
|
"actor" => AccountView.render("show.json", %{user: user, skip_visibility_check: true})
|
2019-10-23 19:27:22 +00:00
|
|
|
}
|
|
|
|
|
2019-03-14 19:04:33 +00:00
|
|
|
message = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"cc" => [user.ap_id],
|
2019-10-27 13:17:37 +00:00
|
|
|
"object" => [user.ap_id, activity.data["id"]],
|
2019-03-14 19:04:33 +00:00
|
|
|
"type" => "Flag",
|
|
|
|
"content" => "blocked AND reported!!!",
|
|
|
|
"actor" => other_user.ap_id
|
|
|
|
}
|
|
|
|
|
|
|
|
assert {:ok, activity} = Transmogrifier.handle_incoming(message)
|
|
|
|
|
2019-10-23 19:27:22 +00:00
|
|
|
assert activity.data["object"] == [user.ap_id, note_obj]
|
2019-03-14 19:04:33 +00:00
|
|
|
assert activity.data["content"] == "blocked AND reported!!!"
|
|
|
|
assert activity.data["actor"] == other_user.ap_id
|
|
|
|
assert activity.data["cc"] == [user.ap_id]
|
|
|
|
end
|
2019-10-23 00:43:31 +00:00
|
|
|
|
2019-10-30 11:21:49 +00:00
|
|
|
test "it accepts Move activities" do
|
|
|
|
old_user = insert(:user)
|
|
|
|
new_user = insert(:user)
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"type" => "Move",
|
|
|
|
"actor" => old_user.ap_id,
|
|
|
|
"object" => old_user.ap_id,
|
|
|
|
"target" => new_user.ap_id
|
|
|
|
}
|
|
|
|
|
|
|
|
assert :error = Transmogrifier.handle_incoming(message)
|
|
|
|
|
|
|
|
{:ok, _new_user} = User.update_and_set_cache(new_user, %{also_known_as: [old_user.ap_id]})
|
|
|
|
|
|
|
|
assert {:ok, %Activity{} = activity} = Transmogrifier.handle_incoming(message)
|
|
|
|
assert activity.actor == old_user.ap_id
|
|
|
|
assert activity.data["actor"] == old_user.ap_id
|
|
|
|
assert activity.data["object"] == old_user.ap_id
|
|
|
|
assert activity.data["target"] == new_user.ap_id
|
|
|
|
assert activity.data["type"] == "Move"
|
|
|
|
end
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|
2018-02-17 13:11:20 +00:00
|
|
|
|
|
|
|
describe "prepare outgoing" do
|
2019-10-02 10:14:08 +00:00
|
|
|
test "it inlines private announced objects" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "hey", visibility: "private"})
|
2019-10-02 10:14:08 +00:00
|
|
|
|
2020-05-21 11:16:21 +00:00
|
|
|
{:ok, announce_activity} = CommonAPI.repeat(activity.id, user)
|
2019-10-02 10:14:08 +00:00
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(announce_activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["content"] == "hey"
|
|
|
|
assert modified["object"]["actor"] == modified["object"]["attributedTo"]
|
|
|
|
end
|
|
|
|
|
2018-02-17 13:11:20 +00:00
|
|
|
test "it turns mentions into tags" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "hey, @#{other_user.nickname}, how are ya? #2hu"})
|
2018-02-17 13:11:20 +00:00
|
|
|
|
2020-05-25 13:08:43 +00:00
|
|
|
with_mock Pleroma.Notification,
|
|
|
|
get_notified_from_activity: fn _, _ -> [] end do
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
2018-02-17 13:11:20 +00:00
|
|
|
|
2020-05-25 13:08:43 +00:00
|
|
|
object = modified["object"]
|
2018-02-19 09:39:03 +00:00
|
|
|
|
2020-05-25 13:08:43 +00:00
|
|
|
expected_mention = %{
|
|
|
|
"href" => other_user.ap_id,
|
|
|
|
"name" => "@#{other_user.nickname}",
|
|
|
|
"type" => "Mention"
|
|
|
|
}
|
2018-02-17 13:11:20 +00:00
|
|
|
|
2020-05-25 13:08:43 +00:00
|
|
|
expected_tag = %{
|
|
|
|
"href" => Pleroma.Web.Endpoint.url() <> "/tags/2hu",
|
|
|
|
"type" => "Hashtag",
|
|
|
|
"name" => "#2hu"
|
|
|
|
}
|
|
|
|
|
|
|
|
refute called(Pleroma.Notification.get_notified_from_activity(:_, :_))
|
|
|
|
assert Enum.member?(object["tag"], expected_tag)
|
|
|
|
assert Enum.member?(object["tag"], expected_mention)
|
|
|
|
end
|
2018-02-17 13:11:20 +00:00
|
|
|
end
|
|
|
|
|
2018-02-18 12:58:52 +00:00
|
|
|
test "it adds the json-ld context and the conversation property" do
|
2018-02-17 13:11:20 +00:00
|
|
|
user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "hey"})
|
2018-02-17 13:11:20 +00:00
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
2020-09-10 09:11:10 +00:00
|
|
|
assert modified["@context"] == Utils.make_json_ld_header()["@context"]
|
2018-11-08 15:39:38 +00:00
|
|
|
|
2018-02-18 12:58:52 +00:00
|
|
|
assert modified["object"]["conversation"] == modified["context"]
|
2018-02-17 13:11:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it sets the 'attributedTo' property to the actor of the object if it doesn't have one" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "hey"})
|
2018-02-17 13:11:20 +00:00
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["actor"] == modified["object"]["attributedTo"]
|
|
|
|
end
|
2018-03-13 17:46:37 +00:00
|
|
|
|
2018-11-10 12:16:10 +00:00
|
|
|
test "it strips internal hashtag data" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "#2hu"})
|
2018-11-10 12:16:10 +00:00
|
|
|
|
|
|
|
expected_tag = %{
|
|
|
|
"href" => Pleroma.Web.Endpoint.url() <> "/tags/2hu",
|
|
|
|
"type" => "Hashtag",
|
|
|
|
"name" => "#2hu"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["object"]["tag"] == [expected_tag]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it strips internal fields" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
2021-02-12 19:05:12 +00:00
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
|
|
|
status: "#2hu :firefox:",
|
2021-03-01 17:29:10 +00:00
|
|
|
generator: %{type: "Application", name: "TestClient", url: "https://pleroma.social"}
|
2021-02-12 19:05:12 +00:00
|
|
|
})
|
2018-11-10 12:16:10 +00:00
|
|
|
|
2021-02-12 19:15:33 +00:00
|
|
|
# Ensure injected application data made it into the activity
|
|
|
|
# as we don't have a Token to derive it from, otherwise it will
|
|
|
|
# be nil and the test will pass
|
2021-02-27 00:14:57 +00:00
|
|
|
assert %{
|
|
|
|
type: "Application",
|
|
|
|
name: "TestClient",
|
|
|
|
url: "https://pleroma.social"
|
2021-03-01 17:29:10 +00:00
|
|
|
} == activity.object.data["generator"]
|
2021-02-12 19:15:33 +00:00
|
|
|
|
2020-12-28 12:02:16 +00:00
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert length(modified["object"]["tag"]) == 2
|
|
|
|
|
|
|
|
assert is_nil(modified["object"]["emoji"])
|
|
|
|
assert is_nil(modified["object"]["like_count"])
|
|
|
|
assert is_nil(modified["object"]["announcements"])
|
|
|
|
assert is_nil(modified["object"]["announcement_count"])
|
|
|
|
assert is_nil(modified["object"]["context_id"])
|
2021-03-01 17:29:10 +00:00
|
|
|
assert is_nil(modified["object"]["generator"])
|
2018-11-10 12:16:10 +00:00
|
|
|
end
|
2019-01-12 16:52:30 +00:00
|
|
|
|
|
|
|
test "it strips internal fields of article" do
|
|
|
|
activity = insert(:article_activity)
|
|
|
|
|
2020-12-28 12:02:16 +00:00
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
2018-11-10 12:16:10 +00:00
|
|
|
|
2020-12-28 12:02:16 +00:00
|
|
|
assert length(modified["object"]["tag"]) == 2
|
2018-11-10 12:16:10 +00:00
|
|
|
|
2020-12-28 12:02:16 +00:00
|
|
|
assert is_nil(modified["object"]["emoji"])
|
|
|
|
assert is_nil(modified["object"]["like_count"])
|
|
|
|
assert is_nil(modified["object"]["announcements"])
|
|
|
|
assert is_nil(modified["object"]["announcement_count"])
|
|
|
|
assert is_nil(modified["object"]["context_id"])
|
|
|
|
assert is_nil(modified["object"]["likes"])
|
2019-01-09 08:22:00 +00:00
|
|
|
end
|
2018-12-23 15:55:07 +00:00
|
|
|
|
|
|
|
test "the directMessage flag is present" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "2hu :moominmamma:"})
|
2018-12-23 15:55:07 +00:00
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["directMessage"] == false
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "@#{other_user.nickname} :moominmamma:"})
|
2018-12-23 15:55:07 +00:00
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["directMessage"] == false
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
2020-05-12 19:59:26 +00:00
|
|
|
status: "@#{other_user.nickname} :moominmamma:",
|
|
|
|
visibility: "direct"
|
2018-12-23 15:55:07 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert modified["directMessage"] == true
|
|
|
|
end
|
2019-05-14 13:12:47 +00:00
|
|
|
|
|
|
|
test "it strips BCC field" do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, list} = Pleroma.List.create("foo", user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "foobar", visibility: "list:#{list.id}"})
|
2019-05-14 13:12:47 +00:00
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert is_nil(modified["bcc"])
|
|
|
|
end
|
2019-09-28 11:57:24 +00:00
|
|
|
|
|
|
|
test "it can handle Listen activities" do
|
|
|
|
listen_activity = insert(:listen)
|
|
|
|
|
|
|
|
{:ok, modified} = Transmogrifier.prepare_outgoing(listen_activity.data)
|
|
|
|
|
|
|
|
assert modified["type"] == "Listen"
|
2019-09-28 12:12:35 +00:00
|
|
|
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.listen(user, %{"title" => "lain radio episode 1"})
|
|
|
|
|
2019-09-30 13:13:25 +00:00
|
|
|
{:ok, _modified} = Transmogrifier.prepare_outgoing(activity.data)
|
2019-09-28 11:57:24 +00:00
|
|
|
end
|
2021-01-05 19:58:49 +00:00
|
|
|
|
|
|
|
test "custom emoji urls are URI encoded" do
|
|
|
|
# :dinosaur: filename has a space -> dino walking.gif
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "everybody do the dinosaur :dinosaur:"})
|
|
|
|
|
|
|
|
{:ok, prepared} = Transmogrifier.prepare_outgoing(activity.data)
|
|
|
|
|
|
|
|
assert length(prepared["object"]["tag"]) == 1
|
|
|
|
|
|
|
|
url = prepared["object"]["tag"] |> List.first() |> Map.get("icon") |> Map.get("url")
|
|
|
|
|
|
|
|
assert url == "http://localhost:4001/emoji/dino%20walking.gif"
|
|
|
|
end
|
2018-02-17 13:11:20 +00:00
|
|
|
end
|
2018-02-21 21:21:40 +00:00
|
|
|
|
|
|
|
describe "user upgrade" do
|
|
|
|
test "it upgrades a user to activitypub" do
|
2018-03-30 13:01:53 +00:00
|
|
|
user =
|
|
|
|
insert(:user, %{
|
|
|
|
nickname: "rye@niu.moe",
|
|
|
|
local: false,
|
|
|
|
ap_id: "https://niu.moe/users/rye",
|
|
|
|
follower_address: User.ap_followers(%User{nickname: "rye@niu.moe"})
|
|
|
|
})
|
|
|
|
|
2019-10-10 19:35:32 +00:00
|
|
|
user_two = insert(:user)
|
2020-03-28 15:49:03 +00:00
|
|
|
Pleroma.FollowingRelationship.follow(user_two, user, :follow_accept)
|
2018-02-21 21:21:40 +00:00
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "test"})
|
|
|
|
{:ok, unrelated_activity} = CommonAPI.post(user_two, %{status: "test"})
|
2018-02-24 09:42:47 +00:00
|
|
|
assert "http://localhost:4001/users/rye@niu.moe/followers" in activity.recipients
|
2018-02-21 21:21:40 +00:00
|
|
|
|
2019-04-22 07:20:43 +00:00
|
|
|
user = User.get_cached_by_id(user.id)
|
2019-10-16 18:59:21 +00:00
|
|
|
assert user.note_count == 1
|
2018-02-21 21:21:40 +00:00
|
|
|
|
|
|
|
{:ok, user} = Transmogrifier.upgrade_user_from_ap_id("https://niu.moe/users/rye")
|
2019-08-13 17:20:26 +00:00
|
|
|
ObanHelpers.perform_all()
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
assert user.ap_enabled
|
|
|
|
assert user.note_count == 1
|
2018-02-21 21:21:40 +00:00
|
|
|
assert user.follower_address == "https://niu.moe/users/rye/followers"
|
2019-07-10 13:01:32 +00:00
|
|
|
assert user.following_address == "https://niu.moe/users/rye/following"
|
2018-02-21 21:21:40 +00:00
|
|
|
|
2019-04-22 07:20:43 +00:00
|
|
|
user = User.get_cached_by_id(user.id)
|
2019-10-16 18:59:21 +00:00
|
|
|
assert user.note_count == 1
|
2018-02-21 21:21:40 +00:00
|
|
|
|
2019-04-02 10:08:03 +00:00
|
|
|
activity = Activity.get_by_id(activity.id)
|
2018-02-21 21:21:40 +00:00
|
|
|
assert user.follower_address in activity.recipients
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
assert %{
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"href" =>
|
|
|
|
"https://cdn.niu.moe/accounts/avatars/000/033/323/original/fd7f8ae0b3ffedc9.jpeg"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
} = user.avatar
|
|
|
|
|
|
|
|
assert %{
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"href" =>
|
|
|
|
"https://cdn.niu.moe/accounts/headers/000/033/323/original/850b3448fa5fd477.png"
|
|
|
|
}
|
|
|
|
]
|
2019-10-16 18:59:21 +00:00
|
|
|
} = user.banner
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-21 21:21:40 +00:00
|
|
|
refute "..." in activity.recipients
|
|
|
|
|
2019-04-02 10:08:03 +00:00
|
|
|
unrelated_activity = Activity.get_by_id(unrelated_activity.id)
|
2018-02-21 21:21:40 +00:00
|
|
|
refute user.follower_address in unrelated_activity.recipients
|
|
|
|
|
2019-04-22 07:20:43 +00:00
|
|
|
user_two = User.get_cached_by_id(user_two.id)
|
2019-10-10 19:35:32 +00:00
|
|
|
assert User.following?(user_two, user)
|
|
|
|
refute "..." in User.following(user_two)
|
2018-02-24 16:36:02 +00:00
|
|
|
end
|
|
|
|
end
|
2018-05-19 08:06:23 +00:00
|
|
|
|
|
|
|
describe "actor rewriting" do
|
|
|
|
test "it fixes the actor URL property to be a proper URI" do
|
|
|
|
data = %{
|
|
|
|
"url" => %{"href" => "http://example.com"}
|
|
|
|
}
|
|
|
|
|
|
|
|
rewritten = Transmogrifier.maybe_fix_user_object(data)
|
|
|
|
assert rewritten["url"] == "http://example.com"
|
|
|
|
end
|
|
|
|
end
|
2018-09-01 23:33:10 +00:00
|
|
|
|
|
|
|
describe "actor origin containment" do
|
|
|
|
test "it rejects activities which reference objects with bogus origins" do
|
|
|
|
data = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
2018-11-17 18:16:55 +00:00
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1234",
|
|
|
|
"actor" => "http://mastodon.example.org/users/admin",
|
2018-09-01 23:33:10 +00:00
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => "https://info.pleroma.site/activity.json",
|
|
|
|
"type" => "Announce"
|
|
|
|
}
|
|
|
|
|
2019-10-28 16:51:58 +00:00
|
|
|
assert capture_log(fn ->
|
2020-05-18 13:47:26 +00:00
|
|
|
{:error, _} = Transmogrifier.handle_incoming(data)
|
2019-10-28 16:51:58 +00:00
|
|
|
end) =~ "Object containment failed"
|
2018-09-01 23:33:10 +00:00
|
|
|
end
|
2018-11-17 18:12:11 +00:00
|
|
|
|
2018-11-17 18:24:58 +00:00
|
|
|
test "it rejects activities which reference objects that have an incorrect attribution (variant 1)" do
|
2018-11-17 18:12:11 +00:00
|
|
|
data = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1234",
|
|
|
|
"actor" => "http://mastodon.example.org/users/admin",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => "https://info.pleroma.site/activity2.json",
|
|
|
|
"type" => "Announce"
|
|
|
|
}
|
|
|
|
|
2019-10-28 16:51:58 +00:00
|
|
|
assert capture_log(fn ->
|
2020-05-18 13:47:26 +00:00
|
|
|
{:error, _} = Transmogrifier.handle_incoming(data)
|
2019-10-28 16:51:58 +00:00
|
|
|
end) =~ "Object containment failed"
|
2018-11-17 18:12:11 +00:00
|
|
|
end
|
2018-11-17 18:24:58 +00:00
|
|
|
|
|
|
|
test "it rejects activities which reference objects that have an incorrect attribution (variant 2)" do
|
|
|
|
data = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1234",
|
|
|
|
"actor" => "http://mastodon.example.org/users/admin",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => "https://info.pleroma.site/activity3.json",
|
|
|
|
"type" => "Announce"
|
|
|
|
}
|
|
|
|
|
2019-10-28 16:51:58 +00:00
|
|
|
assert capture_log(fn ->
|
2020-05-18 13:47:26 +00:00
|
|
|
{:error, _} = Transmogrifier.handle_incoming(data)
|
2019-10-28 16:51:58 +00:00
|
|
|
end) =~ "Object containment failed"
|
2018-11-17 18:24:58 +00:00
|
|
|
end
|
2018-09-01 23:33:10 +00:00
|
|
|
end
|
2018-11-17 20:07:49 +00:00
|
|
|
|
2019-05-31 11:17:05 +00:00
|
|
|
describe "fix_explicit_addressing" do
|
2019-06-01 03:26:45 +00:00
|
|
|
setup do
|
2019-05-31 11:17:05 +00:00
|
|
|
user = insert(:user)
|
2019-06-01 03:26:45 +00:00
|
|
|
[user: user]
|
|
|
|
end
|
2019-05-31 11:17:05 +00:00
|
|
|
|
2019-06-01 03:26:45 +00:00
|
|
|
test "moves non-explicitly mentioned actors to cc", %{user: user} do
|
2019-05-31 11:17:05 +00:00
|
|
|
explicitly_mentioned_actors = [
|
|
|
|
"https://pleroma.gold/users/user1",
|
|
|
|
"https://pleroma.gold/user2"
|
|
|
|
]
|
|
|
|
|
|
|
|
object = %{
|
|
|
|
"actor" => user.ap_id,
|
|
|
|
"to" => explicitly_mentioned_actors ++ ["https://social.beepboop.ga/users/dirb"],
|
|
|
|
"cc" => [],
|
|
|
|
"tag" =>
|
|
|
|
Enum.map(explicitly_mentioned_actors, fn href ->
|
|
|
|
%{"type" => "Mention", "href" => href}
|
|
|
|
end)
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:09:11 +00:00
|
|
|
fixed_object = Transmogrifier.fix_explicit_addressing(object, user.follower_address)
|
2019-05-31 11:17:05 +00:00
|
|
|
assert Enum.all?(explicitly_mentioned_actors, &(&1 in fixed_object["to"]))
|
|
|
|
refute "https://social.beepboop.ga/users/dirb" in fixed_object["to"]
|
|
|
|
assert "https://social.beepboop.ga/users/dirb" in fixed_object["cc"]
|
|
|
|
end
|
|
|
|
|
2019-06-01 03:26:45 +00:00
|
|
|
test "does not move actor's follower collection to cc", %{user: user} do
|
2019-05-31 11:17:05 +00:00
|
|
|
object = %{
|
|
|
|
"actor" => user.ap_id,
|
|
|
|
"to" => [user.follower_address],
|
|
|
|
"cc" => []
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:09:11 +00:00
|
|
|
fixed_object = Transmogrifier.fix_explicit_addressing(object, user.follower_address)
|
2019-05-31 11:17:05 +00:00
|
|
|
assert user.follower_address in fixed_object["to"]
|
|
|
|
refute user.follower_address in fixed_object["cc"]
|
|
|
|
end
|
2019-06-01 03:26:45 +00:00
|
|
|
|
|
|
|
test "removes recipient's follower collection from cc", %{user: user} do
|
|
|
|
recipient = insert(:user)
|
|
|
|
|
|
|
|
object = %{
|
|
|
|
"actor" => user.ap_id,
|
|
|
|
"to" => [recipient.ap_id, "https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"cc" => [user.follower_address, recipient.follower_address]
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:09:11 +00:00
|
|
|
fixed_object = Transmogrifier.fix_explicit_addressing(object, user.follower_address)
|
2019-06-01 03:26:45 +00:00
|
|
|
|
|
|
|
assert user.follower_address in fixed_object["cc"]
|
|
|
|
refute recipient.follower_address in fixed_object["cc"]
|
|
|
|
refute recipient.follower_address in fixed_object["to"]
|
|
|
|
end
|
2019-05-31 11:17:05 +00:00
|
|
|
end
|
2019-09-10 13:43:10 +00:00
|
|
|
|
|
|
|
describe "fix_summary/1" do
|
|
|
|
test "returns fixed object" do
|
|
|
|
assert Transmogrifier.fix_summary(%{"summary" => nil}) == %{"summary" => ""}
|
|
|
|
assert Transmogrifier.fix_summary(%{"summary" => "ok"}) == %{"summary" => "ok"}
|
|
|
|
assert Transmogrifier.fix_summary(%{}) == %{"summary" => ""}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "fix_url/1" do
|
|
|
|
test "fixes data for object when url is map" do
|
|
|
|
object = %{
|
|
|
|
"url" => %{
|
|
|
|
"type" => "Link",
|
|
|
|
"mimeType" => "video/mp4",
|
|
|
|
"href" => "https://peede8d-46fb-ad81-2d4c2d1630e3-480.mp4"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert Transmogrifier.fix_url(object) == %{
|
|
|
|
"url" => "https://peede8d-46fb-ad81-2d4c2d1630e3-480.mp4"
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-08-20 00:00:04 +00:00
|
|
|
test "returns non-modified object" do
|
2019-09-10 13:43:10 +00:00
|
|
|
assert Transmogrifier.fix_url(%{"type" => "Text"}) == %{"type" => "Text"}
|
|
|
|
end
|
|
|
|
end
|
2019-09-11 04:23:33 +00:00
|
|
|
|
|
|
|
describe "get_obj_helper/2" do
|
|
|
|
test "returns nil when cannot normalize object" do
|
2019-10-28 16:51:58 +00:00
|
|
|
assert capture_log(fn ->
|
|
|
|
refute Transmogrifier.get_obj_helper("test-obj-id")
|
|
|
|
end) =~ "Unsupported URI scheme"
|
2019-09-11 04:23:33 +00:00
|
|
|
end
|
|
|
|
|
2019-11-28 09:44:48 +00:00
|
|
|
@tag capture_log: true
|
2019-09-11 04:23:33 +00:00
|
|
|
test "returns {:ok, %Object{}} for success case" do
|
|
|
|
assert {:ok, %Object{}} =
|
2020-09-08 07:13:11 +00:00
|
|
|
Transmogrifier.get_obj_helper(
|
|
|
|
"https://mstdn.io/users/mayuutann/statuses/99568293732299394"
|
|
|
|
)
|
2019-09-11 04:23:33 +00:00
|
|
|
end
|
|
|
|
end
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|