summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRoger Braun <rbraun@Bobble.local>2017-11-07 12:06:37 +0100
committerRoger Braun <rbraun@Bobble.local>2017-11-07 12:06:37 +0100
commit7da978f3f54a8981c082625a8ad2fea48c918675 (patch)
tree70b0e38e72a17d353ebc1f3607b5363c1cc094a5 /test
parent6dfa62800ad6cdcef9e73ecdabe45363c574a528 (diff)
downloadpleroma-7da978f3f54a8981c082625a8ad2fea48c918675.tar.gz
pleroma-7da978f3f54a8981c082625a8ad2fea48c918675.zip
Linkify fixes.
Diffstat (limited to 'test')
-rw-r--r--test/formatter_test.exs16
1 files changed, 15 insertions, 1 deletions
diff --git a/test/formatter_test.exs b/test/formatter_test.exs
index d96f433f9..f91973881 100644
--- a/test/formatter_test.exs
+++ b/test/formatter_test.exs
@@ -7,10 +7,24 @@ defmodule Pleroma.FormatterTest do
describe ".linkify" do
test "turning urls into links" do
text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla."
-
expected = "Hey, check out <a href='https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla'>https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla</a>."
assert Formatter.linkify(text) == expected
+
+ text = "https://mastodon.social/@lambadalambda"
+ expected = "<a href='https://mastodon.social/@lambadalambda'>https://mastodon.social/@lambadalambda</a>"
+
+ assert Formatter.linkify(text) == expected
+
+ text = "@lambadalambda"
+ expected = "@lambadalambda"
+
+ assert Formatter.linkify(text) == expected
+
+ text = "http://www.cs.vu.nl/~ast/intel/"
+ expected = "<a href='http://www.cs.vu.nl/~ast/intel/'>http://www.cs.vu.nl/~ast/intel/</a>"
+
+ assert Formatter.linkify(text) == expected
end
end