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
|
|
|
|
|
2020-06-23 15:16:47 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.SessionAuthenticationPlugTest do
|
2018-09-05 16:37:02 +00:00
|
|
|
use Pleroma.Web.ConnCase, async: true
|
|
|
|
|
|
|
|
alias Pleroma.User
|
2020-10-31 10:38:35 +00:00
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
|
|
|
alias Pleroma.Web.Plugs.PlugHelper
|
2020-06-24 06:27:29 +00:00
|
|
|
alias Pleroma.Web.Plugs.SessionAuthenticationPlug
|
2018-09-05 16:37:02 +00:00
|
|
|
|
|
|
|
setup %{conn: conn} do
|
|
|
|
session_opts = [
|
|
|
|
store: :cookie,
|
|
|
|
key: "_test",
|
|
|
|
signing_salt: "cooldude"
|
|
|
|
]
|
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> Plug.Session.call(Plug.Session.init(session_opts))
|
2020-10-31 10:38:35 +00:00
|
|
|
|> fetch_session()
|
2018-09-05 16:37:02 +00:00
|
|
|
|> assign(:auth_user, %User{id: 1})
|
|
|
|
|
|
|
|
%{conn: conn}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it does nothing if a user is assigned", %{conn: conn} do
|
2020-10-31 10:38:35 +00:00
|
|
|
conn = assign(conn, :user, %User{})
|
|
|
|
ret_conn = SessionAuthenticationPlug.call(conn, %{})
|
2018-09-05 16:37:02 +00:00
|
|
|
|
|
|
|
assert ret_conn == conn
|
|
|
|
end
|
|
|
|
|
2020-10-31 10:38:35 +00:00
|
|
|
# Scenario: requester has the cookie and knows the username (not necessarily knows the password)
|
2018-09-05 16:37:02 +00:00
|
|
|
test "if the auth_user has the same id as the user_id in the session, it assigns the user", %{
|
|
|
|
conn: conn
|
|
|
|
} do
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> put_session(:user_id, conn.assigns.auth_user.id)
|
|
|
|
|> SessionAuthenticationPlug.call(%{})
|
|
|
|
|
|
|
|
assert conn.assigns.user == conn.assigns.auth_user
|
2020-10-31 10:38:35 +00:00
|
|
|
assert conn.assigns.token == nil
|
|
|
|
assert PlugHelper.plug_skipped?(conn, OAuthScopesPlug)
|
2018-09-05 16:37:02 +00:00
|
|
|
end
|
|
|
|
|
2020-10-31 10:38:35 +00:00
|
|
|
# Scenario: requester has the cookie but doesn't know the username
|
2018-09-05 16:37:02 +00:00
|
|
|
test "if the auth_user has a different id as the user_id in the session, it does nothing", %{
|
|
|
|
conn: conn
|
|
|
|
} do
|
2020-10-31 10:38:35 +00:00
|
|
|
conn = put_session(conn, :user_id, -1)
|
|
|
|
ret_conn = SessionAuthenticationPlug.call(conn, %{})
|
2018-09-05 16:37:02 +00:00
|
|
|
|
|
|
|
assert ret_conn == conn
|
|
|
|
end
|
2020-10-31 10:38:35 +00:00
|
|
|
|
|
|
|
test "if the session does not contain user_id, it does nothing", %{
|
|
|
|
conn: conn
|
|
|
|
} do
|
|
|
|
assert conn == SessionAuthenticationPlug.call(conn, %{})
|
|
|
|
end
|
2018-09-05 16:37:02 +00:00
|
|
|
end
|