2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:46:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-05 15:59:19 +00:00
|
|
|
defmodule Pleroma.Plugs.EnsureAuthenticatedPlugTest do
|
|
|
|
use Pleroma.Web.ConnCase, async: true
|
|
|
|
|
|
|
|
alias Pleroma.Plugs.EnsureAuthenticatedPlug
|
|
|
|
alias Pleroma.User
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
describe "without :if_func / :unless_func options" do
|
|
|
|
test "it halts if user is NOT assigned", %{conn: conn} do
|
|
|
|
conn = EnsureAuthenticatedPlug.call(conn, %{})
|
2018-09-05 15:59:19 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
assert conn.status == 403
|
|
|
|
assert conn.halted == true
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it continues if a user is assigned", %{conn: conn} do
|
|
|
|
conn = assign(conn, :user, %User{})
|
|
|
|
ret_conn = EnsureAuthenticatedPlug.call(conn, %{})
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
refute ret_conn.halted
|
2020-03-09 17:51:44 +00:00
|
|
|
end
|
2018-09-05 15:59:19 +00:00
|
|
|
end
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
describe "with :if_func / :unless_func options" do
|
|
|
|
setup do
|
|
|
|
%{
|
2020-04-30 15:19:51 +00:00
|
|
|
true_fn: fn _conn -> true end,
|
|
|
|
false_fn: fn _conn -> false end
|
2020-03-09 17:51:44 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it continues if a user is assigned", %{conn: conn, true_fn: true_fn, false_fn: false_fn} do
|
|
|
|
conn = assign(conn, :user, %User{})
|
2020-04-21 13:29:19 +00:00
|
|
|
refute EnsureAuthenticatedPlug.call(conn, if_func: true_fn).halted
|
|
|
|
refute EnsureAuthenticatedPlug.call(conn, if_func: false_fn).halted
|
|
|
|
refute EnsureAuthenticatedPlug.call(conn, unless_func: true_fn).halted
|
|
|
|
refute EnsureAuthenticatedPlug.call(conn, unless_func: false_fn).halted
|
2020-03-09 17:51:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it continues if a user is NOT assigned but :if_func evaluates to `false`",
|
|
|
|
%{conn: conn, false_fn: false_fn} do
|
2020-04-21 13:29:19 +00:00
|
|
|
ret_conn = EnsureAuthenticatedPlug.call(conn, if_func: false_fn)
|
|
|
|
refute ret_conn.halted
|
2020-03-09 17:51:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it continues if a user is NOT assigned but :unless_func evaluates to `true`",
|
|
|
|
%{conn: conn, true_fn: true_fn} do
|
2020-04-21 13:29:19 +00:00
|
|
|
ret_conn = EnsureAuthenticatedPlug.call(conn, unless_func: true_fn)
|
|
|
|
refute ret_conn.halted
|
2020-03-09 17:51:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "it halts if a user is NOT assigned and :if_func evaluates to `true`",
|
|
|
|
%{conn: conn, true_fn: true_fn} do
|
|
|
|
conn = EnsureAuthenticatedPlug.call(conn, if_func: true_fn)
|
|
|
|
|
|
|
|
assert conn.status == 403
|
|
|
|
assert conn.halted == true
|
|
|
|
end
|
2018-09-05 15:59:19 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
test "it halts if a user is NOT assigned and :unless_func evaluates to `false`",
|
|
|
|
%{conn: conn, false_fn: false_fn} do
|
|
|
|
conn = EnsureAuthenticatedPlug.call(conn, unless_func: false_fn)
|
2018-09-05 15:59:19 +00:00
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
assert conn.status == 403
|
|
|
|
assert conn.halted == true
|
|
|
|
end
|
2018-09-05 15:59:19 +00:00
|
|
|
end
|
|
|
|
end
|