Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33100662
session_authentication_plug_test.exs
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
session_authentication_plug_test.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Plugs.SessionAuthenticationPlugTest
do
use
Pleroma.Web.ConnCase
,
async
:
true
alias
Pleroma.Plugs.SessionAuthenticationPlug
alias
Pleroma.User
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
|>
assign
(
:auth_user
,
%
User
{
id
:
1
})
%{
conn
:
conn
}
end
test
"it does nothing if a user is assigned"
,
%{
conn
:
conn
}
do
conn
=
conn
|>
assign
(
:user
,
%
User
{})
ret_conn
=
conn
|>
SessionAuthenticationPlug
.
call
(%{})
assert
ret_conn
==
conn
end
test
"if the auth_user has the same id as the user_id in the session, it assigns the user"
,
%{
conn
:
conn
}
do
conn
=
conn
|>
put_session
(
:user_id
,
conn
.
assigns
.
auth_user
.
id
)
|>
SessionAuthenticationPlug
.
call
(%{})
assert
conn
.
assigns
.
user
==
conn
.
assigns
.
auth_user
end
test
"if the auth_user has a different id as the user_id in the session, it does nothing"
,
%{
conn
:
conn
}
do
conn
=
conn
|>
put_session
(
:user_id
,
-
1
)
ret_conn
=
conn
|>
SessionAuthenticationPlug
.
call
(%{})
assert
ret_conn
==
conn
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jan 20, 12:15 PM (12 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
808504
Default Alt Text
session_authentication_plug_test.exs (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment