summaryrefslogtreecommitdiff
path: root/test/web/activity_pub/mrf/user_allowlist_policy_test.exs
blob: 87c9e1b295b8074b190131894b2766225639a56e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ActivityPub.MRF.UserAllowListPolicyTest do
  use Pleroma.DataCase
  import Pleroma.Factory

  alias Pleroma.Web.ActivityPub.MRF.UserAllowListPolicy

  clear_config([:mrf_user_allowlist, :localhost])

  test "pass filter if allow list is empty" do
    actor = insert(:user)
    message = %{"actor" => actor.ap_id}
    assert UserAllowListPolicy.filter(message) == {:ok, message}
  end

  test "pass filter if allow list isn't empty and user in allow list" do
    actor = insert(:user)
    Pleroma.Config.put([:mrf_user_allowlist, :localhost], [actor.ap_id, "test-ap-id"])
    message = %{"actor" => actor.ap_id}
    assert UserAllowListPolicy.filter(message) == {:ok, message}
  end

  test "rejected if allow list isn't empty and user not in allow list" do
    actor = insert(:user)
    Pleroma.Config.put([:mrf_user_allowlist, :localhost], ["test-ap-id"])
    message = %{"actor" => actor.ap_id}
    assert UserAllowListPolicy.filter(message) == {:reject, nil}
  end
end