X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fnotification_test.exs;h=49a79b2d380c266a073d3e519618a1b2f26bb7dc;hb=10f452ad1feae9a882b6dc4cd35e09adb7e78208;hp=04bf5b41aaf62883934167a3cca48978c7b658c8;hpb=6875ccb6bfcc5ae62db26d38c3d5eac4c6f8706a;p=akkoma diff --git a/test/notification_test.exs b/test/notification_test.exs index 04bf5b41a..49a79b2d3 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -43,6 +43,9 @@ defmodule Pleroma.NotificationTest do assert notified_ids == [other_user.id, third_user.id] assert notification.activity_id == activity.id assert other_notification.activity_id == activity.id + + assert [%Pleroma.Marker{unread_count: 2}] = + Pleroma.Marker.get_markers(other_user, ["notifications"]) end test "it creates a notification for subscribed users" do @@ -334,6 +337,16 @@ defmodule Pleroma.NotificationTest do assert n1.seen == true assert n2.seen == true assert n3.seen == false + + assert %Pleroma.Marker{} = + m = + Pleroma.Repo.get_by( + Pleroma.Marker, + user_id: other_user.id, + timeline: "notifications" + ) + + assert m.last_read_id == to_string(n2.id) end end