Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F13521952
ensure_public_or_authenticated_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
ensure_public_or_authenticated_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.EnsurePublicOrAuthenticatedPlugTest
do
use
Pleroma.Web.ConnCase
,
async
:
true
alias
Pleroma.Config
alias
Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug
alias
Pleroma.User
test
"it halts if not public and no user is assigned"
,
%{
conn
:
conn
}
do
set_public_to
(
false
)
conn
=
conn
|>
EnsurePublicOrAuthenticatedPlug
.
call
(%{})
assert
conn
.
status
==
403
assert
conn
.
halted
==
true
end
test
"it continues if public"
,
%{
conn
:
conn
}
do
set_public_to
(
true
)
ret_conn
=
conn
|>
EnsurePublicOrAuthenticatedPlug
.
call
(%{})
assert
ret_conn
==
conn
end
test
"it continues if a user is assigned, even if not public"
,
%{
conn
:
conn
}
do
set_public_to
(
false
)
conn
=
conn
|>
assign
(
:user
,
%
User
{})
ret_conn
=
conn
|>
EnsurePublicOrAuthenticatedPlug
.
call
(%{})
assert
ret_conn
==
conn
end
defp
set_public_to
(
value
)
do
orig
=
Config
.
get!
([
:instance
,
:public
])
Config
.
put
([
:instance
,
:public
],
value
)
on_exit
(
fn
->
Config
.
put
([
:instance
,
:public
],
orig
)
end
)
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 7, 8:40 PM (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
698902
Default Alt Text
ensure_public_or_authenticated_plug_test.exs (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment