pleroma/test/plugs/user_enabled_plug_test.exs

44 lines
991 B
Elixir
Raw Normal View History

2018-12-23 21:11:29 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-09-05 21:53:53 +02:00
defmodule Pleroma.Plugs.UserEnabledPlugTest do
use Pleroma.Web.ConnCase, async: true
alias Pleroma.Plugs.UserEnabledPlug
import Pleroma.Factory
2018-09-05 21:53:53 +02:00
test "doesn't do anything if the user isn't set", %{conn: conn} do
ret_conn =
conn
|> UserEnabledPlug.call(%{})
assert ret_conn == conn
end
test "with a user that is deactivated, it removes that user", %{conn: conn} do
user = insert(:user, deactivated: true)
2018-09-05 21:53:53 +02:00
conn =
conn
|> assign(:user, user)
2018-09-05 21:53:53 +02:00
|> UserEnabledPlug.call(%{})
assert conn.assigns.user == nil
end
test "with a user that is not deactivated, it does nothing", %{conn: conn} do
user = insert(:user)
2018-09-05 21:53:53 +02:00
conn =
conn
|> assign(:user, user)
2018-09-05 21:53:53 +02:00
ret_conn =
conn
|> UserEnabledPlug.call(%{})
assert conn == ret_conn
end
end