diff options
| author | Maksim Pechnikov <parallel588@gmail.com> | 2020-07-23 16:36:27 +0300 |
|---|---|---|
| committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-07-23 16:36:27 +0300 |
| commit | 67ab9a792868ea4ef38ecd59abb6b193140eaf10 (patch) | |
| tree | d744f1baa74b3b7b6ef08bfd97af5fdd6671c949 /test/formatter_test.exs | |
| parent | 7991ddad582537f34b4964125195961e596b8687 (diff) | |
| parent | 76aa49a0c5be0d1d51e99fd30683b12c8edc653d (diff) | |
| download | pleroma-67ab9a792868ea4ef38ecd59abb6b193140eaf10.tar.gz pleroma-67ab9a792868ea4ef38ecd59abb6b193140eaf10.zip | |
Merge branch 'develop' into issue/1934-welcome-email
Diffstat (limited to 'test/formatter_test.exs')
| -rw-r--r-- | test/formatter_test.exs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/formatter_test.exs b/test/formatter_test.exs index bef5a2c28..f066bd50a 100644 --- a/test/formatter_test.exs +++ b/test/formatter_test.exs @@ -10,6 +10,7 @@ defmodule Pleroma.FormatterTest do import Pleroma.Factory setup_all do + clear_config(Pleroma.Formatter) Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end) :ok end @@ -255,6 +256,36 @@ defmodule Pleroma.FormatterTest do assert {_text, ^expected_mentions, []} = Formatter.linkify(text) end + + test "it parses URL containing local mention" do + _user = insert(:user, %{nickname: "lain"}) + + text = "https://example.com/@lain" + + expected = ~S(<a href="https://example.com/@lain" rel="ugc">https://example.com/@lain</a>) + + assert {^expected, [], []} = Formatter.linkify(text) + end + + test "it correctly parses angry face D:< with mention" do + lain = + insert(:user, %{ + nickname: "lain@lain.com", + ap_id: "https://lain.com/users/lain", + id: "9qrWmR0cKniB0YU0TA" + }) + + text = "@lain@lain.com D:<" + + expected_text = + ~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:<) + + expected_mentions = [ + {"@lain@lain.com", lain} + ] + + assert {^expected_text, ^expected_mentions, []} = Formatter.linkify(text) + end end describe ".parse_tags" do |
