Merge branch 'hj-happiness-improvement' into 'develop'
[akkoma] / test / web / mastodon_api / status_view_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
6 use Pleroma.DataCase
7
8 alias Pleroma.Web.MastodonAPI.{StatusView, AccountView}
9 alias Pleroma.User
10 alias Pleroma.Web.OStatus
11 alias Pleroma.Web.CommonAPI
12 alias Pleroma.Web.ActivityPub.ActivityPub
13 alias Pleroma.Activity
14 import Pleroma.Factory
15 import Tesla.Mock
16
17 setup do
18 mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
19 :ok
20 end
21
22 test "returns a temporary ap_id based user for activities missing db users" do
23 user = insert(:user)
24
25 {:ok, activity} = CommonAPI.post(user, %{"status" => "Hey @shp!", "visibility" => "direct"})
26
27 Repo.delete(user)
28 Cachex.clear(:user_cache)
29
30 %{account: ms_user} = StatusView.render("status.json", activity: activity)
31
32 assert ms_user.acct == "erroruser@example.com"
33 end
34
35 test "tries to get a user by nickname if fetching by ap_id doesn't work" do
36 user = insert(:user)
37
38 {:ok, activity} = CommonAPI.post(user, %{"status" => "Hey @shp!", "visibility" => "direct"})
39
40 {:ok, user} =
41 user
42 |> Ecto.Changeset.change(%{ap_id: "#{user.ap_id}/extension/#{user.nickname}"})
43 |> Repo.update()
44
45 Cachex.clear(:user_cache)
46
47 result = StatusView.render("status.json", activity: activity)
48
49 assert result[:account][:id] == to_string(user.id)
50 end
51
52 test "a note with null content" do
53 note = insert(:note_activity)
54
55 data =
56 note.data
57 |> put_in(["object", "content"], nil)
58
59 note =
60 note
61 |> Map.put(:data, data)
62
63 User.get_cached_by_ap_id(note.data["actor"])
64
65 status = StatusView.render("status.json", %{activity: note})
66
67 assert status.content == ""
68 end
69
70 test "a note activity" do
71 note = insert(:note_activity)
72 user = User.get_cached_by_ap_id(note.data["actor"])
73
74 status = StatusView.render("status.json", %{activity: note})
75
76 created_at =
77 (note.data["object"]["published"] || "")
78 |> String.replace(~r/\.\d+Z/, ".000Z")
79
80 expected = %{
81 id: to_string(note.id),
82 uri: note.data["object"]["id"],
83 url: note.data["object"]["id"],
84 account: AccountView.render("account.json", %{user: user}),
85 in_reply_to_id: nil,
86 in_reply_to_account_id: nil,
87 card: nil,
88 reblog: nil,
89 content: HtmlSanitizeEx.basic_html(note.data["object"]["content"]),
90 created_at: created_at,
91 reblogs_count: 0,
92 replies_count: 0,
93 favourites_count: 0,
94 reblogged: false,
95 favourited: false,
96 muted: false,
97 pinned: false,
98 sensitive: false,
99 spoiler_text: note.data["object"]["summary"],
100 visibility: "public",
101 media_attachments: [],
102 mentions: [],
103 tags: [
104 %{
105 name: "#{note.data["object"]["tag"]}",
106 url: "/tag/#{note.data["object"]["tag"]}"
107 }
108 ],
109 application: %{
110 name: "Web",
111 website: nil
112 },
113 language: nil,
114 emojis: [
115 %{
116 shortcode: "2hu",
117 url: "corndog.png",
118 static_url: "corndog.png",
119 visible_in_picker: false
120 }
121 ]
122 }
123
124 assert status == expected
125 end
126
127 test "a reply" do
128 note = insert(:note_activity)
129 user = insert(:user)
130
131 {:ok, activity} =
132 CommonAPI.post(user, %{"status" => "he", "in_reply_to_status_id" => note.id})
133
134 status = StatusView.render("status.json", %{activity: activity})
135
136 assert status.in_reply_to_id == to_string(note.id)
137
138 [status] = StatusView.render("index.json", %{activities: [activity], as: :activity})
139
140 assert status.in_reply_to_id == to_string(note.id)
141 end
142
143 test "contains mentions" do
144 incoming = File.read!("test/fixtures/incoming_reply_mastodon.xml")
145 # a user with this ap id might be in the cache.
146 recipient = "https://pleroma.soykaf.com/users/lain"
147 user = insert(:user, %{ap_id: recipient})
148
149 {:ok, [activity]} = OStatus.handle_incoming(incoming)
150
151 status = StatusView.render("status.json", %{activity: activity})
152
153 actor = Repo.get_by(User, ap_id: activity.actor)
154
155 assert status.mentions ==
156 Enum.map([user, actor], fn u -> AccountView.render("mention.json", %{user: u}) end)
157 end
158
159 test "attachments" do
160 object = %{
161 "type" => "Image",
162 "url" => [
163 %{
164 "mediaType" => "image/png",
165 "href" => "someurl"
166 }
167 ],
168 "uuid" => 6
169 }
170
171 expected = %{
172 id: "1638338801",
173 type: "image",
174 url: "someurl",
175 remote_url: "someurl",
176 preview_url: "someurl",
177 text_url: "someurl",
178 description: nil
179 }
180
181 assert expected == StatusView.render("attachment.json", %{attachment: object})
182
183 # If theres a "id", use that instead of the generated one
184 object = Map.put(object, "id", 2)
185 assert %{id: "2"} = StatusView.render("attachment.json", %{attachment: object})
186 end
187
188 test "a reblog" do
189 user = insert(:user)
190 activity = insert(:note_activity)
191
192 {:ok, reblog, _} = CommonAPI.repeat(activity.id, user)
193
194 represented = StatusView.render("status.json", %{for: user, activity: reblog})
195
196 assert represented[:id] == to_string(reblog.id)
197 assert represented[:reblog][:id] == to_string(activity.id)
198 assert represented[:emojis] == []
199 end
200
201 test "a peertube video" do
202 user = insert(:user)
203
204 {:ok, object} =
205 ActivityPub.fetch_object_from_id(
206 "https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
207 )
208
209 %Activity{} = activity = Activity.get_create_by_object_ap_id(object.data["id"])
210
211 represented = StatusView.render("status.json", %{for: user, activity: activity})
212
213 assert represented[:id] == to_string(activity.id)
214 assert length(represented[:media_attachments]) == 1
215 end
216
217 describe "build_tags/1" do
218 test "it returns a a dictionary tags" do
219 object_tags = [
220 "fediverse",
221 "mastodon",
222 "nextcloud",
223 %{
224 "href" => "https://kawen.space/users/lain",
225 "name" => "@lain@kawen.space",
226 "type" => "Mention"
227 }
228 ]
229
230 assert StatusView.build_tags(object_tags) == [
231 %{name: "fediverse", url: "/tag/fediverse"},
232 %{name: "mastodon", url: "/tag/mastodon"},
233 %{name: "nextcloud", url: "/tag/nextcloud"}
234 ]
235 end
236 end
237 end