aboutsummaryrefslogtreecommitdiff
path: root/test/html_test.exs
diff options
context:
space:
mode:
authorMaksim Pechnikov <parallel588@gmail.com>2019-12-05 15:46:27 +0300
committerMaksim Pechnikov <parallel588@gmail.com>2019-12-05 15:46:27 +0300
commit3fe7a1fd35a9ca81b158eff6dbcc25ca48cbf96d (patch)
tree9a275a71ab8eeb19ce1e02d0b6ba64fe309f3d79 /test/html_test.exs
parenta36607c27e6a50aeca450570f7b8e4c9c0233bb1 (diff)
parent228bf4d214abe3bb62c52128d3bc145e396b174d (diff)
downloadpleroma-3fe7a1fd35a9ca81b158eff6dbcc25ca48cbf96d.tar.gz
Merge branch 'develop' into issue/1342
Diffstat (limited to 'test/html_test.exs')
-rw-r--r--test/html_test.exs11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/html_test.exs b/test/html_test.exs
index f0869534c..c918dbe20 100644
--- a/test/html_test.exs
+++ b/test/html_test.exs
@@ -228,5 +228,16 @@ defmodule Pleroma.HTMLTest do
assert url == "https://www.pixiv.net/member_illust.php?mode=medium&illust_id=72255140"
end
+
+ test "does not crash when there is an HTML entity in a link" do
+ user = insert(:user)
+
+ {:ok, activity} =
+ CommonAPI.post(user, %{"status" => "\"http://cofe.com/?boomer=ok&foo=bar\""})
+
+ object = Object.normalize(activity)
+
+ assert {:ok, nil} = HTML.extract_first_external_url(object, object.data["content"])
+ end
end
end