1 defmodule Pleroma.FormatterTest do
2 alias Pleroma.Formatter
7 describe ".add_hashtag_links" do
8 test "turns hashtags into links" do
9 text = "I love #cofe and #2hu"
12 "I love <a href='http://localhost:4001/tag/cofe' rel='tag'>#cofe</a> and <a href='http://localhost:4001/tag/2hu' rel='tag'>#2hu</a>"
14 tags = Formatter.parse_tags(text)
16 assert expected_text ==
17 Formatter.add_hashtag_links({[], text}, tags) |> Formatter.finalize()
21 describe ".add_links" do
22 test "turning urls into links" do
23 text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla."
26 "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>."
28 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
30 text = "https://mastodon.social/@lambadalambda"
33 "<a href=\"https://mastodon.social/@lambadalambda\">https://mastodon.social/@lambadalambda</a>"
35 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
37 text = "https://mastodon.social:4000/@lambadalambda"
40 "<a href=\"https://mastodon.social:4000/@lambadalambda\">https://mastodon.social:4000/@lambadalambda</a>"
42 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
44 text = "@lambadalambda"
45 expected = "@lambadalambda"
47 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
49 text = "http://www.cs.vu.nl/~ast/intel/"
50 expected = "<a href=\"http://www.cs.vu.nl/~ast/intel/\">http://www.cs.vu.nl/~ast/intel/</a>"
52 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
54 text = "https://forum.zdoom.org/viewtopic.php?f=44&t=57087"
57 "<a href=\"https://forum.zdoom.org/viewtopic.php?f=44&t=57087\">https://forum.zdoom.org/viewtopic.php?f=44&t=57087</a>"
59 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
61 text = "https://en.wikipedia.org/wiki/Sophia_(Gnosticism)#Mythos_of_the_soul"
64 "<a href=\"https://en.wikipedia.org/wiki/Sophia_(Gnosticism)#Mythos_of_the_soul\">https://en.wikipedia.org/wiki/Sophia_(Gnosticism)#Mythos_of_the_soul</a>"
66 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
68 text = "https://www.google.co.jp/search?q=Nasim+Aghdam"
71 "<a href=\"https://www.google.co.jp/search?q=Nasim+Aghdam\">https://www.google.co.jp/search?q=Nasim+Aghdam</a>"
73 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
75 text = "https://en.wikipedia.org/wiki/Duff's_device"
78 "<a href=\"https://en.wikipedia.org/wiki/Duff's_device\">https://en.wikipedia.org/wiki/Duff's_device</a>"
80 assert Formatter.add_links({[], text}) |> Formatter.finalize() == expected
84 describe "add_user_links" do
85 test "gives a replacement for user links" do
86 text = "@gsimg According to @archaeme, that is @daggsy. Also hello @archaeme@archae.me"
87 gsimg = insert(:user, %{nickname: "gsimg"})
92 info: %{"source_data" => %{"url" => "https://archeme/@archaeme"}}
95 archaeme_remote = insert(:user, %{nickname: "archaeme@archae.me"})
97 mentions = Pleroma.Formatter.parse_mentions(text)
99 {subs, text} = Formatter.add_user_links({[], text}, mentions)
101 assert length(subs) == 3
102 Enum.each(subs, fn {uuid, _} -> assert String.contains?(text, uuid) end)
105 "<span><a href='#{gsimg.ap_id}'>@<span>gsimg</span></a></span> According to <span><a href='#{
106 "https://archeme/@archaeme"
107 }'>@<span>archaeme</span></a></span>, that is @daggsy. Also hello <span><a href='#{
108 archaeme_remote.ap_id
109 }'>@<span>archaeme</span></a></span>"
111 assert expected_text == Formatter.finalize({subs, text})
115 describe ".parse_tags" do
116 test "parses tags in the text" do
117 text = "Here's a #Test. Maybe these are #working or not. What about #漢字? And #は。"
121 {"#working", "working"},
126 assert Formatter.parse_tags(text) == expected
130 test "it can parse mentions and return the relevant users" do
131 text = "@gsimg According to @archaeme, that is @daggsy. Also hello @archaeme@archae.me"
133 gsimg = insert(:user, %{nickname: "gsimg"})
134 archaeme = insert(:user, %{nickname: "archaeme"})
135 archaeme_remote = insert(:user, %{nickname: "archaeme@archae.me"})
139 {"@archaeme", archaeme},
140 {"@archaeme@archae.me", archaeme_remote}
143 assert Formatter.parse_mentions(text) == expected_result
146 test "it adds cool emoji" do
147 text = "I love :moominmamma:"
150 "I love <img height='32px' width='32px' alt='moominmamma' title='moominmamma' src='/finmoji/128px/moominmamma-128.png' />"
152 assert Formatter.emojify(text) == expected_result
155 test "it returns the emoji used in the text" do
156 text = "I love :moominmamma:"
158 assert Formatter.get_emoji(text) == [{"moominmamma", "/finmoji/128px/moominmamma-128.png"}]