2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-12-05 17:21:30 +00:00
|
|
|
defmodule Pleroma.Web.FederatorTest do
|
|
|
|
alias Pleroma.Web.Federator
|
2018-09-08 12:02:38 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2017-12-05 17:21:30 +00:00
|
|
|
use Pleroma.DataCase
|
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)
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
2017-12-05 17:21:30 +00:00
|
|
|
test "enqueues an element according to priority" do
|
|
|
|
queue = [%{item: 1, priority: 2}]
|
|
|
|
|
|
|
|
new_queue = Federator.enqueue_sorted(queue, 2, 1)
|
|
|
|
assert new_queue == [%{item: 2, priority: 1}, %{item: 1, priority: 2}]
|
|
|
|
|
|
|
|
new_queue = Federator.enqueue_sorted(queue, 2, 3)
|
|
|
|
assert new_queue == [%{item: 1, priority: 2}, %{item: 2, priority: 3}]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "pop first item" do
|
|
|
|
queue = [%{item: 2, priority: 1}, %{item: 1, priority: 2}]
|
|
|
|
|
|
|
|
assert {2, [%{item: 1, priority: 2}]} = Federator.queue_pop(queue)
|
|
|
|
end
|
2018-09-08 12:02:38 +00:00
|
|
|
|
|
|
|
describe "Publish an activity" do
|
|
|
|
setup do
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "HI"})
|
|
|
|
|
|
|
|
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
|
|
|
|
Federator.handle(:publish, activity)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_received :relay_publish
|
|
|
|
end
|
|
|
|
|
|
|
|
test "with relays deactivated, it does not publish to the relay", %{
|
|
|
|
activity: activity,
|
|
|
|
relay_mock: relay_mock
|
|
|
|
} do
|
2018-11-06 15:00:48 +00:00
|
|
|
Pleroma.Config.put([:instance, :allow_relay], false)
|
2018-09-08 12:02:38 +00:00
|
|
|
|
|
|
|
with_mocks([relay_mock]) do
|
|
|
|
Federator.handle(:publish, activity)
|
|
|
|
end
|
|
|
|
|
|
|
|
refute_received :relay_publish
|
2018-11-06 10:34:34 +00:00
|
|
|
|
2018-11-06 15:00:48 +00:00
|
|
|
Pleroma.Config.put([:instance, :allow_relay], true)
|
2018-09-08 12:02:38 +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",
|
2018-11-17 21:41:08 +00:00
|
|
|
"attributedTo" => "http://mastodon.example.org/users/admin"
|
2018-11-17 21:01:19 +00:00
|
|
|
},
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, _activity} = Federator.handle(:incoming_ap_doc, params)
|
|
|
|
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",
|
2018-11-17 21:41:08 +00:00
|
|
|
"attributedTo" => "http://mastodon.example.org/users/admin"
|
2018-11-17 21:01:19 +00:00
|
|
|
},
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
}
|
|
|
|
|
|
|
|
:error = Federator.handle(:incoming_ap_doc, params)
|
|
|
|
end
|
|
|
|
end
|
2017-12-05 17:21:30 +00:00
|
|
|
end
|