Test double dot link
This commit is contained in:
parent
686fef59db
commit
09ed8f4f8a
@ -527,6 +527,16 @@ defmodule Pleroma.Web.CommonAPITest do
|
|||||||
assert Object.tags(object) == ["ساٴينس"]
|
assert Object.tags(object) == ["ساٴينس"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "double dot in link is allowed" do
|
||||||
|
user = insert(:user)
|
||||||
|
text = "https://example.to/something..mp3"
|
||||||
|
{:ok, activity} = CommonAPI.post(user, %{status: text})
|
||||||
|
|
||||||
|
object = Object.normalize(activity, fetch: false)
|
||||||
|
|
||||||
|
assert object.data["content"] == "<a href=\"#{text}\" rel=\"ugc\">#{text}</a>"
|
||||||
|
end
|
||||||
|
|
||||||
test "it adds emoji in the object" do
|
test "it adds emoji in the object" do
|
||||||
user = insert(:user)
|
user = insert(:user)
|
||||||
{:ok, activity} = CommonAPI.post(user, %{status: ":firefox:"})
|
{:ok, activity} = CommonAPI.post(user, %{status: ":firefox:"})
|
||||||
|
Loading…
Reference in New Issue
Block a user