logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma

formatter_test.exs (11610B)


  1. # Pleroma: A lightweight social networking server
  2. # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
  3. # SPDX-License-Identifier: AGPL-3.0-only
  4. defmodule Pleroma.FormatterTest do
  5. alias Pleroma.Formatter
  6. alias Pleroma.User
  7. use Pleroma.DataCase
  8. import Pleroma.Factory
  9. setup_all do
  10. clear_config(Pleroma.Formatter)
  11. Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
  12. :ok
  13. end
  14. describe ".add_hashtag_links" do
  15. test "turns hashtags into links" do
  16. text = "I love #cofe and #2hu"
  17. expected_text =
  18. ~s(I love <a class="hashtag" data-tag="cofe" href="http://localhost:4001/tag/cofe" rel="tag ugc">#cofe</a> and <a class="hashtag" data-tag="2hu" href="http://localhost:4001/tag/2hu" rel="tag ugc">#2hu</a>)
  19. assert {^expected_text, [], _tags} = Formatter.linkify(text)
  20. end
  21. test "does not turn html characters to tags" do
  22. text = "#fact_3: pleroma does what mastodon't"
  23. expected_text =
  24. ~s(<a class="hashtag" data-tag="fact_3" href="http://localhost:4001/tag/fact_3" rel="tag ugc">#fact_3</a>: pleroma does what mastodon't)
  25. assert {^expected_text, [], _tags} = Formatter.linkify(text)
  26. end
  27. end
  28. describe ".add_links" do
  29. test "turning urls into links" do
  30. text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla ."
  31. expected =
  32. ~S(Hey, check out <a href="https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla" rel="ugc">https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla</a> .)
  33. assert {^expected, [], []} = Formatter.linkify(text)
  34. text = "https://mastodon.social/@lambadalambda"
  35. expected =
  36. ~S(<a href="https://mastodon.social/@lambadalambda" rel="ugc">https://mastodon.social/@lambadalambda</a>)
  37. assert {^expected, [], []} = Formatter.linkify(text)
  38. text = "https://mastodon.social:4000/@lambadalambda"
  39. expected =
  40. ~S(<a href="https://mastodon.social:4000/@lambadalambda" rel="ugc">https://mastodon.social:4000/@lambadalambda</a>)
  41. assert {^expected, [], []} = Formatter.linkify(text)
  42. text = "@lambadalambda"
  43. expected = "@lambadalambda"
  44. assert {^expected, [], []} = Formatter.linkify(text)
  45. text = "http://www.cs.vu.nl/~ast/intel/"
  46. expected =
  47. ~S(<a href="http://www.cs.vu.nl/~ast/intel/" rel="ugc">http://www.cs.vu.nl/~ast/intel/</a>)
  48. assert {^expected, [], []} = Formatter.linkify(text)
  49. text = "https://forum.zdoom.org/viewtopic.php?f=44&t=57087"
  50. expected =
  51. "<a href=\"https://forum.zdoom.org/viewtopic.php?f=44&t=57087\" rel=\"ugc\">https://forum.zdoom.org/viewtopic.php?f=44&t=57087</a>"
  52. assert {^expected, [], []} = Formatter.linkify(text)
  53. text = "https://en.wikipedia.org/wiki/Sophia_(Gnosticism)#Mythos_of_the_soul"
  54. expected =
  55. "<a href=\"https://en.wikipedia.org/wiki/Sophia_(Gnosticism)#Mythos_of_the_soul\" rel=\"ugc\">https://en.wikipedia.org/wiki/Sophia_(Gnosticism)#Mythos_of_the_soul</a>"
  56. assert {^expected, [], []} = Formatter.linkify(text)
  57. text = "https://www.google.co.jp/search?q=Nasim+Aghdam"
  58. expected =
  59. "<a href=\"https://www.google.co.jp/search?q=Nasim+Aghdam\" rel=\"ugc\">https://www.google.co.jp/search?q=Nasim+Aghdam</a>"
  60. assert {^expected, [], []} = Formatter.linkify(text)
  61. text = "https://en.wikipedia.org/wiki/Duff's_device"
  62. expected =
  63. "<a href=\"https://en.wikipedia.org/wiki/Duff's_device\" rel=\"ugc\">https://en.wikipedia.org/wiki/Duff's_device</a>"
  64. assert {^expected, [], []} = Formatter.linkify(text)
  65. text = "https://pleroma.com https://pleroma.com/sucks"
  66. expected =
  67. "<a href=\"https://pleroma.com\" rel=\"ugc\">https://pleroma.com</a> <a href=\"https://pleroma.com/sucks\" rel=\"ugc\">https://pleroma.com/sucks</a>"
  68. assert {^expected, [], []} = Formatter.linkify(text)
  69. text = "xmpp:contact@hacktivis.me"
  70. expected = "<a href=\"xmpp:contact@hacktivis.me\" rel=\"ugc\">xmpp:contact@hacktivis.me</a>"
  71. assert {^expected, [], []} = Formatter.linkify(text)
  72. text =
  73. "magnet:?xt=urn:btih:7ec9d298e91d6e4394d1379caf073c77ff3e3136&tr=udp%3A%2F%2Fopentor.org%3A2710&tr=udp%3A%2F%2Ftracker.blackunicorn.xyz%3A6969&tr=udp%3A%2F%2Ftracker.ccc.de%3A80&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=wss%3A%2F%2Ftracker.btorrent.xyz&tr=wss%3A%2F%2Ftracker.fastcast.nz&tr=wss%3A%2F%2Ftracker.openwebtorrent.com"
  74. expected = "<a href=\"#{text}\" rel=\"ugc\">#{text}</a>"
  75. assert {^expected, [], []} = Formatter.linkify(text)
  76. end
  77. end
  78. describe "Formatter.linkify" do
  79. test "correctly finds mentions that contain the domain name" do
  80. _user = insert(:user, %{nickname: "lain"})
  81. _remote_user = insert(:user, %{nickname: "lain@lain.com", local: false})
  82. text = "hey @lain@lain.com what's up"
  83. {_text, mentions, []} = Formatter.linkify(text)
  84. [{username, user}] = mentions
  85. assert username == "@lain@lain.com"
  86. assert user.nickname == "lain@lain.com"
  87. end
  88. test "gives a replacement for user links, using local nicknames in user links text" do
  89. text = "@gsimg According to @archa_eme_, that is @daggsy. Also hello @archaeme@archae.me"
  90. gsimg = insert(:user, %{nickname: "gsimg"})
  91. archaeme =
  92. insert(:user,
  93. nickname: "archa_eme_",
  94. uri: "https://archeme/@archa_eme_"
  95. )
  96. archaeme_remote = insert(:user, %{nickname: "archaeme@archae.me"})
  97. {text, mentions, []} = Formatter.linkify(text)
  98. assert length(mentions) == 3
  99. expected_text =
  100. ~s(<span class="h-card"><a class="u-url mention" data-user="#{gsimg.id}" href="#{
  101. gsimg.ap_id
  102. }" rel="ugc">@<span>gsimg</span></a></span> According to <span class="h-card"><a class="u-url mention" data-user="#{
  103. archaeme.id
  104. }" href="#{"https://archeme/@archa_eme_"}" rel="ugc">@<span>archa_eme_</span></a></span>, that is @daggsy. Also hello <span class="h-card"><a class="u-url mention" data-user="#{
  105. archaeme_remote.id
  106. }" href="#{archaeme_remote.ap_id}" rel="ugc">@<span>archaeme</span></a></span>)
  107. assert expected_text == text
  108. end
  109. test "gives a replacement for user links when the user is using Osada" do
  110. {:ok, mike} = User.get_or_fetch("mike@osada.macgirvin.com")
  111. text = "@mike@osada.macgirvin.com test"
  112. {text, mentions, []} = Formatter.linkify(text)
  113. assert length(mentions) == 1
  114. expected_text =
  115. ~s(<span class="h-card"><a class="u-url mention" data-user="#{mike.id}" href="#{
  116. mike.ap_id
  117. }" rel="ugc">@<span>mike</span></a></span> test)
  118. assert expected_text == text
  119. end
  120. test "gives a replacement for single-character local nicknames" do
  121. text = "@o hi"
  122. o = insert(:user, %{nickname: "o"})
  123. {text, mentions, []} = Formatter.linkify(text)
  124. assert length(mentions) == 1
  125. expected_text =
  126. ~s(<span class="h-card"><a class="u-url mention" data-user="#{o.id}" href="#{o.ap_id}" rel="ugc">@<span>o</span></a></span> hi)
  127. assert expected_text == text
  128. end
  129. test "does not give a replacement for single-character local nicknames who don't exist" do
  130. text = "@a hi"
  131. expected_text = "@a hi"
  132. assert {^expected_text, [] = _mentions, [] = _tags} = Formatter.linkify(text)
  133. end
  134. test "given the 'safe_mention' option, it will only mention people in the beginning" do
  135. user = insert(:user)
  136. other_user = insert(:user)
  137. third_user = insert(:user)
  138. text = " @#{user.nickname} @#{other_user.nickname} hey dudes i hate @#{third_user.nickname}"
  139. {expected_text, mentions, [] = _tags} = Formatter.linkify(text, safe_mention: true)
  140. assert mentions == [{"@#{user.nickname}", user}, {"@#{other_user.nickname}", other_user}]
  141. assert expected_text ==
  142. ~s(<span class="h-card"><a class="u-url mention" data-user="#{user.id}" href="#{
  143. user.ap_id
  144. }" rel="ugc">@<span>#{user.nickname}</span></a></span> <span class="h-card"><a class="u-url mention" data-user="#{
  145. other_user.id
  146. }" href="#{other_user.ap_id}" rel="ugc">@<span>#{other_user.nickname}</span></a></span> hey dudes i hate <span class="h-card"><a class="u-url mention" data-user="#{
  147. third_user.id
  148. }" href="#{third_user.ap_id}" rel="ugc">@<span>#{third_user.nickname}</span></a></span>)
  149. end
  150. test "given the 'safe_mention' option, it will still work without any mention" do
  151. text = "A post without any mention"
  152. {expected_text, mentions, [] = _tags} = Formatter.linkify(text, safe_mention: true)
  153. assert mentions == []
  154. assert expected_text == text
  155. end
  156. test "given the 'safe_mention' option, it will keep text after newlines" do
  157. user = insert(:user)
  158. text = " @#{user.nickname}\n hey dude\n\nhow are you doing?"
  159. {expected_text, _, _} = Formatter.linkify(text, safe_mention: true)
  160. assert expected_text =~ "how are you doing?"
  161. end
  162. test "it can parse mentions and return the relevant users" do
  163. text =
  164. "@@gsimg According to @archaeme, that is @daggsy. Also hello @archaeme@archae.me and @o and @@@jimm"
  165. o = insert(:user, %{nickname: "o"})
  166. jimm = insert(:user, %{nickname: "jimm"})
  167. gsimg = insert(:user, %{nickname: "gsimg"})
  168. archaeme = insert(:user, %{nickname: "archaeme"})
  169. archaeme_remote = insert(:user, %{nickname: "archaeme@archae.me"})
  170. expected_mentions = [
  171. {"@archaeme", archaeme},
  172. {"@archaeme@archae.me", archaeme_remote},
  173. {"@gsimg", gsimg},
  174. {"@jimm", jimm},
  175. {"@o", o}
  176. ]
  177. assert {_text, ^expected_mentions, []} = Formatter.linkify(text)
  178. end
  179. test "it parses URL containing local mention" do
  180. _user = insert(:user, %{nickname: "lain"})
  181. text = "https://example.com/@lain"
  182. expected = ~S(<a href="https://example.com/@lain" rel="ugc">https://example.com/@lain</a>)
  183. assert {^expected, [], []} = Formatter.linkify(text)
  184. end
  185. test "it correctly parses angry face D:< with mention" do
  186. lain =
  187. insert(:user, %{
  188. nickname: "lain@lain.com",
  189. ap_id: "https://lain.com/users/lain",
  190. id: "9qrWmR0cKniB0YU0TA"
  191. })
  192. text = "@lain@lain.com D:<"
  193. expected_text =
  194. ~S(<span class="h-card"><a class="u-url mention" data-user="9qrWmR0cKniB0YU0TA" href="https://lain.com/users/lain" rel="ugc">@<span>lain</span></a></span> D:<)
  195. expected_mentions = [
  196. {"@lain@lain.com", lain}
  197. ]
  198. assert {^expected_text, ^expected_mentions, []} = Formatter.linkify(text)
  199. end
  200. end
  201. describe ".parse_tags" do
  202. test "parses tags in the text" do
  203. text = "Here's a #Test. Maybe these are #working or not. What about #漢字? And #は。"
  204. expected_tags = [
  205. {"#Test", "test"},
  206. {"#working", "working"},
  207. {"#は", "は"},
  208. {"#漢字", "漢字"}
  209. ]
  210. assert {_text, [], ^expected_tags} = Formatter.linkify(text)
  211. end
  212. end
  213. test "it escapes HTML in plain text" do
  214. text = "hello & world google.com/?a=b&c=d \n http://test.com/?a=b&c=d 1"
  215. expected = "hello &amp; world google.com/?a=b&c=d \n http://test.com/?a=b&c=d 1"
  216. assert Formatter.html_escape(text, "text/plain") == expected
  217. end
  218. end