summaryrefslogtreecommitdiff
path: root/test/pleroma/web/metadata/utils_test.exs
blob: da7c3a1ad4e31e0c334b5b7315697448286608cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.Metadata.UtilsTest do
  use Pleroma.DataCase, async: true
  import Pleroma.Factory
  alias Pleroma.Web.Metadata.Utils

  describe "filter_html_and_truncate/1" do
    test "it returns text without encoded HTML entities" do
      user = insert(:user)

      note =
        insert(:note, %{
          data: %{
            "actor" => user.ap_id,
            "id" => "https://pleroma.gov/objects/whatever",
            "content" => "Pleroma's really cool!"
          }
        })

      assert Utils.filter_html_and_truncate(note) == "Pleroma's really cool!"
    end

    test "it replaces <br> with compatible HTML entity (meta tags, push notifications)" do
      user = insert(:user)

      note =
        insert(:note, %{
          data: %{
            "actor" => user.ap_id,
            "id" => "https://pleroma.gov/objects/whatever",
            "content" => "First line<br>Second line"
          }
        })

      assert Utils.filter_html_and_truncate(note) ==
               "First line&#10;&#13;Second line"
    end

    test "it strips emojis" do
      user = insert(:user)

      note =
        insert(:note, %{
          data: %{
            "actor" => user.ap_id,
            "id" => "https://pleroma.gov/objects/whatever",
            "content" => "Mozilla Firefox :firefox:"
          }
        })

      assert Utils.filter_html_and_truncate(note) ==
               "Mozilla Firefox"
    end

    test "it strips HTML tags and other entities" do
      user = insert(:user)

      note =
        insert(:note, %{
          data: %{
            "actor" => user.ap_id,
            "id" => "https://pleroma.gov/objects/whatever",
            "content" => "<title>my title</title> <p>and a paragraph&#33;</p>"
          }
        })

      assert Utils.filter_html_and_truncate(note) ==
               "my title and a paragraph!"
    end
  end
end