Add .onion domain tests
This commit is contained in:
parent
5573fe6d97
commit
9925f4514e
1 changed files with 21 additions and 1 deletions
|
@ -406,6 +406,15 @@ defmodule LinkifyTest do
|
||||||
|
|
||||||
assert Linkify.link(text, mention: true, mention_prefix: "/users/") == expected
|
assert Linkify.link(text, mention: true, mention_prefix: "/users/") == expected
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test ".onion domain" do
|
||||||
|
text = "Hey @admin@vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion"
|
||||||
|
|
||||||
|
expected =
|
||||||
|
"Hey <a href=\"/users/admin@vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion\">@admin@vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion</a>"
|
||||||
|
|
||||||
|
assert Linkify.link(text, mention: true, mention_prefix: "/users/") == expected
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "hashtag links" do
|
describe "hashtag links" do
|
||||||
|
@ -713,7 +722,8 @@ defmodule LinkifyTest do
|
||||||
|
|
||||||
text = "I looked at theonion.com; it was no longer funny."
|
text = "I looked at theonion.com; it was no longer funny."
|
||||||
|
|
||||||
expected = "I looked at <a href=\"http://theonion.com\">theonion.com</a>; it was no longer funny."
|
expected =
|
||||||
|
"I looked at <a href=\"http://theonion.com\">theonion.com</a>; it was no longer funny."
|
||||||
|
|
||||||
assert Linkify.link(text) == expected
|
assert Linkify.link(text) == expected
|
||||||
end
|
end
|
||||||
|
@ -732,5 +742,15 @@ defmodule LinkifyTest do
|
||||||
|
|
||||||
assert Linkify.link(text) == expected
|
assert Linkify.link(text) == expected
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test ".onion domain" do
|
||||||
|
text =
|
||||||
|
"The riseup.net hidden service is at vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion"
|
||||||
|
|
||||||
|
expected =
|
||||||
|
"The <a href=\"http://riseup.net\">riseup.net</a> hidden service is at <a href=\"http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion\">vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion</a>"
|
||||||
|
|
||||||
|
assert Linkify.link(text) == expected
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue