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

30 lines
709 B
Elixir
Raw Normal View History

2018-12-23 13:11:29 -07:00
# Pleroma: A lightweight social networking server
2020-03-03 15:46:45 -07:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2018-12-23 13:11:29 -07:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-06-23 09:16:47 -06:00
defmodule Pleroma.Web.Plugs.EnsureUserKeyPlugTest do
2018-09-05 11:06:28 -06:00
use Pleroma.Web.ConnCase, async: true
2020-06-24 01:49:18 -06:00
alias Pleroma.Web.Plugs.EnsureUserKeyPlug
2018-09-05 11:06:28 -06: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