2019-08-02 17:53:08 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-08-02 17:53:08 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-05-20 11:14:11 +00:00
|
|
|
defmodule Pleroma.Web.PleromaAPI.NotificationControllerTest do
|
2019-08-02 17:53:08 +00:00
|
|
|
use Pleroma.Web.ConnCase
|
|
|
|
|
2019-09-04 08:33:08 +00:00
|
|
|
alias Pleroma.Notification
|
2019-08-05 13:09:19 +00:00
|
|
|
alias Pleroma.Repo
|
2019-08-05 14:11:23 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-08-02 17:53:08 +00:00
|
|
|
|
|
|
|
import Pleroma.Factory
|
|
|
|
|
2019-09-04 08:33:08 +00:00
|
|
|
describe "POST /api/v1/pleroma/notifications/read" do
|
2019-12-15 19:32:42 +00:00
|
|
|
setup do: oauth_access(["write:notifications"])
|
|
|
|
|
|
|
|
test "it marks a single notification as read", %{user: user1, conn: conn} do
|
2019-09-04 08:33:08 +00:00
|
|
|
user2 = insert(:user)
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity1} = CommonAPI.post(user2, %{status: "hi @#{user1.nickname}"})
|
|
|
|
{:ok, activity2} = CommonAPI.post(user2, %{status: "hi @#{user1.nickname}"})
|
2019-09-04 08:33:08 +00:00
|
|
|
{:ok, [notification1]} = Notification.create_notifications(activity1)
|
|
|
|
{:ok, [notification2]} = Notification.create_notifications(activity2)
|
|
|
|
|
|
|
|
response =
|
|
|
|
conn
|
2020-05-22 14:15:36 +00:00
|
|
|
|> put_req_header("content-type", "application/json")
|
|
|
|
|> post("/api/v1/pleroma/notifications/read", %{id: notification1.id})
|
2020-05-19 17:52:26 +00:00
|
|
|
|> json_response_and_validate_schema(:ok)
|
2019-09-04 08:33:08 +00:00
|
|
|
|
|
|
|
assert %{"pleroma" => %{"is_seen" => true}} = response
|
|
|
|
assert Repo.get(Notification, notification1.id).seen
|
|
|
|
refute Repo.get(Notification, notification2.id).seen
|
|
|
|
end
|
|
|
|
|
2019-12-15 19:32:42 +00:00
|
|
|
test "it marks multiple notifications as read", %{user: user1, conn: conn} do
|
2019-09-04 08:33:08 +00:00
|
|
|
user2 = insert(:user)
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, _activity1} = CommonAPI.post(user2, %{status: "hi @#{user1.nickname}"})
|
|
|
|
{:ok, _activity2} = CommonAPI.post(user2, %{status: "hi @#{user1.nickname}"})
|
|
|
|
{:ok, _activity3} = CommonAPI.post(user2, %{status: "HIE @#{user1.nickname}"})
|
2019-09-04 08:33:08 +00:00
|
|
|
|
|
|
|
[notification3, notification2, notification1] = Notification.for_user(user1, %{limit: 3})
|
|
|
|
|
|
|
|
[response1, response2] =
|
|
|
|
conn
|
2020-05-22 14:15:36 +00:00
|
|
|
|> put_req_header("content-type", "application/json")
|
|
|
|
|> post("/api/v1/pleroma/notifications/read", %{max_id: notification2.id})
|
2020-05-19 17:52:26 +00:00
|
|
|
|> json_response_and_validate_schema(:ok)
|
2019-09-04 08:33:08 +00:00
|
|
|
|
|
|
|
assert %{"pleroma" => %{"is_seen" => true}} = response1
|
|
|
|
assert %{"pleroma" => %{"is_seen" => true}} = response2
|
|
|
|
assert Repo.get(Notification, notification1.id).seen
|
|
|
|
assert Repo.get(Notification, notification2.id).seen
|
|
|
|
refute Repo.get(Notification, notification3.id).seen
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it returns error when notification not found", %{conn: conn} do
|
|
|
|
response =
|
|
|
|
conn
|
2020-05-22 14:15:36 +00:00
|
|
|
|> put_req_header("content-type", "application/json")
|
|
|
|
|> post("/api/v1/pleroma/notifications/read", %{
|
|
|
|
id: 22_222_222_222_222
|
|
|
|
})
|
2020-05-19 17:52:26 +00:00
|
|
|
|> json_response_and_validate_schema(:bad_request)
|
2019-09-04 08:33:08 +00:00
|
|
|
|
|
|
|
assert response == %{"error" => "Cannot get notification"}
|
|
|
|
end
|
|
|
|
end
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|