forked from AkkomaGang/akkoma
tests: break the cycle using pleroma.factory
This commit is contained in:
parent
fc92bb28b4
commit
a4fe14de02
1 changed files with 7 additions and 2 deletions
|
@ -2,6 +2,7 @@ defmodule Pleroma.Plugs.UserEnabledPlugTest do
|
|||
use Pleroma.Web.ConnCase, async: true
|
||||
|
||||
alias Pleroma.Plugs.UserEnabledPlug
|
||||
import Pleroma.Factory
|
||||
|
||||
test "doesn't do anything if the user isn't set", %{conn: conn} do
|
||||
ret_conn =
|
||||
|
@ -12,18 +13,22 @@ test "doesn't do anything if the user isn't set", %{conn: conn} do
|
|||
end
|
||||
|
||||
test "with a user that is deactivated, it removes that user", %{conn: conn} do
|
||||
user = insert(:user, info: %{"deactivated" => true})
|
||||
|
||||
conn =
|
||||
conn
|
||||
|> assign(:user, %Pleroma.User{info: %{"deactivated" => true}})
|
||||
|> assign(:user, user)
|
||||
|> 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)
|
||||
|
||||
conn =
|
||||
conn
|
||||
|> assign(:user, %Pleroma.User{})
|
||||
|> assign(:user, user)
|
||||
|
||||
ret_conn =
|
||||
conn
|
||||
|
|
Loading…
Reference in a new issue