Test double dot link
This commit is contained in:
parent
0e89a9ad15
commit
f2ed05191c
|
@ -527,6 +527,16 @@ test "zwnj is treated as word character" 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