2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-08 12:02:38 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.RelayTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
2019-08-13 21:12:59 +00:00
|
|
|
alias Pleroma.Activity
|
2019-10-10 19:35:32 +00:00
|
|
|
alias Pleroma.User
|
2018-09-08 12:02:38 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Relay
|
2020-07-08 15:07:24 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2018-09-08 12:02:38 +00:00
|
|
|
|
2019-09-13 15:46:41 +00:00
|
|
|
import ExUnit.CaptureLog
|
2019-08-13 21:12:59 +00:00
|
|
|
import Pleroma.Factory
|
2019-08-24 14:41:53 +00:00
|
|
|
import Mock
|
2019-08-13 21:12:59 +00:00
|
|
|
|
2018-09-08 12:02:38 +00:00
|
|
|
test "gets an actor for the relay" do
|
|
|
|
user = Relay.get_actor()
|
2019-08-13 21:12:59 +00:00
|
|
|
assert user.ap_id == "#{Pleroma.Web.Endpoint.url()}/relay"
|
|
|
|
end
|
|
|
|
|
2019-10-19 17:50:17 +00:00
|
|
|
test "relay actor is invisible" do
|
|
|
|
user = Relay.get_actor()
|
|
|
|
assert User.invisible?(user)
|
|
|
|
end
|
|
|
|
|
2019-08-13 21:12:59 +00:00
|
|
|
describe "follow/1" do
|
|
|
|
test "returns errors when user not found" do
|
2019-09-13 15:46:41 +00:00
|
|
|
assert capture_log(fn ->
|
2019-10-18 02:52:08 +00:00
|
|
|
{:error, _} = Relay.follow("test-ap-id")
|
|
|
|
end) =~ "Could not decode user at fetch"
|
2019-08-13 21:12:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "returns activity" do
|
|
|
|
user = insert(:user)
|
|
|
|
service_actor = Relay.get_actor()
|
|
|
|
assert {:ok, %Activity{} = activity} = Relay.follow(user.ap_id)
|
|
|
|
assert activity.actor == "#{Pleroma.Web.Endpoint.url()}/relay"
|
|
|
|
assert user.ap_id in activity.recipients
|
|
|
|
assert activity.data["type"] == "Follow"
|
|
|
|
assert activity.data["actor"] == service_actor.ap_id
|
|
|
|
assert activity.data["object"] == user.ap_id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "unfollow/1" do
|
|
|
|
test "returns errors when user not found" do
|
2019-09-13 15:46:41 +00:00
|
|
|
assert capture_log(fn ->
|
2019-10-18 02:52:08 +00:00
|
|
|
{:error, _} = Relay.unfollow("test-ap-id")
|
|
|
|
end) =~ "Could not decode user at fetch"
|
2019-08-13 21:12:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "returns activity" do
|
|
|
|
user = insert(:user)
|
|
|
|
service_actor = Relay.get_actor()
|
2020-07-08 15:07:24 +00:00
|
|
|
CommonAPI.follow(service_actor, user)
|
2019-10-10 19:35:32 +00:00
|
|
|
assert "#{user.ap_id}/followers" in User.following(service_actor)
|
2019-08-13 21:12:59 +00:00
|
|
|
assert {:ok, %Activity{} = activity} = Relay.unfollow(user.ap_id)
|
|
|
|
assert activity.actor == "#{Pleroma.Web.Endpoint.url()}/relay"
|
|
|
|
assert user.ap_id in activity.recipients
|
|
|
|
assert activity.data["type"] == "Undo"
|
|
|
|
assert activity.data["actor"] == service_actor.ap_id
|
|
|
|
assert activity.data["to"] == [user.ap_id]
|
2019-10-10 19:35:32 +00:00
|
|
|
refute "#{user.ap_id}/followers" in User.following(service_actor)
|
2019-08-13 21:12:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "publish/1" do
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:instance, :federating])
|
2019-08-24 14:41:53 +00:00
|
|
|
|
2019-08-13 21:12:59 +00:00
|
|
|
test "returns error when activity not `Create` type" do
|
|
|
|
activity = insert(:like_activity)
|
|
|
|
assert Relay.publish(activity) == {:error, "Not implemented"}
|
|
|
|
end
|
|
|
|
|
2020-07-08 15:07:24 +00:00
|
|
|
@tag capture_log: true
|
2019-08-13 21:12:59 +00:00
|
|
|
test "returns error when activity not public" do
|
|
|
|
activity = insert(:direct_note_activity)
|
|
|
|
assert Relay.publish(activity) == {:error, false}
|
|
|
|
end
|
2018-09-08 12:02:38 +00:00
|
|
|
|
2019-08-24 14:41:53 +00:00
|
|
|
test "returns error when object is unknown" do
|
|
|
|
activity =
|
|
|
|
insert(:note_activity,
|
|
|
|
data: %{
|
|
|
|
"type" => "Create",
|
|
|
|
"object" => "http://mastodon.example.org/eee/99541947525187367"
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2020-03-05 14:31:06 +00:00
|
|
|
Tesla.Mock.mock(fn
|
|
|
|
%{method: :get, url: "http://mastodon.example.org/eee/99541947525187367"} ->
|
|
|
|
%Tesla.Env{status: 500, body: ""}
|
|
|
|
end)
|
|
|
|
|
2019-09-13 15:46:41 +00:00
|
|
|
assert capture_log(fn ->
|
2020-05-21 11:16:21 +00:00
|
|
|
assert Relay.publish(activity) == {:error, false}
|
|
|
|
end) =~ "[error] error: false"
|
2019-08-24 14:41:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test_with_mock "returns announce activity and publish to federate",
|
|
|
|
Pleroma.Web.Federator,
|
|
|
|
[:passthrough],
|
|
|
|
[] do
|
2020-05-21 11:16:21 +00:00
|
|
|
clear_config([:instance, :federating], true)
|
2019-08-24 14:41:53 +00:00
|
|
|
service_actor = Relay.get_actor()
|
|
|
|
note = insert(:note_activity)
|
2020-05-21 11:16:21 +00:00
|
|
|
assert {:ok, %Activity{} = activity} = Relay.publish(note)
|
2019-08-24 14:41:53 +00:00
|
|
|
assert activity.data["type"] == "Announce"
|
|
|
|
assert activity.data["actor"] == service_actor.ap_id
|
2020-05-26 09:47:03 +00:00
|
|
|
assert activity.data["to"] == [service_actor.follower_address]
|
2019-08-31 11:25:43 +00:00
|
|
|
assert called(Pleroma.Web.Federator.publish(activity))
|
2019-08-24 14:41:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test_with_mock "returns announce activity and not publish to federate",
|
|
|
|
Pleroma.Web.Federator,
|
|
|
|
[:passthrough],
|
|
|
|
[] do
|
2020-05-21 11:16:21 +00:00
|
|
|
clear_config([:instance, :federating], false)
|
2019-08-13 21:12:59 +00:00
|
|
|
service_actor = Relay.get_actor()
|
|
|
|
note = insert(:note_activity)
|
2020-05-21 11:16:21 +00:00
|
|
|
assert {:ok, %Activity{} = activity} = Relay.publish(note)
|
2019-08-13 21:12:59 +00:00
|
|
|
assert activity.data["type"] == "Announce"
|
|
|
|
assert activity.data["actor"] == service_actor.ap_id
|
2019-08-31 11:25:43 +00:00
|
|
|
refute called(Pleroma.Web.Federator.publish(activity))
|
2019-08-13 21:12:59 +00:00
|
|
|
end
|
2018-09-08 12:02:38 +00:00
|
|
|
end
|
|
|
|
end
|