forked from AkkomaGang/akkoma
Validate admin making report doesn't get their own report notification, but other admins do
This commit is contained in:
parent
76f732766b
commit
5bb5949048
1 changed files with 14 additions and 0 deletions
|
@ -45,6 +45,20 @@ test "creates a notification for a report" do
|
||||||
assert notification.type == "pleroma:report"
|
assert notification.type == "pleroma:report"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "suppresses notification to reporter if reporter is an admin" do
|
||||||
|
reporting_admin = insert(:user, is_admin: true)
|
||||||
|
reported_user = insert(:user)
|
||||||
|
other_admin = insert(:user, is_admin: true)
|
||||||
|
|
||||||
|
{:ok, activity} = CommonAPI.report(reporting_admin, %{account_id: reported_user.id})
|
||||||
|
|
||||||
|
{:ok, [notification]} = Notification.create_notifications(activity)
|
||||||
|
|
||||||
|
refute notification.user_id == reporting_admin.id
|
||||||
|
assert notification.user_id == other_admin.id
|
||||||
|
assert notification.type == "pleroma:report"
|
||||||
|
end
|
||||||
|
|
||||||
test "creates a notification for an emoji reaction" do
|
test "creates a notification for an emoji reaction" do
|
||||||
user = insert(:user)
|
user = insert(:user)
|
||||||
other_user = insert(:user)
|
other_user = insert(:user)
|
||||||
|
|
Loading…
Reference in a new issue