Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33103405
safe_text_test.exs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
981 B
Referenced Files
None
Subscribers
None
safe_text_test.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.EctoType.ActivityPub.ObjectValidators.SafeTextTest
do
use
Pleroma.DataCase
,
async
:
true
alias
Pleroma.EctoType.ActivityPub.ObjectValidators.SafeText
test
"it lets normal text go through"
do
text
=
"hey how are you"
assert
{
:ok
,
text
}
==
SafeText
.
cast
(
text
)
end
test
"it removes html tags from text"
do
text
=
"hey look xss <script>alert('foo')</script>"
assert
{
:ok
,
"hey look xss alert(&
#
39;foo&
#
39;)"
}
==
SafeText
.
cast
(
text
)
end
test
"it keeps basic html tags"
do
text
=
"hey <a href='http://gensokyo.2hu'>look</a> xss <script>alert('foo')</script>"
assert
{
:ok
,
"hey <a href=\"http://gensokyo.2hu\">look</a> xss alert(&
#
39;foo&
#
39;)"
}
==
SafeText
.
cast
(
text
)
end
test
"errors for non-text"
do
assert
:error
==
SafeText
.
cast
(
1
)
end
end
File Metadata
Details
Attached
Mime Type
text/html
Expires
Tue, Jan 20, 1:47 PM (1 d, 5 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
935565
Default Alt Text
safe_text_test.exs (981 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment