summaryrefslogtreecommitdiff
path: root/test/pleroma/web/plugs/ensure_public_or_authenticated_plug_test.exs
blob: 35edaa8250ea550400a78ea2139b15b286f407d5 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.Plugs.EnsurePublicOrAuthenticatedPlugTest do
  use Pleroma.Web.ConnCase

  alias Pleroma.User
  alias Pleroma.Web.Plugs.EnsurePublicOrAuthenticatedPlug

  setup do: clear_config([:instance, :public])

  test "it halts if not public and no user is assigned", %{conn: conn} do
    clear_config([:instance, :public], false)

    conn =
      conn
      |> EnsurePublicOrAuthenticatedPlug.call(%{})

    assert conn.status == 403
    assert conn.halted == true
  end

  test "it continues if public", %{conn: conn} do
    clear_config([:instance, :public], true)

    ret_conn =
      conn
      |> EnsurePublicOrAuthenticatedPlug.call(%{})

    refute ret_conn.halted
  end

  test "it continues if a user is assigned, even if not public", %{conn: conn} do
    clear_config([:instance, :public], false)

    conn =
      conn
      |> assign(:user, %User{})

    ret_conn =
      conn
      |> EnsurePublicOrAuthenticatedPlug.call(%{})

    refute ret_conn.halted
  end
end