1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.CommonAPITest do
8 alias Pleroma.Conversation.Participation
11 alias Pleroma.Web.ActivityPub.ActivityPub
12 alias Pleroma.Web.ActivityPub.Visibility
13 alias Pleroma.Web.AdminAPI.AccountView
14 alias Pleroma.Web.CommonAPI
16 import Pleroma.Factory
18 require Pleroma.Constants
20 clear_config([:instance, :safe_dm_mentions])
21 clear_config([:instance, :limit])
22 clear_config([:instance, :max_pinned_statuses])
24 test "when replying to a conversation / participation, it will set the correct context id even if no explicit reply_to is given" do
26 {:ok, activity} = CommonAPI.post(user, %{"status" => ".", "visibility" => "direct"})
28 [participation] = Participation.for_user(user)
31 CommonAPI.post(user, %{"status" => ".", "in_reply_to_conversation_id" => participation.id})
33 assert Visibility.is_direct?(convo_reply)
35 assert activity.data["context"] == convo_reply.data["context"]
38 test "when replying to a conversation / participation, it only mentions the recipients explicitly declared in the participation" do
40 jafnhar = insert(:user)
44 CommonAPI.post(har, %{
45 "status" => "@#{jafnhar.nickname} hey",
46 "visibility" => "direct"
49 assert har.ap_id in activity.recipients
50 assert jafnhar.ap_id in activity.recipients
52 [participation] = Participation.for_user(har)
55 CommonAPI.post(har, %{
56 "status" => "I don't really like @#{tridi.nickname}",
57 "visibility" => "direct",
58 "in_reply_to_status_id" => activity.id,
59 "in_reply_to_conversation_id" => participation.id
62 assert har.ap_id in activity.recipients
63 assert jafnhar.ap_id in activity.recipients
64 refute tridi.ap_id in activity.recipients
67 test "with the safe_dm_mention option set, it does not mention people beyond the initial tags" do
69 jafnhar = insert(:user)
72 Pleroma.Config.put([:instance, :safe_dm_mentions], true)
75 CommonAPI.post(har, %{
76 "status" => "@#{jafnhar.nickname} hey, i never want to see @#{tridi.nickname} again",
77 "visibility" => "direct"
80 refute tridi.ap_id in activity.recipients
81 assert jafnhar.ap_id in activity.recipients
84 test "it de-duplicates tags" do
86 {:ok, activity} = CommonAPI.post(user, %{"status" => "#2hu #2HU"})
88 object = Object.normalize(activity)
90 assert object.data["tag"] == ["2hu"]
93 test "it adds emoji in the object" do
95 {:ok, activity} = CommonAPI.post(user, %{"status" => ":firefox:"})
97 assert Object.normalize(activity).data["emoji"]["firefox"]
100 test "it adds emoji when updating profiles" do
101 user = insert(:user, %{name: ":firefox:"})
103 {:ok, activity} = CommonAPI.update(user)
104 user = User.get_cached_by_ap_id(user.ap_id)
105 [firefox] = user.source_data["tag"]
107 assert firefox["name"] == ":firefox:"
109 assert Pleroma.Constants.as_public() in activity.recipients
112 describe "posting" do
113 test "it supports explicit addressing" do
115 user_two = insert(:user)
116 user_three = insert(:user)
117 user_four = insert(:user)
120 CommonAPI.post(user, %{
122 "Hey, I think @#{user_three.nickname} is ugly. @#{user_four.nickname} is alright though.",
123 "to" => [user_two.nickname, user_four.nickname, "nonexistent"]
126 assert user.ap_id in activity.recipients
127 assert user_two.ap_id in activity.recipients
128 assert user_four.ap_id in activity.recipients
129 refute user_three.ap_id in activity.recipients
132 test "it filters out obviously bad tags when accepting a post as HTML" do
135 post = "<p><b>2hu</b></p><script>alert('xss')</script>"
138 CommonAPI.post(user, %{
140 "content_type" => "text/html"
143 object = Object.normalize(activity)
145 assert object.data["content"] == "<p><b>2hu</b></p>alert('xss')"
148 test "it filters out obviously bad tags when accepting a post as Markdown" do
151 post = "<p><b>2hu</b></p><script>alert('xss')</script>"
154 CommonAPI.post(user, %{
156 "content_type" => "text/markdown"
159 object = Object.normalize(activity)
161 assert object.data["content"] == "<p><b>2hu</b></p>alert('xss')"
164 test "it does not allow replies to direct messages that are not direct messages themselves" do
167 {:ok, activity} = CommonAPI.post(user, %{"status" => "suya..", "visibility" => "direct"})
170 CommonAPI.post(user, %{
171 "status" => "suya..",
172 "visibility" => "direct",
173 "in_reply_to_status_id" => activity.id
176 Enum.each(["public", "private", "unlisted"], fn visibility ->
177 assert {:error, "The message visibility must be direct"} =
178 CommonAPI.post(user, %{
179 "status" => "suya..",
180 "visibility" => visibility,
181 "in_reply_to_status_id" => activity.id
186 test "it allows to address a list" do
188 {:ok, list} = Pleroma.List.create("foo", user)
191 CommonAPI.post(user, %{"status" => "foobar", "visibility" => "list:#{list.id}"})
193 assert activity.data["bcc"] == [list.ap_id]
194 assert activity.recipients == [list.ap_id, user.ap_id]
195 assert activity.data["listMessage"] == list.ap_id
198 test "it returns error when status is empty and no attachments" do
201 assert {:error, "Cannot post an empty status without attachments"} =
202 CommonAPI.post(user, %{"status" => ""})
205 test "it returns error when character limit is exceeded" do
206 Pleroma.Config.put([:instance, :limit], 5)
210 assert {:error, "The status is over the character limit"} =
211 CommonAPI.post(user, %{"status" => "foobar"})
214 test "it can handle activities that expire" do
218 NaiveDateTime.utc_now()
219 |> NaiveDateTime.truncate(:second)
220 |> NaiveDateTime.add(1_000_000, :second)
222 assert {:ok, activity} =
223 CommonAPI.post(user, %{"status" => "chai", "expires_in" => 1_000_000})
225 assert expiration = Pleroma.ActivityExpiration.get_by_activity_id(activity.id)
226 assert expiration.scheduled_at == expires_at
230 describe "reactions" do
231 test "reacting to a status with an emoji" do
233 other_user = insert(:user)
235 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
237 {:ok, reaction, _} = CommonAPI.react_with_emoji(activity.id, user, "👍")
239 assert reaction.data["actor"] == user.ap_id
240 assert reaction.data["content"] == "👍"
242 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
244 {:error, _} = CommonAPI.react_with_emoji(activity.id, user, ".")
247 test "unreacting to a status with an emoji" do
249 other_user = insert(:user)
251 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
252 {:ok, reaction, _} = CommonAPI.react_with_emoji(activity.id, user, "👍")
254 {:ok, unreaction, _} = CommonAPI.unreact_with_emoji(activity.id, user, "👍")
256 assert unreaction.data["type"] == "Undo"
257 assert unreaction.data["object"] == reaction.data["id"]
260 test "repeating a status" do
262 other_user = insert(:user)
264 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
266 {:ok, %Activity{}, _} = CommonAPI.repeat(activity.id, user)
269 test "repeating a status privately" do
271 other_user = insert(:user)
273 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
275 {:ok, %Activity{} = announce_activity, _} =
276 CommonAPI.repeat(activity.id, user, %{"visibility" => "private"})
278 assert Visibility.is_private?(announce_activity)
281 test "favoriting a status" do
283 other_user = insert(:user)
285 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
287 {:ok, %Activity{}, _} = CommonAPI.favorite(activity.id, user)
290 test "retweeting a status twice returns the status" do
292 other_user = insert(:user)
294 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
295 {:ok, %Activity{} = activity, object} = CommonAPI.repeat(activity.id, user)
296 {:ok, ^activity, ^object} = CommonAPI.repeat(activity.id, user)
299 test "favoriting a status twice returns the status" do
301 other_user = insert(:user)
303 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
304 {:ok, %Activity{} = activity, object} = CommonAPI.favorite(activity.id, user)
305 {:ok, ^activity, ^object} = CommonAPI.favorite(activity.id, user)
309 describe "pinned statuses" do
311 Pleroma.Config.put([:instance, :max_pinned_statuses], 1)
314 {:ok, activity} = CommonAPI.post(user, %{"status" => "HI!!!"})
316 [user: user, activity: activity]
319 test "pin status", %{user: user, activity: activity} do
320 assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
323 user = refresh_record(user)
325 assert %User{pinned_activities: [^id]} = user
328 test "pin poll", %{user: user} do
330 CommonAPI.post(user, %{
331 "status" => "How is fediverse today?",
332 "poll" => %{"options" => ["Absolutely outstanding", "Not good"], "expires_in" => 20}
335 assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
338 user = refresh_record(user)
340 assert %User{pinned_activities: [^id]} = user
343 test "unlisted statuses can be pinned", %{user: user} do
344 {:ok, activity} = CommonAPI.post(user, %{"status" => "HI!!!", "visibility" => "unlisted"})
345 assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
348 test "only self-authored can be pinned", %{activity: activity} do
351 assert {:error, "Could not pin"} = CommonAPI.pin(activity.id, user)
354 test "max pinned statuses", %{user: user, activity: activity_one} do
355 {:ok, activity_two} = CommonAPI.post(user, %{"status" => "HI!!!"})
357 assert {:ok, ^activity_one} = CommonAPI.pin(activity_one.id, user)
359 user = refresh_record(user)
361 assert {:error, "You have already pinned the maximum number of statuses"} =
362 CommonAPI.pin(activity_two.id, user)
365 test "unpin status", %{user: user, activity: activity} do
366 {:ok, activity} = CommonAPI.pin(activity.id, user)
368 user = refresh_record(user)
370 assert {:ok, ^activity} = CommonAPI.unpin(activity.id, user)
372 user = refresh_record(user)
374 assert %User{pinned_activities: []} = user
377 test "should unpin when deleting a status", %{user: user, activity: activity} do
378 {:ok, activity} = CommonAPI.pin(activity.id, user)
380 user = refresh_record(user)
382 assert {:ok, _} = CommonAPI.delete(activity.id, user)
384 user = refresh_record(user)
386 assert %User{pinned_activities: []} = user
390 describe "mute tests" do
394 activity = insert(:note_activity)
396 [user: user, activity: activity]
399 test "add mute", %{user: user, activity: activity} do
400 {:ok, _} = CommonAPI.add_mute(user, activity)
401 assert CommonAPI.thread_muted?(user, activity)
404 test "remove mute", %{user: user, activity: activity} do
405 CommonAPI.add_mute(user, activity)
406 {:ok, _} = CommonAPI.remove_mute(user, activity)
407 refute CommonAPI.thread_muted?(user, activity)
410 test "check that mutes can't be duplicate", %{user: user, activity: activity} do
411 CommonAPI.add_mute(user, activity)
412 {:error, _} = CommonAPI.add_mute(user, activity)
416 describe "reports" do
417 test "creates a report" do
418 reporter = insert(:user)
419 target_user = insert(:user)
421 {:ok, activity} = CommonAPI.post(target_user, %{"status" => "foobar"})
423 reporter_ap_id = reporter.ap_id
424 target_ap_id = target_user.ap_id
425 activity_ap_id = activity.data["id"]
429 "account_id" => target_user.id,
430 "comment" => comment,
431 "status_ids" => [activity.id]
436 "id" => activity_ap_id,
437 "content" => "foobar",
438 "published" => activity.object.data["published"],
439 "actor" => AccountView.render("show.json", %{user: target_user})
442 assert {:ok, flag_activity} = CommonAPI.report(reporter, report_data)
445 actor: ^reporter_ap_id,
448 "content" => ^comment,
449 "object" => [^target_ap_id, ^note_obj],
455 test "updates report state" do
456 [reporter, target_user] = insert_pair(:user)
457 activity = insert(:note_activity, user: target_user)
459 {:ok, %Activity{id: report_id}} =
460 CommonAPI.report(reporter, %{
461 "account_id" => target_user.id,
462 "comment" => "I feel offended",
463 "status_ids" => [activity.id]
466 {:ok, report} = CommonAPI.update_report_state(report_id, "resolved")
468 assert report.data["state"] == "resolved"
470 [reported_user, activity_id] = report.data["object"]
472 assert reported_user == target_user.ap_id
473 assert activity_id == activity.data["id"]
476 test "does not update report state when state is unsupported" do
477 [reporter, target_user] = insert_pair(:user)
478 activity = insert(:note_activity, user: target_user)
480 {:ok, %Activity{id: report_id}} =
481 CommonAPI.report(reporter, %{
482 "account_id" => target_user.id,
483 "comment" => "I feel offended",
484 "status_ids" => [activity.id]
487 assert CommonAPI.update_report_state(report_id, "test") == {:error, "Unsupported state"}
490 test "updates state of multiple reports" do
491 [reporter, target_user] = insert_pair(:user)
492 activity = insert(:note_activity, user: target_user)
494 {:ok, %Activity{id: first_report_id}} =
495 CommonAPI.report(reporter, %{
496 "account_id" => target_user.id,
497 "comment" => "I feel offended",
498 "status_ids" => [activity.id]
501 {:ok, %Activity{id: second_report_id}} =
502 CommonAPI.report(reporter, %{
503 "account_id" => target_user.id,
504 "comment" => "I feel very offended!",
505 "status_ids" => [activity.id]
509 CommonAPI.update_report_state([first_report_id, second_report_id], "resolved")
511 first_report = Activity.get_by_id(first_report_id)
512 second_report = Activity.get_by_id(second_report_id)
514 assert report_ids -- [first_report_id, second_report_id] == []
515 assert first_report.data["state"] == "resolved"
516 assert second_report.data["state"] == "resolved"
520 describe "reblog muting" do
522 muter = insert(:user)
524 muted = insert(:user)
526 [muter: muter, muted: muted]
529 test "add a reblog mute", %{muter: muter, muted: muted} do
530 {:ok, _reblog_mute} = CommonAPI.hide_reblogs(muter, muted)
532 assert User.showing_reblogs?(muter, muted) == false
535 test "remove a reblog mute", %{muter: muter, muted: muted} do
536 {:ok, _reblog_mute} = CommonAPI.hide_reblogs(muter, muted)
537 {:ok, _reblog_mute} = CommonAPI.show_reblogs(muter, muted)
539 assert User.showing_reblogs?(muter, muted) == true
543 describe "unfollow/2" do
544 test "also unsubscribes a user" do
545 [follower, followed] = insert_pair(:user)
546 {:ok, follower, followed, _} = CommonAPI.follow(follower, followed)
547 {:ok, _subscription} = User.subscribe(follower, followed)
549 assert User.subscribed_to?(follower, followed)
551 {:ok, follower} = CommonAPI.unfollow(follower, followed)
553 refute User.subscribed_to?(follower, followed)
556 test "cancels a pending follow for a local user" do
557 follower = insert(:user)
558 followed = insert(:user, locked: true)
560 assert {:ok, follower, followed, %{id: activity_id, data: %{"state" => "pending"}}} =
561 CommonAPI.follow(follower, followed)
563 assert User.get_follow_state(follower, followed) == "pending"
564 assert {:ok, follower} = CommonAPI.unfollow(follower, followed)
565 assert User.get_follow_state(follower, followed) == nil
567 assert %{id: ^activity_id, data: %{"state" => "cancelled"}} =
568 Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(follower, followed)
573 "object" => %{"type" => "Follow", "state" => "cancelled"}
575 } = Pleroma.Web.ActivityPub.Utils.fetch_latest_undo(follower)
578 test "cancels a pending follow for a remote user" do
579 follower = insert(:user)
580 followed = insert(:user, locked: true, local: false, ap_enabled: true)
582 assert {:ok, follower, followed, %{id: activity_id, data: %{"state" => "pending"}}} =
583 CommonAPI.follow(follower, followed)
585 assert User.get_follow_state(follower, followed) == "pending"
586 assert {:ok, follower} = CommonAPI.unfollow(follower, followed)
587 assert User.get_follow_state(follower, followed) == nil
589 assert %{id: ^activity_id, data: %{"state" => "cancelled"}} =
590 Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(follower, followed)
595 "object" => %{"type" => "Follow", "state" => "cancelled"}
597 } = Pleroma.Web.ActivityPub.Utils.fetch_latest_undo(follower)
601 describe "accept_follow_request/2" do
602 test "after acceptance, it sets all existing pending follow request states to 'accept'" do
603 user = insert(:user, locked: true)
604 follower = insert(:user)
605 follower_two = insert(:user)
607 {:ok, follow_activity} = ActivityPub.follow(follower, user)
608 {:ok, follow_activity_two} = ActivityPub.follow(follower, user)
609 {:ok, follow_activity_three} = ActivityPub.follow(follower_two, user)
611 assert follow_activity.data["state"] == "pending"
612 assert follow_activity_two.data["state"] == "pending"
613 assert follow_activity_three.data["state"] == "pending"
615 {:ok, _follower} = CommonAPI.accept_follow_request(follower, user)
617 assert Repo.get(Activity, follow_activity.id).data["state"] == "accept"
618 assert Repo.get(Activity, follow_activity_two.id).data["state"] == "accept"
619 assert Repo.get(Activity, follow_activity_three.id).data["state"] == "pending"
622 test "after rejection, it sets all existing pending follow request states to 'reject'" do
623 user = insert(:user, locked: true)
624 follower = insert(:user)
625 follower_two = insert(:user)
627 {:ok, follow_activity} = ActivityPub.follow(follower, user)
628 {:ok, follow_activity_two} = ActivityPub.follow(follower, user)
629 {:ok, follow_activity_three} = ActivityPub.follow(follower_two, user)
631 assert follow_activity.data["state"] == "pending"
632 assert follow_activity_two.data["state"] == "pending"
633 assert follow_activity_three.data["state"] == "pending"
635 {:ok, _follower} = CommonAPI.reject_follow_request(follower, user)
637 assert Repo.get(Activity, follow_activity.id).data["state"] == "reject"
638 assert Repo.get(Activity, follow_activity_two.id).data["state"] == "reject"
639 assert Repo.get(Activity, follow_activity_three.id).data["state"] == "pending"
644 test "does not allow to vote twice" do
646 other_user = insert(:user)
649 CommonAPI.post(user, %{
650 "status" => "Am I cute?",
651 "poll" => %{"options" => ["Yes", "No"], "expires_in" => 20}
654 object = Object.normalize(activity)
656 {:ok, _, object} = CommonAPI.vote(other_user, object, [0])
658 assert {:error, "Already voted"} == CommonAPI.vote(other_user, object, [1])
662 describe "listen/2" do
663 test "returns a valid activity" do
667 CommonAPI.listen(user, %{
668 "title" => "lain radio episode 1",
669 "album" => "lain radio",
674 object = Object.normalize(activity)
676 assert object.data["title"] == "lain radio episode 1"
678 assert Visibility.get_visibility(activity) == "public"
681 test "respects visibility=private" do
685 CommonAPI.listen(user, %{
686 "title" => "lain radio episode 1",
687 "album" => "lain radio",
690 "visibility" => "private"
693 object = Object.normalize(activity)
695 assert object.data["title"] == "lain radio episode 1"
697 assert Visibility.get_visibility(activity) == "private"