1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
9 alias Pleroma.Web.CommonAPI
10 alias Pleroma.Web.MastodonAPI.AccountView
12 test "Represent a user account" do
17 "icon" => %{"url" => "/file.png"},
18 "name" => ":karjalanpiirakka:"
24 "url" => [%{"href" => "https://example.com/images/asuka_hospital.png"}]
31 source_data: source_data,
32 background: background_image,
33 nickname: "shp@shitposter.club",
34 name: ":karjalanpiirakka: shp",
35 bio: "<script src=\"invalid-html\"></script><span>valid html</span>",
36 inserted_at: ~N[2017-08-15 15:47:06.597036]
40 id: to_string(user.id),
43 display_name: user.name,
45 created_at: "2017-08-15T15:47:06.000Z",
49 note: "<span>valid html</span>",
51 avatar: "http://localhost:4001/images/avi.png",
52 avatar_static: "http://localhost:4001/images/avi.png",
53 header: "http://localhost:4001/images/banner.png",
54 header_static: "http://localhost:4001/images/banner.png",
57 "static_url" => "/file.png",
59 "shortcode" => "karjalanpiirakka",
60 "visible_in_picker" => false
74 background_image: "https://example.com/images/asuka_hospital.png",
75 confirmation_pending: false,
80 hide_followers: false,
82 hide_followers_count: false,
83 hide_follows_count: false,
85 skip_thread_containment: false
89 assert expected == AccountView.render("show.json", %{user: user})
92 test "Represent the user account for the account owner" do
95 notification_settings = %{
98 "non_follows" => true,
99 "non_followers" => true
102 privacy = user.default_scope
105 pleroma: %{notification_settings: ^notification_settings},
106 source: %{privacy: ^privacy}
107 } = AccountView.render("show.json", %{user: user, for: user})
110 test "Represent a Service(bot) account" do
115 source_data: %{"type" => "Service"},
116 nickname: "shp@shitposter.club",
117 inserted_at: ~N[2017-08-15 15:47:06.597036]
121 id: to_string(user.id),
124 display_name: user.name,
126 created_at: "2017-08-15T15:47:06.000Z",
132 avatar: "http://localhost:4001/images/avi.png",
133 avatar_static: "http://localhost:4001/images/avi.png",
134 header: "http://localhost:4001/images/banner.png",
135 header_static: "http://localhost:4001/images/banner.png",
148 background_image: nil,
149 confirmation_pending: false,
153 hide_favorites: true,
154 hide_followers: false,
156 hide_followers_count: false,
157 hide_follows_count: false,
159 skip_thread_containment: false
163 assert expected == AccountView.render("show.json", %{user: user})
166 test "Represent a deactivated user for an admin" do
167 admin = insert(:user, is_admin: true)
168 deactivated_user = insert(:user, deactivated: true)
169 represented = AccountView.render("show.json", %{user: deactivated_user, for: admin})
170 assert represented[:pleroma][:deactivated] == true
173 test "Represent a smaller mention" do
177 id: to_string(user.id),
179 username: user.nickname,
183 assert expected == AccountView.render("mention.json", %{user: user})
186 describe "relationship" do
187 test "represent a relationship for the following and followed user" do
189 other_user = insert(:user)
191 {:ok, user} = User.follow(user, other_user)
192 {:ok, other_user} = User.follow(other_user, user)
193 {:ok, other_user} = User.subscribe(user, other_user)
194 {:ok, _user_mute} = User.mute(user, other_user, true)
195 {:ok, user} = CommonAPI.hide_reblogs(user, other_user)
197 # Refreshing to reflect embedded ap id relation fields (remove once removed)
198 user = refresh_record(user)
201 id: to_string(other_user.id),
207 muting_notifications: true,
210 domain_blocking: false,
211 showing_reblogs: false,
216 AccountView.render("relationship.json", %{user: user, target: other_user})
219 test "represent a relationship for the blocking and blocked user" do
221 other_user = insert(:user)
223 {:ok, user} = User.follow(user, other_user)
224 {:ok, other_user} = User.subscribe(user, other_user)
225 {:ok, _user_block} = User.block(user, other_user)
226 {:ok, _user_block} = User.block(other_user, user)
229 id: to_string(other_user.id),
235 muting_notifications: false,
238 domain_blocking: false,
239 showing_reblogs: true,
244 AccountView.render("relationship.json", %{user: user, target: other_user})
247 test "represent a relationship for the user blocking a domain" do
249 other_user = insert(:user, ap_id: "https://bad.site/users/other_user")
251 {:ok, user} = User.block_domain(user, "bad.site")
253 assert %{domain_blocking: true, blocking: false} =
254 AccountView.render("relationship.json", %{user: user, target: other_user})
257 test "represent a relationship for the user with a pending follow request" do
259 other_user = insert(:user, locked: true)
261 {:ok, user, other_user, _} = CommonAPI.follow(user, other_user)
262 user = User.get_cached_by_id(user.id)
263 other_user = User.get_cached_by_id(other_user.id)
266 id: to_string(other_user.id),
272 muting_notifications: false,
275 domain_blocking: false,
276 showing_reblogs: true,
281 AccountView.render("relationship.json", %{user: user, target: other_user})
285 test "represent an embedded relationship" do
290 source_data: %{"type" => "Service"},
291 nickname: "shp@shitposter.club",
292 inserted_at: ~N[2017-08-15 15:47:06.597036]
295 other_user = insert(:user)
296 {:ok, other_user} = User.follow(other_user, user)
297 {:ok, _user_block} = User.block(other_user, user)
298 {:ok, _} = User.follow(insert(:user), user)
301 id: to_string(user.id),
304 display_name: user.name,
306 created_at: "2017-08-15T15:47:06.000Z",
312 avatar: "http://localhost:4001/images/avi.png",
313 avatar_static: "http://localhost:4001/images/avi.png",
314 header: "http://localhost:4001/images/banner.png",
315 header_static: "http://localhost:4001/images/banner.png",
328 background_image: nil,
329 confirmation_pending: false,
333 hide_favorites: true,
334 hide_followers: false,
336 hide_followers_count: false,
337 hide_follows_count: false,
339 id: to_string(user.id),
346 muting_notifications: false,
348 domain_blocking: false,
349 showing_reblogs: true,
352 skip_thread_containment: false
356 assert expected == AccountView.render("show.json", %{user: user, for: other_user})
359 test "returns the settings store if the requesting user is the represented user and it's requested specifically" do
360 user = insert(:user, pleroma_settings_store: %{fe: "test"})
363 AccountView.render("show.json", %{user: user, for: user, with_pleroma_settings: true})
365 assert result.pleroma.settings_store == %{:fe => "test"}
367 result = AccountView.render("show.json", %{user: user, with_pleroma_settings: true})
368 assert result.pleroma[:settings_store] == nil
370 result = AccountView.render("show.json", %{user: user, for: user})
371 assert result.pleroma[:settings_store] == nil
374 test "sanitizes display names" do
375 user = insert(:user, name: "<marquee> username </marquee>")
376 result = AccountView.render("show.json", %{user: user})
377 refute result.display_name == "<marquee> username </marquee>"
380 describe "hiding follows/following" do
381 test "shows when follows/followers stats are hidden and sets follow/follower count to 0" do
384 hide_followers: true,
385 hide_followers_count: true,
387 hide_follows_count: true
390 other_user = insert(:user)
391 {:ok, user, other_user, _activity} = CommonAPI.follow(user, other_user)
392 {:ok, _other_user, user, _activity} = CommonAPI.follow(other_user, user)
397 pleroma: %{hide_follows_count: true, hide_followers_count: true}
398 } = AccountView.render("show.json", %{user: user})
401 test "shows when follows/followers are hidden" do
402 user = insert(:user, hide_followers: true, hide_follows: true)
403 other_user = insert(:user)
404 {:ok, user, other_user, _activity} = CommonAPI.follow(user, other_user)
405 {:ok, _other_user, user, _activity} = CommonAPI.follow(other_user, user)
410 pleroma: %{hide_follows: true, hide_followers: true}
411 } = AccountView.render("show.json", %{user: user})
414 test "shows actual follower/following count to the account owner" do
415 user = insert(:user, hide_followers: true, hide_follows: true)
416 other_user = insert(:user)
417 {:ok, user, other_user, _activity} = CommonAPI.follow(user, other_user)
418 {:ok, _other_user, user, _activity} = CommonAPI.follow(other_user, user)
423 } = AccountView.render("show.json", %{user: user, for: user})
426 test "shows unread_conversation_count only to the account owner" do
428 other_user = insert(:user)
431 CommonAPI.post(other_user, %{
432 "status" => "Hey @#{user.nickname}.",
433 "visibility" => "direct"
436 user = User.get_cached_by_ap_id(user.ap_id)
438 assert AccountView.render("show.json", %{user: user, for: other_user})[:pleroma][
439 :unread_conversation_count
442 assert AccountView.render("show.json", %{user: user, for: user})[:pleroma][
443 :unread_conversation_count
448 describe "follow requests counter" do
449 test "shows zero when no follow requests are pending" do
452 assert %{follow_requests_count: 0} =
453 AccountView.render("show.json", %{user: user, for: user})
455 other_user = insert(:user)
456 {:ok, _other_user, user, _activity} = CommonAPI.follow(other_user, user)
458 assert %{follow_requests_count: 0} =
459 AccountView.render("show.json", %{user: user, for: user})
462 test "shows non-zero when follow requests are pending" do
463 user = insert(:user, locked: true)
465 assert %{locked: true} = AccountView.render("show.json", %{user: user, for: user})
467 other_user = insert(:user)
468 {:ok, _other_user, user, _activity} = CommonAPI.follow(other_user, user)
470 assert %{locked: true, follow_requests_count: 1} =
471 AccountView.render("show.json", %{user: user, for: user})
474 test "decreases when accepting a follow request" do
475 user = insert(:user, locked: true)
477 assert %{locked: true} = AccountView.render("show.json", %{user: user, for: user})
479 other_user = insert(:user)
480 {:ok, other_user, user, _activity} = CommonAPI.follow(other_user, user)
482 assert %{locked: true, follow_requests_count: 1} =
483 AccountView.render("show.json", %{user: user, for: user})
485 {:ok, _other_user} = CommonAPI.accept_follow_request(other_user, user)
487 assert %{locked: true, follow_requests_count: 0} =
488 AccountView.render("show.json", %{user: user, for: user})
491 test "decreases when rejecting a follow request" do
492 user = insert(:user, locked: true)
494 assert %{locked: true} = AccountView.render("show.json", %{user: user, for: user})
496 other_user = insert(:user)
497 {:ok, other_user, user, _activity} = CommonAPI.follow(other_user, user)
499 assert %{locked: true, follow_requests_count: 1} =
500 AccountView.render("show.json", %{user: user, for: user})
502 {:ok, _other_user} = CommonAPI.reject_follow_request(other_user, user)
504 assert %{locked: true, follow_requests_count: 0} =
505 AccountView.render("show.json", %{user: user, for: user})
508 test "shows non-zero when historical unapproved requests are present" do
509 user = insert(:user, locked: true)
511 assert %{locked: true} = AccountView.render("show.json", %{user: user, for: user})
513 other_user = insert(:user)
514 {:ok, _other_user, user, _activity} = CommonAPI.follow(other_user, user)
516 {:ok, user} = User.update_and_set_cache(user, %{locked: false})
518 assert %{locked: false, follow_requests_count: 1} =
519 AccountView.render("show.json", %{user: user, for: user})