pleroma/test/pleroma/web/plugs/ensure_user_key_plug_test.exs

30 lines
709 B
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
2020-03-03 23:46:45 +01:00
# Copyright © 2017-2020 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.EnsureUserKeyPlugTest do
2018-09-05 19:06:28 +02:00
use Pleroma.Web.ConnCase, async: true
2020-06-24 09:49:18 +02:00
alias Pleroma.Web.Plugs.EnsureUserKeyPlug
2018-09-05 19:06:28 +02:00
test "if the conn has a user key set, it does nothing", %{conn: conn} do
conn =
conn
|> assign(:user, 1)
ret_conn =
conn
|> EnsureUserKeyPlug.call(%{})
assert conn == ret_conn
end
test "if the conn has no key set, it sets it to nil", %{conn: conn} do
conn =
conn
|> EnsureUserKeyPlug.call(%{})
assert Map.has_key?(conn.assigns, :user)
end
end