pleroma/test/pleroma/web/plugs/user_fetcher_plug_test.exs

42 lines
927 B
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
2022-02-26 07:11:42 +01:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2018-12-23 21:11:29 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-06-23 17:16:47 +02:00
defmodule Pleroma.Web.Plugs.UserFetcherPlugTest do
2018-09-05 17:44:38 +02:00
use Pleroma.Web.ConnCase, async: true
2020-06-24 08:00:44 +02:00
alias Pleroma.Web.Plugs.UserFetcherPlug
2018-09-05 17:44:38 +02: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