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.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)
71 Pleroma.Config.put([:instance, :safe_dm_mentions], true)
74 CommonAPI.post(har, %{
75 "status" => "@#{jafnhar.nickname} hey, i never want to see @#{tridi.nickname} again",
76 "visibility" => "direct"
79 refute tridi.ap_id in activity.recipients
80 assert jafnhar.ap_id in activity.recipients
83 test "it de-duplicates tags" do
85 {:ok, activity} = CommonAPI.post(user, %{"status" => "#2hu #2HU"})
87 object = Object.normalize(activity)
89 assert object.data["tag"] == ["2hu"]
92 test "it adds emoji in the object" do
94 {:ok, activity} = CommonAPI.post(user, %{"status" => ":firefox:"})
96 assert Object.normalize(activity).data["emoji"]["firefox"]
99 test "it adds emoji when updating profiles" do
100 user = insert(:user, %{name: ":firefox:"})
102 {:ok, activity} = CommonAPI.update(user)
103 user = User.get_cached_by_ap_id(user.ap_id)
104 [firefox] = user.source_data["tag"]
106 assert firefox["name"] == ":firefox:"
108 assert Pleroma.Constants.as_public() in activity.recipients
111 describe "posting" do
112 test "it supports explicit addressing" do
114 user_two = insert(:user)
115 user_three = insert(:user)
116 user_four = insert(:user)
119 CommonAPI.post(user, %{
121 "Hey, I think @#{user_three.nickname} is ugly. @#{user_four.nickname} is alright though.",
122 "to" => [user_two.nickname, user_four.nickname, "nonexistent"]
125 assert user.ap_id in activity.recipients
126 assert user_two.ap_id in activity.recipients
127 assert user_four.ap_id in activity.recipients
128 refute user_three.ap_id in activity.recipients
131 test "it filters out obviously bad tags when accepting a post as HTML" do
134 post = "<p><b>2hu</b></p><script>alert('xss')</script>"
137 CommonAPI.post(user, %{
139 "content_type" => "text/html"
142 object = Object.normalize(activity)
144 assert object.data["content"] == "<p><b>2hu</b></p>alert('xss')"
147 test "it filters out obviously bad tags when accepting a post as Markdown" do
150 post = "<p><b>2hu</b></p><script>alert('xss')</script>"
153 CommonAPI.post(user, %{
155 "content_type" => "text/markdown"
158 object = Object.normalize(activity)
160 assert object.data["content"] == "<p><b>2hu</b></p>alert('xss')"
163 test "it does not allow replies to direct messages that are not direct messages themselves" do
166 {:ok, activity} = CommonAPI.post(user, %{"status" => "suya..", "visibility" => "direct"})
169 CommonAPI.post(user, %{
170 "status" => "suya..",
171 "visibility" => "direct",
172 "in_reply_to_status_id" => activity.id
175 Enum.each(["public", "private", "unlisted"], fn visibility ->
176 assert {:error, "The message visibility must be direct"} =
177 CommonAPI.post(user, %{
178 "status" => "suya..",
179 "visibility" => visibility,
180 "in_reply_to_status_id" => activity.id
185 test "it allows to address a list" do
187 {:ok, list} = Pleroma.List.create("foo", user)
190 CommonAPI.post(user, %{"status" => "foobar", "visibility" => "list:#{list.id}"})
192 assert activity.data["bcc"] == [list.ap_id]
193 assert activity.recipients == [list.ap_id, user.ap_id]
194 assert activity.data["listMessage"] == list.ap_id
197 test "it returns error when status is empty and no attachments" do
200 assert {:error, "Cannot post an empty status without attachments"} =
201 CommonAPI.post(user, %{"status" => ""})
204 test "it returns error when character limit is exceeded" do
205 Pleroma.Config.put([:instance, :limit], 5)
209 assert {:error, "The status is over the character limit"} =
210 CommonAPI.post(user, %{"status" => "foobar"})
213 test "it can handle activities that expire" do
217 NaiveDateTime.utc_now()
218 |> NaiveDateTime.truncate(:second)
219 |> NaiveDateTime.add(1_000_000, :second)
221 assert {:ok, activity} =
222 CommonAPI.post(user, %{"status" => "chai", "expires_in" => 1_000_000})
224 assert expiration = Pleroma.ActivityExpiration.get_by_activity_id(activity.id)
225 assert expiration.scheduled_at == expires_at
229 describe "reactions" do
230 test "repeating a status" do
232 other_user = insert(:user)
234 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
236 {:ok, %Activity{}, _} = CommonAPI.repeat(activity.id, user)
239 test "repeating a status privately" do
241 other_user = insert(:user)
243 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
245 {:ok, %Activity{} = announce_activity, _} =
246 CommonAPI.repeat(activity.id, user, %{"visibility" => "private"})
248 assert Visibility.is_private?(announce_activity)
251 test "favoriting a status" do
253 other_user = insert(:user)
255 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
257 {:ok, %Activity{}, _} = CommonAPI.favorite(activity.id, user)
260 test "retweeting a status twice returns an error" do
262 other_user = insert(:user)
264 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
265 {:ok, %Activity{}, _object} = CommonAPI.repeat(activity.id, user)
266 {:error, _} = CommonAPI.repeat(activity.id, user)
269 test "favoriting a status twice returns an error" do
271 other_user = insert(:user)
273 {:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
274 {:ok, %Activity{}, _object} = CommonAPI.favorite(activity.id, user)
275 {:error, _} = CommonAPI.favorite(activity.id, user)
279 describe "pinned statuses" do
281 Pleroma.Config.put([:instance, :max_pinned_statuses], 1)
284 {:ok, activity} = CommonAPI.post(user, %{"status" => "HI!!!"})
286 [user: user, activity: activity]
289 test "pin status", %{user: user, activity: activity} do
290 assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
293 user = refresh_record(user)
295 assert %User{pinned_activities: [^id]} = user
298 test "unlisted statuses can be pinned", %{user: user} do
299 {:ok, activity} = CommonAPI.post(user, %{"status" => "HI!!!", "visibility" => "unlisted"})
300 assert {:ok, ^activity} = CommonAPI.pin(activity.id, user)
303 test "only self-authored can be pinned", %{activity: activity} do
306 assert {:error, "Could not pin"} = CommonAPI.pin(activity.id, user)
309 test "max pinned statuses", %{user: user, activity: activity_one} do
310 {:ok, activity_two} = CommonAPI.post(user, %{"status" => "HI!!!"})
312 assert {:ok, ^activity_one} = CommonAPI.pin(activity_one.id, user)
314 user = refresh_record(user)
316 assert {:error, "You have already pinned the maximum number of statuses"} =
317 CommonAPI.pin(activity_two.id, user)
320 test "unpin status", %{user: user, activity: activity} do
321 {:ok, activity} = CommonAPI.pin(activity.id, user)
323 user = refresh_record(user)
325 assert {:ok, ^activity} = CommonAPI.unpin(activity.id, user)
327 user = refresh_record(user)
329 assert %User{pinned_activities: []} = user
332 test "should unpin when deleting a status", %{user: user, activity: activity} do
333 {:ok, activity} = CommonAPI.pin(activity.id, user)
335 user = refresh_record(user)
337 assert {:ok, _} = CommonAPI.delete(activity.id, user)
339 user = refresh_record(user)
341 assert %User{pinned_activities: []} = user
345 describe "mute tests" do
349 activity = insert(:note_activity)
351 [user: user, activity: activity]
354 test "add mute", %{user: user, activity: activity} do
355 {:ok, _} = CommonAPI.add_mute(user, activity)
356 assert CommonAPI.thread_muted?(user, activity)
359 test "remove mute", %{user: user, activity: activity} do
360 CommonAPI.add_mute(user, activity)
361 {:ok, _} = CommonAPI.remove_mute(user, activity)
362 refute CommonAPI.thread_muted?(user, activity)
365 test "check that mutes can't be duplicate", %{user: user, activity: activity} do
366 CommonAPI.add_mute(user, activity)
367 {:error, _} = CommonAPI.add_mute(user, activity)
371 describe "reports" do
372 test "creates a report" do
373 reporter = insert(:user)
374 target_user = insert(:user)
376 {:ok, activity} = CommonAPI.post(target_user, %{"status" => "foobar"})
378 reporter_ap_id = reporter.ap_id
379 target_ap_id = target_user.ap_id
380 activity_ap_id = activity.data["id"]
384 "account_id" => target_user.id,
385 "comment" => comment,
386 "status_ids" => [activity.id]
391 "id" => activity_ap_id,
392 "content" => "foobar",
393 "published" => activity.object.data["published"],
394 "actor" => AccountView.render("show.json", %{user: target_user})
397 assert {:ok, flag_activity} = CommonAPI.report(reporter, report_data)
400 actor: ^reporter_ap_id,
403 "content" => ^comment,
404 "object" => [^target_ap_id, ^note_obj],
410 test "updates report state" do
411 [reporter, target_user] = insert_pair(:user)
412 activity = insert(:note_activity, user: target_user)
414 {:ok, %Activity{id: report_id}} =
415 CommonAPI.report(reporter, %{
416 "account_id" => target_user.id,
417 "comment" => "I feel offended",
418 "status_ids" => [activity.id]
421 {:ok, report} = CommonAPI.update_report_state(report_id, "resolved")
423 assert report.data["state"] == "resolved"
425 [reported_user, activity_id] = report.data["object"]
427 assert reported_user == target_user.ap_id
428 assert activity_id == activity.data["id"]
431 test "does not update report state when state is unsupported" do
432 [reporter, target_user] = insert_pair(:user)
433 activity = insert(:note_activity, user: target_user)
435 {:ok, %Activity{id: report_id}} =
436 CommonAPI.report(reporter, %{
437 "account_id" => target_user.id,
438 "comment" => "I feel offended",
439 "status_ids" => [activity.id]
442 assert CommonAPI.update_report_state(report_id, "test") == {:error, "Unsupported state"}
445 test "updates state of multiple reports" do
446 [reporter, target_user] = insert_pair(:user)
447 activity = insert(:note_activity, user: target_user)
449 {:ok, %Activity{id: first_report_id}} =
450 CommonAPI.report(reporter, %{
451 "account_id" => target_user.id,
452 "comment" => "I feel offended",
453 "status_ids" => [activity.id]
456 {:ok, %Activity{id: second_report_id}} =
457 CommonAPI.report(reporter, %{
458 "account_id" => target_user.id,
459 "comment" => "I feel very offended!",
460 "status_ids" => [activity.id]
464 CommonAPI.update_report_state([first_report_id, second_report_id], "resolved")
466 first_report = Activity.get_by_id(first_report_id)
467 second_report = Activity.get_by_id(second_report_id)
469 assert report_ids -- [first_report_id, second_report_id] == []
470 assert first_report.data["state"] == "resolved"
471 assert second_report.data["state"] == "resolved"
475 describe "reblog muting" do
477 muter = insert(:user)
479 muted = insert(:user)
481 [muter: muter, muted: muted]
484 test "add a reblog mute", %{muter: muter, muted: muted} do
485 {:ok, muter} = CommonAPI.hide_reblogs(muter, muted)
487 assert User.showing_reblogs?(muter, muted) == false
490 test "remove a reblog mute", %{muter: muter, muted: muted} do
491 {:ok, muter} = CommonAPI.hide_reblogs(muter, muted)
492 {:ok, muter} = CommonAPI.show_reblogs(muter, muted)
494 assert User.showing_reblogs?(muter, muted) == true
498 describe "unfollow/2" do
499 test "also unsubscribes a user" do
500 [follower, followed] = insert_pair(:user)
501 {:ok, follower, followed, _} = CommonAPI.follow(follower, followed)
502 {:ok, followed} = User.subscribe(follower, followed)
504 assert User.subscribed_to?(follower, followed)
506 {:ok, follower} = CommonAPI.unfollow(follower, followed)
508 refute User.subscribed_to?(follower, followed)
512 describe "accept_follow_request/2" do
513 test "after acceptance, it sets all existing pending follow request states to 'accept'" do
514 user = insert(:user, locked: true)
515 follower = insert(:user)
516 follower_two = insert(:user)
518 {:ok, follow_activity} = ActivityPub.follow(follower, user)
519 {:ok, follow_activity_two} = ActivityPub.follow(follower, user)
520 {:ok, follow_activity_three} = ActivityPub.follow(follower_two, user)
522 assert follow_activity.data["state"] == "pending"
523 assert follow_activity_two.data["state"] == "pending"
524 assert follow_activity_three.data["state"] == "pending"
526 {:ok, _follower} = CommonAPI.accept_follow_request(follower, user)
528 assert Repo.get(Activity, follow_activity.id).data["state"] == "accept"
529 assert Repo.get(Activity, follow_activity_two.id).data["state"] == "accept"
530 assert Repo.get(Activity, follow_activity_three.id).data["state"] == "pending"
533 test "after rejection, it sets all existing pending follow request states to 'reject'" do
534 user = insert(:user, locked: true)
535 follower = insert(:user)
536 follower_two = insert(:user)
538 {:ok, follow_activity} = ActivityPub.follow(follower, user)
539 {:ok, follow_activity_two} = ActivityPub.follow(follower, user)
540 {:ok, follow_activity_three} = ActivityPub.follow(follower_two, user)
542 assert follow_activity.data["state"] == "pending"
543 assert follow_activity_two.data["state"] == "pending"
544 assert follow_activity_three.data["state"] == "pending"
546 {:ok, _follower} = CommonAPI.reject_follow_request(follower, user)
548 assert Repo.get(Activity, follow_activity.id).data["state"] == "reject"
549 assert Repo.get(Activity, follow_activity_two.id).data["state"] == "reject"
550 assert Repo.get(Activity, follow_activity_three.id).data["state"] == "pending"
555 test "does not allow to vote twice" do
557 other_user = insert(:user)
560 CommonAPI.post(user, %{
561 "status" => "Am I cute?",
562 "poll" => %{"options" => ["Yes", "No"], "expires_in" => 20}
565 object = Object.normalize(activity)
567 {:ok, _, object} = CommonAPI.vote(other_user, object, [0])
569 assert {:error, "Already voted"} == CommonAPI.vote(other_user, object, [1])
573 describe "listen/2" do
574 test "returns a valid activity" do
578 CommonAPI.listen(user, %{
579 "title" => "lain radio episode 1",
580 "album" => "lain radio",
585 object = Object.normalize(activity)
587 assert object.data["title"] == "lain radio episode 1"
589 assert Visibility.get_visibility(activity) == "public"
592 test "respects visibility=private" do
596 CommonAPI.listen(user, %{
597 "title" => "lain radio episode 1",
598 "album" => "lain radio",
601 "visibility" => "private"
604 object = Object.normalize(activity)
606 assert object.data["title"] == "lain radio episode 1"
608 assert Visibility.get_visibility(activity) == "private"