summaryrefslogtreecommitdiff
path: root/test/pleroma/web/plugs/user_enabled_plug_test.exs
blob: 999c6c49c2bd6be05f5cc9a3d6db1750c2ceb12c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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

  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