summaryrefslogtreecommitdiff
path: root/test/pleroma/web/plugs/set_user_session_id_plug_test.exs
blob: 9814c80d8bb4f5873f8314cbcf51ab09fc0b6452 (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
# 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.SetUserSessionIdPlugTest do
  use Pleroma.Web.ConnCase, async: true

  alias Pleroma.Helpers.AuthHelper
  alias Pleroma.Web.Plugs.SetUserSessionIdPlug

  setup %{conn: conn} do
    session_opts = [
      store: :cookie,
      key: "_test",
      signing_salt: "cooldude"
    ]

    conn =
      conn
      |> Plug.Session.call(Plug.Session.init(session_opts))
      |> fetch_session()

    %{conn: conn}
  end

  test "doesn't do anything if the user isn't set", %{conn: conn} do
    ret_conn = SetUserSessionIdPlug.call(conn, %{})

    assert ret_conn == conn
  end

  test "sets session token basing on :token assign", %{conn: conn} do
    %{user: user, token: oauth_token} = oauth_access(["read"])

    ret_conn =
      conn
      |> assign(:user, user)
      |> assign(:token, oauth_token)
      |> SetUserSessionIdPlug.call(%{})

    assert AuthHelper.get_session_token(ret_conn) == oauth_token.token
  end
end