diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/notification_test.exs | 149 | ||||
| -rw-r--r-- | test/user_test.exs | 6 | 
2 files changed, 145 insertions, 10 deletions
| diff --git a/test/notification_test.exs b/test/notification_test.exs index d240ede94..d87eca836 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -6,12 +6,14 @@ defmodule Pleroma.NotificationTest do    use Pleroma.DataCase    import Pleroma.Factory +  import Mock    alias Pleroma.Notification    alias Pleroma.Tests.ObanHelpers    alias Pleroma.User    alias Pleroma.Web.ActivityPub.Transmogrifier    alias Pleroma.Web.CommonAPI +  alias Pleroma.Web.Push    alias Pleroma.Web.Streamer    describe "create_notifications" do @@ -80,6 +82,80 @@ defmodule Pleroma.NotificationTest do      end    end +  describe "CommonApi.post/2 notification-related functionality" do +    test_with_mock "creates but does NOT send notification to blocker user", +                   Push, +                   [:passthrough], +                   [] do +      user = insert(:user) +      blocker = insert(:user) +      {:ok, _user_relationship} = User.block(blocker, user) + +      {:ok, _activity} = CommonAPI.post(user, %{"status" => "hey @#{blocker.nickname}!"}) + +      blocker_id = blocker.id +      assert [%Notification{user_id: ^blocker_id}] = Repo.all(Notification) +      refute called(Push.send(:_)) +    end + +    test_with_mock "creates but does NOT send notification to notification-muter user", +                   Push, +                   [:passthrough], +                   [] do +      user = insert(:user) +      muter = insert(:user) +      {:ok, _user_relationships} = User.mute(muter, user) + +      {:ok, _activity} = CommonAPI.post(user, %{"status" => "hey @#{muter.nickname}!"}) + +      muter_id = muter.id +      assert [%Notification{user_id: ^muter_id}] = Repo.all(Notification) +      refute called(Push.send(:_)) +    end + +    test_with_mock "creates but does NOT send notification to thread-muter user", +                   Push, +                   [:passthrough], +                   [] do +      user = insert(:user) +      thread_muter = insert(:user) + +      {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{thread_muter.nickname}!"}) + +      {:ok, _} = CommonAPI.add_mute(thread_muter, activity) + +      {:ok, _same_context_activity} = +        CommonAPI.post(user, %{ +          "status" => "hey-hey-hey @#{thread_muter.nickname}!", +          "in_reply_to_status_id" => activity.id +        }) + +      [pre_mute_notification, post_mute_notification] = +        Repo.all(from(n in Notification, where: n.user_id == ^thread_muter.id, order_by: n.id)) + +      pre_mute_notification_id = pre_mute_notification.id +      post_mute_notification_id = post_mute_notification.id + +      assert called( +               Push.send( +                 :meck.is(fn +                   %Notification{id: ^pre_mute_notification_id} -> true +                   _ -> false +                 end) +               ) +             ) + +      refute called( +               Push.send( +                 :meck.is(fn +                   %Notification{id: ^post_mute_notification_id} -> true +                   _ -> false +                 end) +               ) +             ) +    end +  end +    describe "create_notification" do      @tag needs_streamer: true      test "it creates a notification for user and send to the 'user' and the 'user:notification' stream" do @@ -382,7 +458,7 @@ defmodule Pleroma.NotificationTest do      end    end -  describe "notification target determination" do +  describe "notification target determination / get_notified_from_activity/2" do      test "it sends notifications to addressed users in new messages" do        user = insert(:user)        other_user = insert(:user) @@ -392,7 +468,9 @@ defmodule Pleroma.NotificationTest do            "status" => "hey @#{other_user.nickname}!"          }) -      assert other_user in Notification.get_notified_from_activity(activity) +      {enabled_receivers, _disabled_receivers} = Notification.get_notified_from_activity(activity) + +      assert other_user in enabled_receivers      end      test "it sends notifications to mentioned users in new messages" do @@ -420,7 +498,9 @@ defmodule Pleroma.NotificationTest do        {:ok, activity} = Transmogrifier.handle_incoming(create_activity) -      assert other_user in Notification.get_notified_from_activity(activity) +      {enabled_receivers, _disabled_receivers} = Notification.get_notified_from_activity(activity) + +      assert other_user in enabled_receivers      end      test "it does not send notifications to users who are only cc in new messages" do @@ -442,7 +522,9 @@ defmodule Pleroma.NotificationTest do        {:ok, activity} = Transmogrifier.handle_incoming(create_activity) -      assert other_user not in Notification.get_notified_from_activity(activity) +      {enabled_receivers, _disabled_receivers} = Notification.get_notified_from_activity(activity) + +      assert other_user not in enabled_receivers      end      test "it does not send notification to mentioned users in likes" do @@ -457,7 +539,10 @@ defmodule Pleroma.NotificationTest do        {:ok, activity_two, _} = CommonAPI.favorite(activity_one.id, third_user) -      assert other_user not in Notification.get_notified_from_activity(activity_two) +      {enabled_receivers, _disabled_receivers} = +        Notification.get_notified_from_activity(activity_two) + +      assert other_user not in enabled_receivers      end      test "it does not send notification to mentioned users in announces" do @@ -472,7 +557,57 @@ defmodule Pleroma.NotificationTest do        {:ok, activity_two, _} = CommonAPI.repeat(activity_one.id, third_user) -      assert other_user not in Notification.get_notified_from_activity(activity_two) +      {enabled_receivers, _disabled_receivers} = +        Notification.get_notified_from_activity(activity_two) + +      assert other_user not in enabled_receivers +    end + +    test "it returns blocking recipient in disabled recipients list" do +      user = insert(:user) +      other_user = insert(:user) +      {:ok, _user_relationship} = User.block(other_user, user) + +      {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{other_user.nickname}!"}) + +      {enabled_receivers, disabled_receivers} = Notification.get_notified_from_activity(activity) + +      assert [] == enabled_receivers +      assert [other_user] == disabled_receivers +    end + +    test "it returns notification-muting recipient in disabled recipients list" do +      user = insert(:user) +      other_user = insert(:user) +      {:ok, _user_relationships} = User.mute(other_user, user) + +      {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{other_user.nickname}!"}) + +      {enabled_receivers, disabled_receivers} = Notification.get_notified_from_activity(activity) + +      assert [] == enabled_receivers +      assert [other_user] == disabled_receivers +    end + +    test "it returns thread-muting recipient in disabled recipients list" do +      user = insert(:user) +      other_user = insert(:user) + +      {:ok, activity} = CommonAPI.post(user, %{"status" => "hey @#{other_user.nickname}!"}) + +      {:ok, _} = CommonAPI.add_mute(other_user, activity) + +      {:ok, same_context_activity} = +        CommonAPI.post(user, %{ +          "status" => "hey-hey-hey @#{other_user.nickname}!", +          "in_reply_to_status_id" => activity.id +        }) + +      {enabled_receivers, disabled_receivers} = +        Notification.get_notified_from_activity(same_context_activity) + +      assert [other_user] == disabled_receivers +      refute other_user in enabled_receivers      end    end @@ -716,7 +851,7 @@ defmodule Pleroma.NotificationTest do        assert Notification.for_user(user) == []      end -    test "it doesn't return notificatitons for blocked domain" do +    test "it doesn't return notifications for blocked domain" do        user = insert(:user)        blocked = insert(:user, ap_id: "http://some-domain.com")        {:ok, user} = User.block_domain(user, "some-domain.com") diff --git a/test/user_test.exs b/test/user_test.exs index 119a36ec1..8055ebd08 100644 --- a/test/user_test.exs +++ b/test/user_test.exs @@ -86,7 +86,7 @@ defmodule Pleroma.UserTest do        {:ok, user: insert(:user)}      end -    test "outgoing_relations_ap_ids/1", %{user: user} do +    test "outgoing_relationships_ap_ids/1", %{user: user} do        rel_types = [:block, :mute, :notification_mute, :reblog_mute, :inverse_subscription]        ap_ids_by_rel = @@ -124,10 +124,10 @@ defmodule Pleroma.UserTest do        assert ap_ids_by_rel[:inverse_subscription] ==                 Enum.sort(Enum.map(User.subscriber_users(user), & &1.ap_id)) -      outgoing_relations_ap_ids = User.outgoing_relations_ap_ids(user, rel_types) +      outgoing_relationships_ap_ids = User.outgoing_relationships_ap_ids(user, rel_types)        assert ap_ids_by_rel == -               Enum.into(outgoing_relations_ap_ids, %{}, fn {k, v} -> {k, Enum.sort(v)} end) +               Enum.into(outgoing_relationships_ap_ids, %{}, fn {k, v} -> {k, Enum.sort(v)} end)      end    end | 
