diff options
author | lain <lain@soykaf.club> | 2020-08-26 13:17:39 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-08-26 13:17:39 +0200 |
commit | fc42446755d5284a2406633358ab8edfa8c0ab0c (patch) | |
tree | 16924be1f511166b4b1a5d91ce681696ee2a19f1 /test/notification_test.exs | |
parent | 49a436ad3e174e1b0b6442f7a777498cc551449c (diff) | |
parent | 797535155051e75227fca611c3486c02c01a98b3 (diff) | |
download | pleroma-fc42446755d5284a2406633358ab8edfa8c0ab0c.tar.gz pleroma-fc42446755d5284a2406633358ab8edfa8c0ab0c.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into pleroma-2.1-rc0
Diffstat (limited to 'test/notification_test.exs')
-rw-r--r-- | test/notification_test.exs | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/test/notification_test.exs b/test/notification_test.exs index 8243cfd34..a09b08675 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -217,7 +217,10 @@ defmodule Pleroma.NotificationTest do muter = Repo.get(User, muter.id) {:ok, activity} = CommonAPI.post(muted, %{status: "Hi @#{muter.nickname}"}) - assert Notification.create_notification(activity, muter) + notification = Notification.create_notification(activity, muter) + + assert notification.id + assert notification.seen end test "notification created if user is muted without notifications" do @@ -243,7 +246,10 @@ defmodule Pleroma.NotificationTest do in_reply_to_status_id: activity.id }) - assert Notification.create_notification(activity, muter) + notification = Notification.create_notification(activity, muter) + + assert notification.id + assert notification.seen end test "it disables notifications from strangers" do @@ -317,6 +323,7 @@ defmodule Pleroma.NotificationTest do {:ok, [notification]} = Notification.create_notifications(status) assert notification + refute notification.seen end test "it creates notifications when someone likes user's status with a filtered word" do @@ -330,6 +337,7 @@ defmodule Pleroma.NotificationTest do {:ok, [notification]} = Notification.create_notifications(activity_two) assert notification + refute notification.seen end end @@ -1012,6 +1020,7 @@ defmodule Pleroma.NotificationTest do [notification] = Notification.for_user(user) assert notification.activity.object + assert notification.seen end test "it doesn't return notifications for muted user with notifications", %{user: user} do |