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

defmodule Pleroma.Plugs.UserFetcherPlugTest do
  use Pleroma.Web.ConnCase, async: true

  alias Pleroma.Plugs.UserFetcherPlug
  import Pleroma.Factory

  setup do
    user = insert(:user)
    %{user: user}
  end

  test "if an auth_credentials assign is present, it tries to fetch the user and assigns it", %{
    conn: conn,
    user: user
  } do
    conn =
      conn
      |> assign(:auth_credentials, %{
        username: user.nickname,
        password: nil
      })

    conn =
      conn
      |> UserFetcherPlug.call(%{})

    assert conn.assigns[:auth_user] == user
  end

  test "without a credential assign it doesn't do anything", %{conn: conn} do
    ret_conn =
      conn
      |> UserFetcherPlug.call(%{})

    assert conn == ret_conn
  end
end