2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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.UserFetcherPlugTest do
|
2018-09-05 15:44:38 +00:00
|
|
|
use Pleroma.Web.ConnCase, async: true
|
|
|
|
|
2020-06-24 06:00:44 +00:00
|
|
|
alias Pleroma.Web.Plugs.UserFetcherPlug
|
2018-09-05 15:44:38 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
|
|
|
setup do
|
|
|
|
user = insert(:user)
|
|
|
|
%{user: user}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "if an auth_credentials assign is present, it tries to fetch the user and assigns it", %{
|
|
|
|
conn: conn,
|
|
|
|
user: user
|
|
|
|
} do
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> assign(:auth_credentials, %{
|
|
|
|
username: user.nickname,
|
|
|
|
password: nil
|
|
|
|
})
|
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> UserFetcherPlug.call(%{})
|
|
|
|
|
|
|
|
assert conn.assigns[:auth_user] == user
|
|
|
|
end
|
|
|
|
|
|
|
|
test "without a credential assign it doesn't do anything", %{conn: conn} do
|
|
|
|
ret_conn =
|
|
|
|
conn
|
|
|
|
|> UserFetcherPlug.call(%{})
|
|
|
|
|
|
|
|
assert conn == ret_conn
|
|
|
|
end
|
|
|
|
end
|