2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08: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
|
|
|
|
|
2020-06-23 15:16:47 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.AdminSecretAuthenticationPlugTest do
|
2020-09-08 14:12:38 +00:00
|
|
|
use Pleroma.Web.ConnCase
|
2020-07-14 08:58:41 +00:00
|
|
|
|
|
|
|
import Mock
|
2018-12-18 20:08:52 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
2020-06-24 08:18:42 +00:00
|
|
|
alias Pleroma.Web.Plugs.AdminSecretAuthenticationPlug
|
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
|
|
|
alias Pleroma.Web.Plugs.PlugHelper
|
|
|
|
alias Pleroma.Web.Plugs.RateLimiter
|
2018-12-18 20:08:52 +00:00
|
|
|
|
|
|
|
test "does nothing if a user is assigned", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|
|
|
|
ret_conn =
|
|
|
|
conn
|
|
|
|
|> AdminSecretAuthenticationPlug.call(%{})
|
|
|
|
|
|
|
|
assert conn == ret_conn
|
|
|
|
end
|
|
|
|
|
2019-11-19 08:58:20 +00:00
|
|
|
describe "when secret set it assigns an admin user" do
|
2020-03-20 15:33:00 +00:00
|
|
|
setup do: clear_config([:admin_token])
|
2020-02-13 18:55:47 +00:00
|
|
|
|
2020-07-14 08:58:41 +00:00
|
|
|
setup_with_mocks([{RateLimiter, [:passthrough], []}]) do
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
2019-11-19 08:58:20 +00:00
|
|
|
test "with `admin_token` query parameter", %{conn: conn} do
|
|
|
|
Pleroma.Config.put(:admin_token, "password123")
|
2018-12-18 20:08:52 +00:00
|
|
|
|
2019-11-19 08:58:20 +00:00
|
|
|
conn =
|
|
|
|
%{conn | params: %{"admin_token" => "wrong_password"}}
|
|
|
|
|> AdminSecretAuthenticationPlug.call(%{})
|
2018-12-18 20:08:52 +00:00
|
|
|
|
2019-11-19 08:58:20 +00:00
|
|
|
refute conn.assigns[:user]
|
2020-07-14 08:58:41 +00:00
|
|
|
assert called(RateLimiter.call(conn, name: :authentication))
|
2018-12-18 20:08:52 +00:00
|
|
|
|
2019-11-19 08:58:20 +00:00
|
|
|
conn =
|
|
|
|
%{conn | params: %{"admin_token" => "password123"}}
|
|
|
|
|> AdminSecretAuthenticationPlug.call(%{})
|
|
|
|
|
|
|
|
assert conn.assigns[:user].is_admin
|
2020-07-19 18:35:57 +00:00
|
|
|
assert PlugHelper.plug_skipped?(conn, OAuthScopesPlug)
|
2019-11-19 08:58:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "with `x-admin-token` HTTP header", %{conn: conn} do
|
|
|
|
Pleroma.Config.put(:admin_token, "☕️")
|
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header("x-admin-token", "🥛")
|
|
|
|
|> AdminSecretAuthenticationPlug.call(%{})
|
|
|
|
|
|
|
|
refute conn.assigns[:user]
|
2020-07-14 08:58:41 +00:00
|
|
|
assert called(RateLimiter.call(conn, name: :authentication))
|
2019-11-19 08:58:20 +00:00
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> put_req_header("x-admin-token", "☕️")
|
|
|
|
|> AdminSecretAuthenticationPlug.call(%{})
|
2018-12-18 20:08:52 +00:00
|
|
|
|
2019-11-19 08:58:20 +00:00
|
|
|
assert conn.assigns[:user].is_admin
|
2020-07-19 18:35:57 +00:00
|
|
|
assert PlugHelper.plug_skipped?(conn, OAuthScopesPlug)
|
2019-11-19 08:58:20 +00:00
|
|
|
end
|
2018-12-18 20:08:52 +00:00
|
|
|
end
|
|
|
|
end
|