aboutsummaryrefslogtreecommitdiff
path: root/test/web/common_api/common_api_test.exs
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2018-08-31 09:53:00 +0000
committerlambda <pleromagit@rogerbraun.net>2018-08-31 09:53:00 +0000
commitd31bbb1cfe04ca6073a322bcf77239e7d4b79839 (patch)
treeba9a5a9e33b4afb79044c5d8da663b150010bd68 /test/web/common_api/common_api_test.exs
parent340ab3cb9068d444b77213e07beb8c2c3ca128b9 (diff)
parent58539e13573681238fdd4d4e7334666389084be3 (diff)
downloadpleroma-d31bbb1cfe04ca6073a322bcf77239e7d4b79839.tar.gz
Merge branch 'revert-a26d5e6b' into 'develop'
Revert "Merge branch 'feature/rich-text' into 'develop'" See merge request pleroma/pleroma!313
Diffstat (limited to 'test/web/common_api/common_api_test.exs')
-rw-r--r--test/web/common_api/common_api_test.exs32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/web/common_api/common_api_test.exs b/test/web/common_api/common_api_test.exs
index cd5aca961..2a2c40833 100644
--- a/test/web/common_api/common_api_test.exs
+++ b/test/web/common_api/common_api_test.exs
@@ -21,36 +21,4 @@ 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