forked from AkkomaGang/akkoma
FloatingGhost
98cb255d12
OTP builds to 1.15 Changelog entry Ensure policies are fully loaded Fix :warn use main branch for linkify Fix warn in tests Migrations for phoenix 1.17 Revert "Migrations for phoenix 1.17" This reverts commit 6a3b2f15b74ea5e33150529385215b7a531f3999. Oban upgrade Add default empty whitelist mix format limit test to amd64 OTP 26 tests for 1.15 use OTP_VERSION tag baka just 1.15 Massive deps update Update locale, deps Mix format shell???? multiline??? ? max cases 1 use assert_recieve don't put_env in async tests don't async conn/fs tests mix format FIx some uploader issues Fix tests
59 lines
1.4 KiB
Elixir
59 lines
1.4 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.Plugs.UserEnabledPlugTest do
|
|
use Pleroma.Web.ConnCase, async: false
|
|
|
|
alias Pleroma.Web.Plugs.UserEnabledPlug
|
|
import Pleroma.Factory
|
|
|
|
setup do: clear_config([:instance, :account_activation_required])
|
|
|
|
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's not confirmed and a config requiring confirmation, it removes that user",
|
|
%{conn: conn} do
|
|
clear_config([:instance, :account_activation_required], true)
|
|
|
|
user = insert(:user, is_confirmed: false)
|
|
|
|
conn =
|
|
conn
|
|
|> assign(:user, user)
|
|
|> UserEnabledPlug.call(%{})
|
|
|
|
assert conn.assigns.user == nil
|
|
end
|
|
|
|
test "with a user that is deactivated, it removes that user", %{conn: conn} do
|
|
user = insert(:user, is_active: false)
|
|
|
|
conn =
|
|
conn
|
|
|> 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, user)
|
|
|
|
ret_conn =
|
|
conn
|
|
|> UserEnabledPlug.call(%{})
|
|
|
|
assert conn == ret_conn
|
|
end
|
|
end
|