summaryrefslogtreecommitdiff
path: root/test/plugs/user_enabled_plug_test.exs
blob: e85b37ffee655938c4710e08a2670d4164fcb990 (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
60
# Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

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 =
      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
    old = Pleroma.Config.get([:instance, :account_activation_required])
    Pleroma.Config.put([:instance, :account_activation_required], true)

    user = insert(:user, info: %{confirmation_pending: true})

    conn =
      conn
      |> assign(:user, user)
      |> UserEnabledPlug.call(%{})

    assert conn.assigns.user == nil

    Pleroma.Config.put([:instance, :account_activation_required], old)
  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, 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