1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.NotificationTest do
10 alias Pleroma.Notification
12 alias Pleroma.Web.ActivityPub.Transmogrifier
13 alias Pleroma.Web.CommonAPI
14 alias Pleroma.Web.Streamer
16 describe "create_notifications" do
17 test "notifies someone when they are directly addressed" do
19 other_user = insert(:user)
20 third_user = insert(:user)
23 CommonAPI.post(user, %{
24 "status" => "hey @#{other_user.nickname} and @#{third_user.nickname}"
27 {:ok, [notification, other_notification]} = Notification.create_notifications(activity)
29 notified_ids = Enum.sort([notification.user_id, other_notification.user_id])
30 assert notified_ids == [other_user.id, third_user.id]
31 assert notification.activity_id == activity.id
32 assert other_notification.activity_id == activity.id
35 test "it does not create a notification for subscribed users" do
37 subscriber = insert(:user)
39 User.subscribe(subscriber, user)
41 {:ok, status} = CommonAPI.post(user, %{"status" => "Akariiiin"})
42 {:ok, notifications} = Notification.create_notifications(status)
44 assert notifications == []
47 test "does not create a notification for subscribed users if status is a reply" do
49 other_user = insert(:user)
50 subscriber = insert(:user)
52 User.subscribe(subscriber, other_user)
54 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
56 {:ok, _reply_activity} =
57 CommonAPI.post(other_user, %{
58 "status" => "test reply",
59 "in_reply_to_status_id" => activity.id
62 user_notifications = Notification.for_user(user)
63 assert length(user_notifications) == 1
65 subscriber_notifications = Notification.for_user(subscriber)
66 assert Enum.empty?(subscriber_notifications)
70 describe "create_notification" do
72 GenServer.start(Streamer, %{}, name: Streamer)
75 if pid = Process.whereis(Streamer) do
76 Process.exit(pid, :kill)
81 test "it creates a notification for user and send to the 'user' and the 'user:notification' stream" do
83 task = Task.async(fn -> assert_receive {:text, _}, 4_000 end)
84 task_user_notification = Task.async(fn -> assert_receive {:text, _}, 4_000 end)
85 Streamer.add_socket("user", %{transport_pid: task.pid, assigns: %{user: user}})
89 %{transport_pid: task_user_notification.pid, assigns: %{user: user}}
92 activity = insert(:note_activity)
94 notify = Notification.create_notification(activity, user)
95 assert notify.user_id == user.id
97 Task.await(task_user_notification)
100 test "it creates a notification for user if the user blocks the activity author" do
101 activity = insert(:note_activity)
102 author = User.get_cached_by_ap_id(activity.data["actor"])
104 {:ok, user} = User.block(user, author)
106 assert Notification.create_notification(activity, user)
109 test "it creates a notificatin for the user if the user mutes the activity author" do
110 muter = insert(:user)
111 muted = insert(:user)
112 {:ok, _} = User.mute(muter, muted)
113 muter = Repo.get(User, muter.id)
114 {:ok, activity} = CommonAPI.post(muted, %{"status" => "Hi @#{muter.nickname}"})
116 assert Notification.create_notification(activity, muter)
119 test "notification created if user is muted without notifications" do
120 muter = insert(:user)
121 muted = insert(:user)
123 {:ok, muter} = User.mute(muter, muted, false)
125 {:ok, activity} = CommonAPI.post(muted, %{"status" => "Hi @#{muter.nickname}"})
127 assert Notification.create_notification(activity, muter)
130 test "it creates a notification for an activity from a muted thread" do
131 muter = insert(:user)
132 other_user = insert(:user)
133 {:ok, activity} = CommonAPI.post(muter, %{"status" => "hey"})
134 CommonAPI.add_mute(muter, activity)
137 CommonAPI.post(other_user, %{
138 "status" => "Hi @#{muter.nickname}",
139 "in_reply_to_status_id" => activity.id
142 assert Notification.create_notification(activity, muter)
145 test "it disables notifications from followers" do
146 follower = insert(:user)
147 followed = insert(:user, info: %{notification_settings: %{"followers" => false}})
148 User.follow(follower, followed)
149 {:ok, activity} = CommonAPI.post(follower, %{"status" => "hey @#{followed.nickname}"})
150 refute Notification.create_notification(activity, followed)
153 test "it disables notifications from non-followers" do
154 follower = insert(:user)
155 followed = insert(:user, info: %{notification_settings: %{"non_followers" => false}})
156 {:ok, activity} = CommonAPI.post(follower, %{"status" => "hey @#{followed.nickname}"})
157 refute Notification.create_notification(activity, followed)
160 test "it disables notifications from people the user follows" do
161 follower = insert(:user, info: %{notification_settings: %{"follows" => false}})
162 followed = insert(:user)
163 User.follow(follower, followed)
164 follower = Repo.get(User, follower.id)
165 {:ok, activity} = CommonAPI.post(followed, %{"status" => "hey @#{follower.nickname}"})
166 refute Notification.create_notification(activity, follower)
169 test "it disables notifications from people the user does not follow" do
170 follower = insert(:user, info: %{notification_settings: %{"non_follows" => false}})
171 followed = insert(:user)
172 {:ok, activity} = CommonAPI.post(followed, %{"status" => "hey @#{follower.nickname}"})
173 refute Notification.create_notification(activity, follower)
176 test "it doesn't create a notification for user if he is the activity author" do
177 activity = insert(:note_activity)
178 author = User.get_cached_by_ap_id(activity.data["actor"])
180 refute Notification.create_notification(activity, author)
183 test "it doesn't create a notification for follow-unfollow-follow chains" do
185 followed_user = insert(:user)
186 {:ok, _, _, activity} = CommonAPI.follow(user, followed_user)
187 Notification.create_notification(activity, followed_user)
188 CommonAPI.unfollow(user, followed_user)
189 {:ok, _, _, activity_dupe} = CommonAPI.follow(user, followed_user)
190 refute Notification.create_notification(activity_dupe, followed_user)
193 test "it doesn't create notifications for follow+subscribed users" do
195 subscriber = insert(:user)
197 {:ok, _, _, _} = CommonAPI.follow(subscriber, user)
198 User.subscribe(subscriber, user)
199 {:ok, status} = CommonAPI.post(user, %{"status" => "Akariiiin"})
200 {:ok, notifications} = Notification.create_notifications(status)
202 assert notifications == []
205 test "it doesn't create subscription notifications if the recipient cannot see the status" do
207 subscriber = insert(:user)
209 User.subscribe(subscriber, user)
211 {:ok, status} = CommonAPI.post(user, %{"status" => "inwisible", "visibility" => "direct"})
213 assert {:ok, []} == Notification.create_notifications(status)
217 describe "get notification" do
218 test "it gets a notification that belongs to the user" do
220 other_user = insert(:user)
222 {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{other_user.nickname}"})
224 {:ok, [notification]} = Notification.create_notifications(activity)
225 {:ok, notification} = Notification.get(other_user, notification.id)
227 assert notification.user_id == other_user.id
230 test "it returns error if the notification doesn't belong to the user" do
232 other_user = insert(:user)
234 {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{other_user.nickname}"})
236 {:ok, [notification]} = Notification.create_notifications(activity)
237 {:error, _notification} = Notification.get(user, notification.id)
241 describe "dismiss notification" do
242 test "it dismisses a notification that belongs to the user" do
244 other_user = insert(:user)
246 {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{other_user.nickname}"})
248 {:ok, [notification]} = Notification.create_notifications(activity)
249 {:ok, notification} = Notification.dismiss(other_user, notification.id)
251 assert notification.user_id == other_user.id
254 test "it returns error if the notification doesn't belong to the user" do
256 other_user = insert(:user)
258 {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{other_user.nickname}"})
260 {:ok, [notification]} = Notification.create_notifications(activity)
261 {:error, _notification} = Notification.dismiss(user, notification.id)
265 describe "clear notification" do
266 test "it clears all notifications belonging to the user" do
268 other_user = insert(:user)
269 third_user = insert(:user)
272 CommonAPI.post(user, %{
273 "status" => "hey @#{other_user.nickname} and @#{third_user.nickname} !"
276 {:ok, _notifs} = Notification.create_notifications(activity)
279 CommonAPI.post(user, %{
280 "status" => "hey again @#{other_user.nickname} and @#{third_user.nickname} !"
283 {:ok, _notifs} = Notification.create_notifications(activity)
284 Notification.clear(other_user)
286 assert Notification.for_user(other_user) == []
287 assert Notification.for_user(third_user) != []
291 describe "set_read_up_to()" do
292 test "it sets all notifications as read up to a specified notification ID" do
294 other_user = insert(:user)
297 CommonAPI.post(user, %{
298 "status" => "hey @#{other_user.nickname}!"
302 CommonAPI.post(user, %{
303 "status" => "hey again @#{other_user.nickname}!"
306 [n2, n1] = notifs = Notification.for_user(other_user)
307 assert length(notifs) == 2
312 CommonAPI.post(user, %{
313 "status" => "hey yet again @#{other_user.nickname}!"
316 Notification.set_read_up_to(other_user, n2.id)
318 [n3, n2, n1] = Notification.for_user(other_user)
320 assert n1.seen == true
321 assert n2.seen == true
322 assert n3.seen == false
326 describe "for_user_since/2" do
327 defp days_ago(days) do
329 NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second),
330 -days * 60 * 60 * 24,
335 test "Returns recent notifications" do
336 user1 = insert(:user)
337 user2 = insert(:user)
339 Enum.each(0..10, fn i ->
341 CommonAPI.post(user1, %{
342 "status" => "hey ##{i} @#{user2.nickname}!"
346 {old, new} = Enum.split(Notification.for_user(user2), 5)
348 Enum.each(old, fn notification ->
350 |> cast(%{updated_at: days_ago(10)}, [:updated_at])
351 |> Pleroma.Repo.update!()
354 recent_notifications_ids =
356 |> Notification.for_user_since(
357 NaiveDateTime.add(NaiveDateTime.utc_now(), -5 * 86_400, :second)
361 Enum.each(old, fn %{id: id} ->
362 refute id in recent_notifications_ids
365 Enum.each(new, fn %{id: id} ->
366 assert id in recent_notifications_ids
371 describe "notification target determination" do
372 test "it sends notifications to addressed users in new messages" do
374 other_user = insert(:user)
377 CommonAPI.post(user, %{
378 "status" => "hey @#{other_user.nickname}!"
381 assert other_user in Notification.get_notified_from_activity(activity)
384 test "it sends notifications to mentioned users in new messages" do
386 other_user = insert(:user)
389 "@context" => "https://www.w3.org/ns/activitystreams",
391 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
392 "actor" => user.ap_id,
395 "content" => "message with a Mention tag, but no explicit tagging",
399 "href" => other_user.ap_id,
400 "name" => other_user.nickname
403 "attributedTo" => user.ap_id
407 {:ok, activity} = Transmogrifier.handle_incoming(create_activity)
409 assert other_user in Notification.get_notified_from_activity(activity)
412 test "it does not send notifications to users who are only cc in new messages" do
414 other_user = insert(:user)
417 "@context" => "https://www.w3.org/ns/activitystreams",
419 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
420 "cc" => [other_user.ap_id],
421 "actor" => user.ap_id,
424 "content" => "hi everyone",
425 "attributedTo" => user.ap_id
429 {:ok, activity} = Transmogrifier.handle_incoming(create_activity)
431 assert other_user not in Notification.get_notified_from_activity(activity)
434 test "it does not send notification to mentioned users in likes" do
436 other_user = insert(:user)
437 third_user = insert(:user)
439 {:ok, activity_one} =
440 CommonAPI.post(user, %{
441 "status" => "hey @#{other_user.nickname}!"
444 {:ok, activity_two, _} = CommonAPI.favorite(activity_one.id, third_user)
446 assert other_user not in Notification.get_notified_from_activity(activity_two)
449 test "it does not send notification to mentioned users in announces" do
451 other_user = insert(:user)
452 third_user = insert(:user)
454 {:ok, activity_one} =
455 CommonAPI.post(user, %{
456 "status" => "hey @#{other_user.nickname}!"
459 {:ok, activity_two, _} = CommonAPI.repeat(activity_one.id, third_user)
461 assert other_user not in Notification.get_notified_from_activity(activity_two)
465 describe "notification lifecycle" do
466 test "liking an activity results in 1 notification, then 0 if the activity is deleted" do
468 other_user = insert(:user)
470 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
472 assert Enum.empty?(Notification.for_user(user))
474 {:ok, _, _} = CommonAPI.favorite(activity.id, other_user)
476 assert length(Notification.for_user(user)) == 1
478 {:ok, _} = CommonAPI.delete(activity.id, user)
480 assert Enum.empty?(Notification.for_user(user))
483 test "liking an activity results in 1 notification, then 0 if the activity is unliked" do
485 other_user = insert(:user)
487 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
489 assert Enum.empty?(Notification.for_user(user))
491 {:ok, _, _} = CommonAPI.favorite(activity.id, other_user)
493 assert length(Notification.for_user(user)) == 1
495 {:ok, _, _, _} = CommonAPI.unfavorite(activity.id, other_user)
497 assert Enum.empty?(Notification.for_user(user))
500 test "repeating an activity results in 1 notification, then 0 if the activity is deleted" do
502 other_user = insert(:user)
504 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
506 assert Enum.empty?(Notification.for_user(user))
508 {:ok, _, _} = CommonAPI.repeat(activity.id, other_user)
510 assert length(Notification.for_user(user)) == 1
512 {:ok, _} = CommonAPI.delete(activity.id, user)
514 assert Enum.empty?(Notification.for_user(user))
517 test "repeating an activity results in 1 notification, then 0 if the activity is unrepeated" do
519 other_user = insert(:user)
521 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
523 assert Enum.empty?(Notification.for_user(user))
525 {:ok, _, _} = CommonAPI.repeat(activity.id, other_user)
527 assert length(Notification.for_user(user)) == 1
529 {:ok, _, _} = CommonAPI.unrepeat(activity.id, other_user)
531 assert Enum.empty?(Notification.for_user(user))
534 test "liking an activity which is already deleted does not generate a notification" do
536 other_user = insert(:user)
538 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
540 assert Enum.empty?(Notification.for_user(user))
542 {:ok, _deletion_activity} = CommonAPI.delete(activity.id, user)
544 assert Enum.empty?(Notification.for_user(user))
546 {:error, _} = CommonAPI.favorite(activity.id, other_user)
548 assert Enum.empty?(Notification.for_user(user))
551 test "repeating an activity which is already deleted does not generate a notification" do
553 other_user = insert(:user)
555 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
557 assert Enum.empty?(Notification.for_user(user))
559 {:ok, _deletion_activity} = CommonAPI.delete(activity.id, user)
561 assert Enum.empty?(Notification.for_user(user))
563 {:error, _} = CommonAPI.repeat(activity.id, other_user)
565 assert Enum.empty?(Notification.for_user(user))
568 test "replying to a deleted post without tagging does not generate a notification" do
570 other_user = insert(:user)
572 {:ok, activity} = CommonAPI.post(user, %{"status" => "test post"})
573 {:ok, _deletion_activity} = CommonAPI.delete(activity.id, user)
575 {:ok, _reply_activity} =
576 CommonAPI.post(other_user, %{
577 "status" => "test reply",
578 "in_reply_to_status_id" => activity.id
581 assert Enum.empty?(Notification.for_user(user))
584 test "notifications are deleted if a local user is deleted" do
586 other_user = insert(:user)
589 CommonAPI.post(user, %{"status" => "hi @#{other_user.nickname}", "visibility" => "direct"})
591 refute Enum.empty?(Notification.for_user(other_user))
595 assert Enum.empty?(Notification.for_user(other_user))
598 test "notifications are deleted if a remote user is deleted" do
599 remote_user = insert(:user)
600 local_user = insert(:user)
603 "@context" => "https://www.w3.org/ns/activitystreams",
605 "actor" => remote_user.ap_id,
606 "id" => remote_user.ap_id <> "/activities/test",
607 "to" => [local_user.ap_id],
611 "content" => "Hello!",
615 "href" => local_user.ap_id,
616 "name" => "@#{local_user.nickname}"
619 "to" => [local_user.ap_id],
621 "attributedTo" => remote_user.ap_id
625 {:ok, _dm_activity} = Transmogrifier.handle_incoming(dm_message)
627 refute Enum.empty?(Notification.for_user(local_user))
629 delete_user_message = %{
630 "@context" => "https://www.w3.org/ns/activitystreams",
631 "id" => remote_user.ap_id <> "/activities/delete",
632 "actor" => remote_user.ap_id,
634 "object" => remote_user.ap_id
637 {:ok, _delete_activity} = Transmogrifier.handle_incoming(delete_user_message)
639 assert Enum.empty?(Notification.for_user(local_user))
643 describe "for_user" do
644 test "it returns notifications for muted user without notifications" do
646 muted = insert(:user)
647 {:ok, user} = User.mute(user, muted, false)
649 {:ok, _activity} = CommonAPI.post(muted, %{"status" => "hey @#{user.nickname}"})
651 assert length(Notification.for_user(user)) == 1
654 test "it doesn't return notifications for muted user with notifications" do
656 muted = insert(:user)
657 {:ok, user} = User.mute(user, muted)
659 {:ok, _activity} = CommonAPI.post(muted, %{"status" => "hey @#{user.nickname}"})
661 assert Notification.for_user(user) == []
664 test "it doesn't return notifications for blocked user" do
666 blocked = insert(:user)
667 {:ok, user} = User.block(user, blocked)
669 {:ok, _activity} = CommonAPI.post(blocked, %{"status" => "hey @#{user.nickname}"})
671 assert Notification.for_user(user) == []
674 test "it doesn't return notificatitons for blocked domain" do
676 blocked = insert(:user, ap_id: "http://some-domain.com")
677 {:ok, user} = User.block_domain(user, "some-domain.com")
679 {:ok, _activity} = CommonAPI.post(blocked, %{"status" => "hey @#{user.nickname}"})
681 assert Notification.for_user(user) == []
684 test "it doesn't return notifications for muted thread" do
686 another_user = insert(:user)
688 {:ok, activity} = CommonAPI.post(another_user, %{"status" => "hey @#{user.nickname}"})
690 {:ok, _} = Pleroma.ThreadMute.add_mute(user.id, activity.data["context"])
691 assert Notification.for_user(user) == []
694 test "it returns notifications for muted user with notifications and with_muted parameter" do
696 muted = insert(:user)
697 {:ok, user} = User.mute(user, muted)
699 {:ok, _activity} = CommonAPI.post(muted, %{"status" => "hey @#{user.nickname}"})
701 assert length(Notification.for_user(user, %{with_muted: true})) == 1
704 test "it returns notifications for blocked user and with_muted parameter" do
706 blocked = insert(:user)
707 {:ok, user} = User.block(user, blocked)
709 {:ok, _activity} = CommonAPI.post(blocked, %{"status" => "hey @#{user.nickname}"})
711 assert length(Notification.for_user(user, %{with_muted: true})) == 1
714 test "it returns notificatitons for blocked domain and with_muted parameter" do
716 blocked = insert(:user, ap_id: "http://some-domain.com")
717 {:ok, user} = User.block_domain(user, "some-domain.com")
719 {:ok, _activity} = CommonAPI.post(blocked, %{"status" => "hey @#{user.nickname}"})
721 assert length(Notification.for_user(user, %{with_muted: true})) == 1
724 test "it returns notifications for muted thread with_muted parameter" do
726 another_user = insert(:user)
728 {:ok, activity} = CommonAPI.post(another_user, %{"status" => "hey @#{user.nickname}"})
730 {:ok, _} = Pleroma.ThreadMute.add_mute(user.id, activity.data["context"])
731 assert length(Notification.for_user(user, %{with_muted: true})) == 1