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
|
|
|
|
|
2017-12-05 17:21:30 +00:00
|
|
|
defmodule Pleroma.Web.FederatorTest do
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Instances
|
2019-08-13 17:20:26 +00:00
|
|
|
alias Pleroma.Tests.ObanHelpers
|
2019-02-10 21:57:38 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
alias Pleroma.Web.Federator
|
2019-08-31 16:08:56 +00:00
|
|
|
alias Pleroma.Workers.PublisherWorker
|
2019-08-01 14:28:00 +00:00
|
|
|
|
2017-12-05 17:21:30 +00:00
|
|
|
use Pleroma.DataCase
|
2019-08-01 14:28:00 +00:00
|
|
|
use Oban.Testing, repo: Pleroma.Repo
|
|
|
|
|
2018-09-08 12:02:38 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
import Mock
|
2017-12-05 17:21:30 +00:00
|
|
|
|
2018-12-04 13:39:08 +00:00
|
|
|
setup_all do
|
|
|
|
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
2019-07-09 06:30:51 +00:00
|
|
|
|
2018-12-04 13:39:08 +00:00
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
2020-03-20 15:33:00 +00:00
|
|
|
setup_all do: clear_config([:instance, :federating], true)
|
|
|
|
setup do: clear_config([:instance, :allow_relay])
|
2020-03-21 06:47:05 +00:00
|
|
|
setup do: clear_config([:mrf, :policies])
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:mrf_keyword])
|
2019-08-19 15:34:29 +00:00
|
|
|
|
2018-09-08 12:02:38 +00:00
|
|
|
describe "Publish an activity" do
|
|
|
|
setup do
|
|
|
|
user = insert(:user)
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "HI"})
|
2018-09-08 12:02:38 +00:00
|
|
|
|
|
|
|
relay_mock = {
|
|
|
|
Pleroma.Web.ActivityPub.Relay,
|
|
|
|
[],
|
|
|
|
[publish: fn _activity -> send(self(), :relay_publish) end]
|
|
|
|
}
|
|
|
|
|
|
|
|
%{activity: activity, relay_mock: relay_mock}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "with relays active, it publishes to the relay", %{
|
|
|
|
activity: activity,
|
|
|
|
relay_mock: relay_mock
|
|
|
|
} do
|
|
|
|
with_mocks([relay_mock]) do
|
2019-01-28 15:17:17 +00:00
|
|
|
Federator.publish(activity)
|
2019-08-09 17:08:01 +00:00
|
|
|
ObanHelpers.perform(all_enqueued(worker: PublisherWorker))
|
2018-09-08 12:02:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
assert_received :relay_publish
|
|
|
|
end
|
|
|
|
|
|
|
|
test "with relays deactivated, it does not publish to the relay", %{
|
|
|
|
activity: activity,
|
|
|
|
relay_mock: relay_mock
|
|
|
|
} do
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([:instance, :allow_relay], false)
|
2018-09-08 12:02:38 +00:00
|
|
|
|
|
|
|
with_mocks([relay_mock]) do
|
2019-01-28 15:17:17 +00:00
|
|
|
Federator.publish(activity)
|
2019-08-09 17:08:01 +00:00
|
|
|
ObanHelpers.perform(all_enqueued(worker: PublisherWorker))
|
2018-09-08 12:02:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
refute_received :relay_publish
|
|
|
|
end
|
|
|
|
end
|
2018-11-17 21:01:19 +00:00
|
|
|
|
2019-01-25 17:38:54 +00:00
|
|
|
describe "Targets reachability filtering in `publish`" do
|
2019-08-01 14:28:00 +00:00
|
|
|
test "it federates only to reachable instances via AP" do
|
2019-01-25 17:38:54 +00:00
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{inbox1, inbox2} =
|
|
|
|
{"https://domain.com/users/nick1/inbox", "https://domain2.com/users/nick2/inbox"}
|
|
|
|
|
|
|
|
insert(:user, %{
|
|
|
|
local: false,
|
|
|
|
nickname: "nick1@domain.com",
|
|
|
|
ap_id: "https://domain.com/users/nick1",
|
2020-04-01 05:47:07 +00:00
|
|
|
inbox: inbox1,
|
2019-10-16 18:59:21 +00:00
|
|
|
ap_enabled: true
|
2019-01-25 17:38:54 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
insert(:user, %{
|
|
|
|
local: false,
|
|
|
|
nickname: "nick2@domain2.com",
|
|
|
|
ap_id: "https://domain2.com/users/nick2",
|
2020-04-01 05:47:07 +00:00
|
|
|
inbox: inbox2,
|
2019-10-16 18:59:21 +00:00
|
|
|
ap_enabled: true
|
2019-01-25 17:38:54 +00:00
|
|
|
})
|
|
|
|
|
2019-02-03 10:28:13 +00:00
|
|
|
dt = NaiveDateTime.utc_now()
|
|
|
|
Instances.set_unreachable(inbox1, dt)
|
|
|
|
|
|
|
|
Instances.set_consistently_unreachable(URI.parse(inbox2).host)
|
2019-01-25 17:38:54 +00:00
|
|
|
|
|
|
|
{:ok, _activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "HI @nick1@domain.com, @nick2@domain2.com!"})
|
2019-01-25 17:38:54 +00:00
|
|
|
|
2019-08-01 14:28:00 +00:00
|
|
|
expected_dt = NaiveDateTime.to_iso8601(dt)
|
2019-02-03 10:28:13 +00:00
|
|
|
|
2019-08-09 17:08:01 +00:00
|
|
|
ObanHelpers.perform(all_enqueued(worker: PublisherWorker))
|
|
|
|
|
|
|
|
assert ObanHelpers.member?(
|
|
|
|
%{
|
|
|
|
"op" => "publish_one",
|
|
|
|
"params" => %{"inbox" => inbox1, "unreachable_since" => expected_dt}
|
|
|
|
},
|
|
|
|
all_enqueued(worker: PublisherWorker)
|
|
|
|
)
|
2019-01-25 17:38:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-17 21:01:19 +00:00
|
|
|
describe "Receive an activity" do
|
|
|
|
test "successfully processes incoming AP docs with correct origin" do
|
|
|
|
params = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"actor" => "http://mastodon.example.org/users/admin",
|
|
|
|
"type" => "Create",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1",
|
|
|
|
"object" => %{
|
|
|
|
"type" => "Note",
|
|
|
|
"content" => "hi world!",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/objects/1",
|
2020-09-10 09:11:10 +00:00
|
|
|
"attributedTo" => "http://mastodon.example.org/users/admin",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"]
|
2018-11-17 21:01:19 +00:00
|
|
|
},
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
}
|
|
|
|
|
2019-08-09 17:08:01 +00:00
|
|
|
assert {:ok, job} = Federator.incoming_ap_doc(params)
|
|
|
|
assert {:ok, _activity} = ObanHelpers.perform(job)
|
2020-04-22 11:28:52 +00:00
|
|
|
|
|
|
|
assert {:ok, job} = Federator.incoming_ap_doc(params)
|
|
|
|
assert {:error, :already_present} = ObanHelpers.perform(job)
|
2018-11-17 21:01:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "rejects incoming AP docs with incorrect origin" do
|
|
|
|
params = %{
|
|
|
|
"@context" => "https://www.w3.org/ns/activitystreams",
|
|
|
|
"actor" => "https://niu.moe/users/rye",
|
|
|
|
"type" => "Create",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/activities/1",
|
|
|
|
"object" => %{
|
|
|
|
"type" => "Note",
|
|
|
|
"content" => "hi world!",
|
|
|
|
"id" => "http://mastodon.example.org/users/admin/objects/1",
|
2020-09-10 09:11:10 +00:00
|
|
|
"attributedTo" => "http://mastodon.example.org/users/admin",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"]
|
2018-11-17 21:01:19 +00:00
|
|
|
},
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
}
|
|
|
|
|
2019-08-09 17:08:01 +00:00
|
|
|
assert {:ok, job} = Federator.incoming_ap_doc(params)
|
2022-08-11 18:21:43 +00:00
|
|
|
assert {:discard, :origin_containment_failed} = ObanHelpers.perform(job)
|
2018-11-17 21:01:19 +00:00
|
|
|
end
|
2019-08-03 18:12:38 +00:00
|
|
|
|
|
|
|
test "it does not crash if MRF rejects the post" do
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config([:mrf_keyword, :reject], ["lain"])
|
2019-08-19 15:34:29 +00:00
|
|
|
|
2021-01-26 17:58:43 +00:00
|
|
|
clear_config(
|
2020-03-21 06:47:05 +00:00
|
|
|
[:mrf, :policies],
|
2019-08-19 15:34:29 +00:00
|
|
|
Pleroma.Web.ActivityPub.MRF.KeywordPolicy
|
|
|
|
)
|
2019-08-03 18:12:38 +00:00
|
|
|
|
|
|
|
params =
|
|
|
|
File.read!("test/fixtures/mastodon-post-activity.json")
|
2020-11-23 19:28:55 +00:00
|
|
|
|> Jason.decode!()
|
2019-08-03 18:12:38 +00:00
|
|
|
|
2019-08-10 17:38:31 +00:00
|
|
|
assert {:ok, job} = Federator.incoming_ap_doc(params)
|
2022-08-11 18:21:43 +00:00
|
|
|
assert {:discard, _} = ObanHelpers.perform(job)
|
2019-08-03 18:12:38 +00:00
|
|
|
end
|
2018-11-17 21:01:19 +00:00
|
|
|
end
|
2017-12-05 17:21:30 +00:00
|
|
|
end
|