Revert "Merge branch 'revert-a26d5e6b' into 'develop'"
This reverts commitd31bbb1cfe, reversing changes made to340ab3cb90.
This commit is contained in:
parent
f7ba393bb9
commit
b1be9415ef
7 changed files with 78 additions and 7 deletions
|
|
@ -21,4 +21,36 @@ defmodule Pleroma.Web.CommonAPI.Test do
|
|||
|
||||
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 = "<h1>2hu</h1><script>alert('xss')</script>"
|
||||
|
||||
{:ok, activity} =
|
||||
CommonAPI.post(user, %{
|
||||
"status" => post,
|
||||
"content_type" => "text/html"
|
||||
})
|
||||
|
||||
content = activity.data["object"]["content"]
|
||||
assert content == "<h1>2hu</h1>alert('xss')"
|
||||
end
|
||||
|
||||
test "it filters out obviously bad tags when accepting a post as Markdown" do
|
||||
user = insert(:user)
|
||||
|
||||
post = "<h1>2hu</h1><script>alert('xss')</script>"
|
||||
|
||||
{:ok, activity} =
|
||||
CommonAPI.post(user, %{
|
||||
"status" => post,
|
||||
"content_type" => "text/markdown"
|
||||
})
|
||||
|
||||
content = activity.data["object"]["content"]
|
||||
assert content == "<h1>2hu</h1>alert('xss')"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue