Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F41645435
common_api_test.exs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
common_api_test.exs
View Options
defmodule
Pleroma.Web.CommonAPI.Test
do
use
Pleroma.DataCase
alias
Pleroma.Web.CommonAPI
alias
Pleroma.User
import
Pleroma.Factory
test
"it de-duplicates tags"
do
user
=
insert
(
:user
)
{
:ok
,
activity
}
=
CommonAPI
.
post
(
user
,
%{
"status"
=>
"
#
2hu
#
2HU"
})
assert
activity
.
data
[
"object"
][
"tag"
]
==
[
"2hu"
]
end
test
"it adds emoji when updating profiles"
do
user
=
insert
(
:user
,
%{
name
:
":karjalanpiirakka:"
})
CommonAPI
.
update
(
user
)
user
=
User
.
get_cached_by_ap_id
(
user
.
ap_id
)
[
karjalanpiirakka
]
=
user
.
info
.
source_data
[
"tag"
]
assert
karjalanpiirakka
[
"name"
]
==
":karjalanpiirakka:"
end
describe
"posting"
do
test
"it filters out obviously bad tags when accepting a post as HTML"
do
user
=
insert
(
:user
)
post
=
"<p><b>2hu</b></p><script>alert('xss')</script>"
{
:ok
,
activity
}
=
CommonAPI
.
post
(
user
,
%{
"status"
=>
post
,
"content_type"
=>
"text/html"
})
content
=
activity
.
data
[
"object"
][
"content"
]
assert
content
==
"<p><b>2hu</b></p>alert('xss')"
end
test
"it filters out obviously bad tags when accepting a post as Markdown"
do
user
=
insert
(
:user
)
post
=
"<p><b>2hu</b></p><script>alert('xss')</script>"
{
:ok
,
activity
}
=
CommonAPI
.
post
(
user
,
%{
"status"
=>
post
,
"content_type"
=>
"text/markdown"
})
content
=
activity
.
data
[
"object"
][
"content"
]
assert
content
==
"<p><b>2hu</b></p>alert('xss')"
end
end
end
File Metadata
Details
Attached
Mime Type
text/html
Expires
Sun, Feb 15, 4:33 AM (4 h, 8 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
992830
Default Alt Text
common_api_test.exs (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment