2019-02-15 11:47:50 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-02-15 11:47:50 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicyTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
import Pleroma.Factory
|
|
|
|
|
|
|
|
import Pleroma.Web.ActivityPub.MRF.HellthreadPolicy
|
|
|
|
|
2020-06-22 08:35:11 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
|
2019-02-17 11:33:44 +00:00
|
|
|
setup do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"actor" => user.ap_id,
|
|
|
|
"cc" => [user.follower_address],
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => [
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public",
|
|
|
|
"https://instance.tld/users/user1",
|
|
|
|
"https://instance.tld/users/user2",
|
|
|
|
"https://instance.tld/users/user3"
|
2020-06-22 08:35:11 +00:00
|
|
|
],
|
|
|
|
"object" => %{
|
|
|
|
"type" => "Note"
|
|
|
|
}
|
2019-02-17 11:33:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[user: user, message: message]
|
|
|
|
end
|
2019-02-15 11:47:50 +00:00
|
|
|
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config(:mrf_hellthread)
|
2020-02-13 18:55:47 +00:00
|
|
|
|
2020-06-22 08:35:11 +00:00
|
|
|
test "doesn't die on chat messages" do
|
|
|
|
Pleroma.Config.put([:mrf_hellthread], %{delist_threshold: 2, reject_threshold: 0})
|
|
|
|
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} = CommonAPI.post_chat_message(user, other_user, "moin")
|
|
|
|
|
|
|
|
assert {:ok, _} = filter(activity.data)
|
|
|
|
end
|
|
|
|
|
2019-02-17 11:33:44 +00:00
|
|
|
describe "reject" do
|
|
|
|
test "rejects the message if the recipient count is above reject_threshold", %{
|
|
|
|
message: message
|
|
|
|
} do
|
2019-02-15 11:47:50 +00:00
|
|
|
Pleroma.Config.put([:mrf_hellthread], %{delist_threshold: 0, reject_threshold: 2})
|
|
|
|
|
|
|
|
{:reject, nil} = filter(message)
|
|
|
|
end
|
|
|
|
|
2019-02-17 11:33:44 +00:00
|
|
|
test "does not reject the message if the recipient count is below reject_threshold", %{
|
|
|
|
message: message
|
|
|
|
} do
|
|
|
|
Pleroma.Config.put([:mrf_hellthread], %{delist_threshold: 0, reject_threshold: 3})
|
|
|
|
|
|
|
|
assert {:ok, ^message} = filter(message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "delist" do
|
|
|
|
test "delists the message if the recipient count is above delist_threshold", %{
|
|
|
|
user: user,
|
|
|
|
message: message
|
|
|
|
} do
|
2019-02-15 11:47:50 +00:00
|
|
|
Pleroma.Config.put([:mrf_hellthread], %{delist_threshold: 2, reject_threshold: 0})
|
|
|
|
|
|
|
|
{:ok, message} = filter(message)
|
|
|
|
assert user.follower_address in message["to"]
|
|
|
|
assert "https://www.w3.org/ns/activitystreams#Public" in message["cc"]
|
|
|
|
end
|
|
|
|
|
2019-02-17 11:33:44 +00:00
|
|
|
test "does not delist the message if the recipient count is below delist_threshold", %{
|
|
|
|
message: message
|
|
|
|
} do
|
|
|
|
Pleroma.Config.put([:mrf_hellthread], %{delist_threshold: 4, reject_threshold: 0})
|
2019-02-15 11:47:50 +00:00
|
|
|
|
2019-02-17 11:33:44 +00:00
|
|
|
assert {:ok, ^message} = filter(message)
|
2019-02-15 11:47:50 +00:00
|
|
|
end
|
|
|
|
end
|
2019-02-17 11:33:44 +00:00
|
|
|
|
|
|
|
test "excludes follower collection and public URI from threshold count", %{message: message} do
|
|
|
|
Pleroma.Config.put([:mrf_hellthread], %{delist_threshold: 0, reject_threshold: 3})
|
|
|
|
|
|
|
|
assert {:ok, ^message} = filter(message)
|
|
|
|
end
|
2019-02-15 11:47:50 +00:00
|
|
|
end
|