2019-02-08 17:23:26 +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-08 17:23:26 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.KeywordPolicyTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
|
|
|
alias Pleroma.Web.ActivityPub.MRF.KeywordPolicy
|
|
|
|
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config(:mrf_keyword)
|
2020-02-13 18:55:47 +00:00
|
|
|
|
2019-02-08 17:23:26 +00:00
|
|
|
setup do
|
|
|
|
Pleroma.Config.put([:mrf_keyword], %{reject: [], federated_timeline_removal: [], replace: []})
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "rejecting based on keywords" do
|
2019-02-11 18:35:40 +00:00
|
|
|
test "rejects if string matches in content" do
|
2019-02-08 17:23:26 +00:00
|
|
|
Pleroma.Config.put([:mrf_keyword, :reject], ["pun"])
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
2019-02-11 18:35:40 +00:00
|
|
|
"object" => %{
|
|
|
|
"content" => "just a daily reminder that compLAINer is a good pun",
|
|
|
|
"summary" => ""
|
|
|
|
}
|
2019-02-08 17:23:26 +00:00
|
|
|
}
|
|
|
|
|
2020-07-13 13:47:13 +00:00
|
|
|
assert {:reject, "[KeywordPolicy] Matches with rejected keyword"} =
|
|
|
|
KeywordPolicy.filter(message)
|
2019-02-08 17:23:26 +00:00
|
|
|
end
|
|
|
|
|
2019-02-11 18:35:40 +00:00
|
|
|
test "rejects if string matches in summary" do
|
|
|
|
Pleroma.Config.put([:mrf_keyword, :reject], ["pun"])
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"object" => %{
|
|
|
|
"summary" => "just a daily reminder that compLAINer is a good pun",
|
|
|
|
"content" => ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-13 13:47:13 +00:00
|
|
|
assert {:reject, "[KeywordPolicy] Matches with rejected keyword"} =
|
|
|
|
KeywordPolicy.filter(message)
|
2019-02-11 18:35:40 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "rejects if regex matches in content" do
|
2019-02-08 17:23:26 +00:00
|
|
|
Pleroma.Config.put([:mrf_keyword, :reject], [~r/comp[lL][aA][iI][nN]er/])
|
|
|
|
|
|
|
|
assert true ==
|
|
|
|
Enum.all?(["complainer", "compLainer", "compLAiNer", "compLAINer"], fn content ->
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"object" => %{
|
2019-02-11 18:35:40 +00:00
|
|
|
"content" => "just a daily reminder that #{content} is a good pun",
|
|
|
|
"summary" => ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-13 13:47:13 +00:00
|
|
|
{:reject, "[KeywordPolicy] Matches with rejected keyword"} ==
|
|
|
|
KeywordPolicy.filter(message)
|
2019-02-11 18:35:40 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "rejects if regex matches in summary" do
|
|
|
|
Pleroma.Config.put([:mrf_keyword, :reject], [~r/comp[lL][aA][iI][nN]er/])
|
|
|
|
|
|
|
|
assert true ==
|
|
|
|
Enum.all?(["complainer", "compLainer", "compLAiNer", "compLAINer"], fn content ->
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"object" => %{
|
|
|
|
"summary" => "just a daily reminder that #{content} is a good pun",
|
|
|
|
"content" => ""
|
2019-02-08 17:23:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-13 13:47:13 +00:00
|
|
|
{:reject, "[KeywordPolicy] Matches with rejected keyword"} ==
|
|
|
|
KeywordPolicy.filter(message)
|
2019-02-08 17:23:26 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "delisting from ftl based on keywords" do
|
2019-02-11 18:35:40 +00:00
|
|
|
test "delists if string matches in content" do
|
2019-02-08 17:23:26 +00:00
|
|
|
Pleroma.Config.put([:mrf_keyword, :federated_timeline_removal], ["pun"])
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"type" => "Create",
|
2019-02-11 18:35:40 +00:00
|
|
|
"object" => %{
|
|
|
|
"content" => "just a daily reminder that compLAINer is a good pun",
|
|
|
|
"summary" => ""
|
|
|
|
}
|
2019-02-08 17:23:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, result} = KeywordPolicy.filter(message)
|
|
|
|
assert ["https://www.w3.org/ns/activitystreams#Public"] == result["cc"]
|
|
|
|
refute ["https://www.w3.org/ns/activitystreams#Public"] == result["to"]
|
|
|
|
end
|
|
|
|
|
2019-02-11 18:35:40 +00:00
|
|
|
test "delists if string matches in summary" do
|
|
|
|
Pleroma.Config.put([:mrf_keyword, :federated_timeline_removal], ["pun"])
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"type" => "Create",
|
|
|
|
"object" => %{
|
|
|
|
"summary" => "just a daily reminder that compLAINer is a good pun",
|
|
|
|
"content" => ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, result} = KeywordPolicy.filter(message)
|
|
|
|
assert ["https://www.w3.org/ns/activitystreams#Public"] == result["cc"]
|
|
|
|
refute ["https://www.w3.org/ns/activitystreams#Public"] == result["to"]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "delists if regex matches in content" do
|
|
|
|
Pleroma.Config.put([:mrf_keyword, :federated_timeline_removal], [~r/comp[lL][aA][iI][nN]er/])
|
|
|
|
|
|
|
|
assert true ==
|
|
|
|
Enum.all?(["complainer", "compLainer", "compLAiNer", "compLAINer"], fn content ->
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => %{
|
|
|
|
"content" => "just a daily reminder that #{content} is a good pun",
|
|
|
|
"summary" => ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, result} = KeywordPolicy.filter(message)
|
|
|
|
|
|
|
|
["https://www.w3.org/ns/activitystreams#Public"] == result["cc"] and
|
|
|
|
not (["https://www.w3.org/ns/activitystreams#Public"] == result["to"])
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "delists if regex matches in summary" do
|
2019-02-08 17:23:26 +00:00
|
|
|
Pleroma.Config.put([:mrf_keyword, :federated_timeline_removal], [~r/comp[lL][aA][iI][nN]er/])
|
|
|
|
|
|
|
|
assert true ==
|
|
|
|
Enum.all?(["complainer", "compLainer", "compLAiNer", "compLAINer"], fn content ->
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => %{
|
2019-02-11 18:35:40 +00:00
|
|
|
"summary" => "just a daily reminder that #{content} is a good pun",
|
|
|
|
"content" => ""
|
2019-02-08 17:23:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, result} = KeywordPolicy.filter(message)
|
|
|
|
|
|
|
|
["https://www.w3.org/ns/activitystreams#Public"] == result["cc"] and
|
|
|
|
not (["https://www.w3.org/ns/activitystreams#Public"] == result["to"])
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "replacing keywords" do
|
2019-02-11 18:35:40 +00:00
|
|
|
test "replaces keyword if string matches in content" do
|
2019-02-08 17:23:26 +00:00
|
|
|
Pleroma.Config.put([:mrf_keyword, :replace], [{"opensource", "free software"}])
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
2019-02-11 18:35:40 +00:00
|
|
|
"object" => %{"content" => "ZFS is opensource", "summary" => ""}
|
2019-02-08 17:23:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, %{"object" => %{"content" => result}}} = KeywordPolicy.filter(message)
|
|
|
|
assert result == "ZFS is free software"
|
|
|
|
end
|
|
|
|
|
2019-02-11 18:35:40 +00:00
|
|
|
test "replaces keyword if string matches in summary" do
|
|
|
|
Pleroma.Config.put([:mrf_keyword, :replace], [{"opensource", "free software"}])
|
|
|
|
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => %{"summary" => "ZFS is opensource", "content" => ""}
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, %{"object" => %{"summary" => result}}} = KeywordPolicy.filter(message)
|
|
|
|
assert result == "ZFS is free software"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "replaces keyword if regex matches in content" do
|
2019-02-08 17:23:26 +00:00
|
|
|
Pleroma.Config.put([:mrf_keyword, :replace], [
|
|
|
|
{~r/open(-|\s)?source\s?(software)?/, "free software"}
|
|
|
|
])
|
|
|
|
|
|
|
|
assert true ==
|
|
|
|
Enum.all?(["opensource", "open-source", "open source"], fn content ->
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
2019-02-11 18:35:40 +00:00
|
|
|
"object" => %{"content" => "ZFS is #{content}", "summary" => ""}
|
2019-02-08 17:23:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, %{"object" => %{"content" => result}}} = KeywordPolicy.filter(message)
|
|
|
|
result == "ZFS is free software"
|
|
|
|
end)
|
|
|
|
end
|
2019-02-11 18:35:40 +00:00
|
|
|
|
|
|
|
test "replaces keyword if regex matches in summary" do
|
|
|
|
Pleroma.Config.put([:mrf_keyword, :replace], [
|
|
|
|
{~r/open(-|\s)?source\s?(software)?/, "free software"}
|
|
|
|
])
|
|
|
|
|
|
|
|
assert true ==
|
|
|
|
Enum.all?(["opensource", "open-source", "open source"], fn content ->
|
|
|
|
message = %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
|
|
|
|
"object" => %{"summary" => "ZFS is #{content}", "content" => ""}
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, %{"object" => %{"summary" => result}}} = KeywordPolicy.filter(message)
|
|
|
|
result == "ZFS is free software"
|
|
|
|
end)
|
|
|
|
end
|
2019-02-08 17:23:26 +00:00
|
|
|
end
|
|
|
|
end
|