diff options
author | rinpatch <rinpatch@sdf.org> | 2019-10-30 09:20:13 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-10-30 09:20:13 +0300 |
commit | ae59b38203b5358ddbf7f2cc5e2cbc816d171452 (patch) | |
tree | e185e7a624e5683079463660ed4fb8b18d3ca7a4 /test | |
parent | 77cfb08b8c4c07406af8b338ce010307f6af75cb (diff) | |
download | pleroma-ae59b38203b5358ddbf7f2cc5e2cbc816d171452.tar.gz pleroma-ae59b38203b5358ddbf7f2cc5e2cbc816d171452.zip |
Rip out the rest of htmlsanitizeex
Diffstat (limited to 'test')
-rw-r--r-- | test/web/mastodon_api/views/status_view_test.exs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/web/mastodon_api/views/status_view_test.exs b/test/web/mastodon_api/views/status_view_test.exs index c200ad8fe..7526f2f27 100644 --- a/test/web/mastodon_api/views/status_view_test.exs +++ b/test/web/mastodon_api/views/status_view_test.exs @@ -7,6 +7,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do alias Pleroma.Activity alias Pleroma.Bookmark + alias Pleroma.HTML alias Pleroma.Object alias Pleroma.Repo alias Pleroma.User @@ -107,7 +108,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do in_reply_to_account_id: nil, card: nil, reblog: nil, - content: HtmlSanitizeEx.basic_html(object_data["content"]), + content: HTML.filter_tags(object_data["content"]), created_at: created_at, reblogs_count: 0, replies_count: 0, @@ -119,7 +120,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do pinned: false, sensitive: false, poll: nil, - spoiler_text: HtmlSanitizeEx.basic_html(object_data["summary"]), + spoiler_text: HTML.filter_tags(object_data["summary"]), visibility: "public", media_attachments: [], mentions: [], @@ -146,8 +147,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do local: true, conversation_id: convo_id, in_reply_to_account_acct: nil, - content: %{"text/plain" => HtmlSanitizeEx.strip_tags(object_data["content"])}, - spoiler_text: %{"text/plain" => HtmlSanitizeEx.strip_tags(object_data["summary"])}, + content: %{"text/plain" => HTML.strip_tags(object_data["content"])}, + spoiler_text: %{"text/plain" => HTML.strip_tags(object_data["summary"])}, expires_at: nil, direct_conversation_id: nil, thread_muted: false |