diff options
author | lain <lain@soykaf.club> | 2020-06-22 10:35:11 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-06-22 10:35:11 +0200 |
commit | 35e9282ffdafd8a04d1c09ec5eff3f176bb389de (patch) | |
tree | 35167d147e24a3f6f96ee0e2eedeefd0117a1d84 /test | |
parent | 6efd3730c31c9121894c825b1bef87796a67d000 (diff) | |
download | pleroma-35e9282ffdafd8a04d1c09ec5eff3f176bb389de.tar.gz pleroma-35e9282ffdafd8a04d1c09ec5eff3f176bb389de.zip |
HellthreadPolicy: Restrict to Notes and Articles.
Diffstat (limited to 'test')
-rw-r--r-- | test/web/activity_pub/mrf/hellthread_policy_test.exs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/test/web/activity_pub/mrf/hellthread_policy_test.exs b/test/web/activity_pub/mrf/hellthread_policy_test.exs index 95ef0b168..6e9daa7f9 100644 --- a/test/web/activity_pub/mrf/hellthread_policy_test.exs +++ b/test/web/activity_pub/mrf/hellthread_policy_test.exs @@ -8,6 +8,8 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicyTest do import Pleroma.Web.ActivityPub.MRF.HellthreadPolicy + alias Pleroma.Web.CommonAPI + setup do user = insert(:user) @@ -20,7 +22,10 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicyTest do "https://instance.tld/users/user1", "https://instance.tld/users/user2", "https://instance.tld/users/user3" - ] + ], + "object" => %{ + "type" => "Note" + } } [user: user, message: message] @@ -28,6 +33,17 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicyTest do setup do: clear_config(:mrf_hellthread) + 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 + describe "reject" do test "rejects the message if the recipient count is above reject_threshold", %{ message: message |