From a92a9dce94d2a2502750a4a258560283c21e2777 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Thu, 18 May 2017 16:24:41 +0200 Subject: Add invisible tags to TwAPI output. --- test/web/twitter_api/representers/activity_representer_test.exs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'test/web') diff --git a/test/web/twitter_api/representers/activity_representer_test.exs b/test/web/twitter_api/representers/activity_representer_test.exs index f4f3c9aba..e3d88e74f 100644 --- a/test/web/twitter_api/representers/activity_representer_test.exs +++ b/test/web/twitter_api/representers/activity_representer_test.exs @@ -67,7 +67,7 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do } } - content_html = "Some content mentioning @shp" + content_html = "Some #content mentioning @shp" content = HtmlSanitizeEx.strip_tags(content_html) date = DateTime.from_naive!(~N[2016-05-24 13:26:08.003], "Etc/UTC") |> DateTime.to_iso8601 @@ -94,7 +94,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do ], "like_count" => 5, "announcement_count" => 3, - "context" => "2hu" + "context" => "2hu", + "tag" => ["nsfw", "content"] }, "published" => date, "context" => "2hu" @@ -107,8 +108,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do "user" => UserRepresenter.to_map(user, %{for: follower}), "is_local" => true, "attentions" => [], - "statusnet_html" => content_html, - "text" => content, + "statusnet_html" => content_html <> "
\n#nsfw", + "text" => content <> "\n#nsfw", "is_post_verb" => true, "created_at" => "Tue May 24 13:26:08 +0000 2016", "in_reply_to_status_id" => 213123, -- cgit v1.2.3