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
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.PleromaAPIControllerTest do
|
2020-05-05 14:17:09 +00:00
|
|
|
use Oban.Testing, repo: Pleroma.Repo
|
2019-08-02 17:53:08 +00:00
|
|
|
use Pleroma.Web.ConnCase
|
|
|
|
|
|
|
|
alias Pleroma.Conversation.Participation
|
2019-09-04 08:33:08 +00:00
|
|
|
alias Pleroma.Notification
|
2019-10-02 16:19:16 +00:00
|
|
|
alias Pleroma.Object
|
2019-08-05 13:09:19 +00:00
|
|
|
alias Pleroma.Repo
|
2020-05-05 14:17:09 +00:00
|
|
|
alias Pleroma.Tests.ObanHelpers
|
2019-10-01 21:37:08 +00:00
|
|
|
alias Pleroma.User
|
2019-08-05 14:11:23 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-08-02 17:53:08 +00:00
|
|
|
|
|
|
|
import Pleroma.Factory
|
|
|
|
|
2020-02-07 13:52:13 +00:00
|
|
|
test "PUT /api/v1/pleroma/statuses/:id/reactions/:emoji", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "#cofe"})
|
2020-02-07 13:52:13 +00:00
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> assign(:user, other_user)
|
|
|
|
|> assign(:token, insert(:oauth_token, user: other_user, scopes: ["write:statuses"]))
|
|
|
|
|> put("/api/v1/pleroma/statuses/#{activity.id}/reactions/☕")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
# We return the status, but this our implementation detail.
|
|
|
|
assert %{"id" => id} = result
|
|
|
|
assert to_string(activity.id) == id
|
|
|
|
|
|
|
|
assert result["pleroma"]["emoji_reactions"] == [
|
|
|
|
%{"name" => "☕", "count" => 1, "me" => true}
|
2020-01-29 10:39:06 +00:00
|
|
|
]
|
2019-09-04 17:20:35 +00:00
|
|
|
end
|
|
|
|
|
2020-02-07 13:52:13 +00:00
|
|
|
test "DELETE /api/v1/pleroma/statuses/:id/reactions/:emoji", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "#cofe"})
|
2020-05-07 16:53:34 +00:00
|
|
|
{:ok, _reaction_activity} = CommonAPI.react_with_emoji(activity.id, other_user, "☕")
|
2020-05-05 14:17:09 +00:00
|
|
|
|
|
|
|
ObanHelpers.perform_all()
|
2020-02-07 13:52:13 +00:00
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> assign(:user, other_user)
|
|
|
|
|> assign(:token, insert(:oauth_token, user: other_user, scopes: ["write:statuses"]))
|
|
|
|
|> delete("/api/v1/pleroma/statuses/#{activity.id}/reactions/☕")
|
|
|
|
|
|
|
|
assert %{"id" => id} = json_response(result, 200)
|
|
|
|
assert to_string(activity.id) == id
|
|
|
|
|
2020-05-05 14:17:09 +00:00
|
|
|
ObanHelpers.perform_all()
|
|
|
|
|
|
|
|
object = Object.get_by_ap_id(activity.data["object"])
|
2020-02-07 13:52:13 +00:00
|
|
|
|
|
|
|
assert object.data["reaction_count"] == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
test "GET /api/v1/pleroma/statuses/:id/reactions", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
doomed_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "#cofe"})
|
2020-02-07 13:52:13 +00:00
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/statuses/#{activity.id}/reactions")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert result == []
|
|
|
|
|
2020-05-05 10:28:28 +00:00
|
|
|
{:ok, _} = CommonAPI.react_with_emoji(activity.id, other_user, "🎅")
|
|
|
|
{:ok, _} = CommonAPI.react_with_emoji(activity.id, doomed_user, "🎅")
|
2020-02-07 13:52:13 +00:00
|
|
|
|
|
|
|
User.perform(:delete, doomed_user)
|
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/statuses/#{activity.id}/reactions")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
[%{"name" => "🎅", "count" => 1, "accounts" => [represented_user], "me" => false}] = result
|
|
|
|
|
|
|
|
assert represented_user["id"] == other_user.id
|
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> assign(:user, other_user)
|
|
|
|
|> assign(:token, insert(:oauth_token, user: other_user, scopes: ["read:statuses"]))
|
|
|
|
|> get("/api/v1/pleroma/statuses/#{activity.id}/reactions")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert [%{"name" => "🎅", "count" => 1, "accounts" => [_represented_user], "me" => true}] =
|
2020-01-29 10:39:06 +00:00
|
|
|
result
|
2019-09-12 16:48:25 +00:00
|
|
|
end
|
|
|
|
|
2020-02-19 16:16:45 +00:00
|
|
|
test "GET /api/v1/pleroma/statuses/:id/reactions/:emoji", %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "#cofe"})
|
2020-02-19 16:16:45 +00:00
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/statuses/#{activity.id}/reactions/🎅")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert result == []
|
|
|
|
|
2020-05-05 10:28:28 +00:00
|
|
|
{:ok, _} = CommonAPI.react_with_emoji(activity.id, other_user, "🎅")
|
|
|
|
{:ok, _} = CommonAPI.react_with_emoji(activity.id, other_user, "☕")
|
2020-02-19 16:16:45 +00:00
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/statuses/#{activity.id}/reactions/🎅")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
[%{"name" => "🎅", "count" => 1, "accounts" => [represented_user], "me" => false}] = result
|
|
|
|
|
|
|
|
assert represented_user["id"] == other_user.id
|
|
|
|
end
|
|
|
|
|
2019-12-15 19:32:42 +00:00
|
|
|
test "/api/v1/pleroma/conversations/:id" do
|
2019-08-12 11:58:04 +00:00
|
|
|
user = insert(:user)
|
2019-12-15 19:32:42 +00:00
|
|
|
%{user: other_user, conn: conn} = oauth_access(["read:statuses"])
|
2019-08-12 11:58:04 +00:00
|
|
|
|
|
|
|
{:ok, _activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "Hi @#{other_user.nickname}!", visibility: "direct"})
|
2019-08-12 11:58:04 +00:00
|
|
|
|
|
|
|
[participation] = Participation.for_user(other_user)
|
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/conversations/#{participation.id}")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert result["id"] == participation.id |> to_string()
|
|
|
|
end
|
|
|
|
|
2019-12-15 19:32:42 +00:00
|
|
|
test "/api/v1/pleroma/conversations/:id/statuses" do
|
2019-08-02 17:53:08 +00:00
|
|
|
user = insert(:user)
|
2019-12-15 19:32:42 +00:00
|
|
|
%{user: other_user, conn: conn} = oauth_access(["read:statuses"])
|
2019-08-02 17:53:08 +00:00
|
|
|
third_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, _activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "Hi @#{third_user.nickname}!", visibility: "direct"})
|
2019-08-02 17:53:08 +00:00
|
|
|
|
|
|
|
{:ok, activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "Hi @#{other_user.nickname}!", visibility: "direct"})
|
2019-08-02 17:53:08 +00:00
|
|
|
|
|
|
|
[participation] = Participation.for_user(other_user)
|
|
|
|
|
|
|
|
{:ok, activity_two} =
|
|
|
|
CommonAPI.post(other_user, %{
|
2020-05-12 19:59:26 +00:00
|
|
|
status: "Hi!",
|
|
|
|
in_reply_to_status_id: activity.id,
|
|
|
|
in_reply_to_conversation_id: participation.id
|
2019-08-02 17:53:08 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/conversations/#{participation.id}/statuses")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert length(result) == 2
|
|
|
|
|
|
|
|
id_one = activity.id
|
|
|
|
id_two = activity_two.id
|
|
|
|
assert [%{"id" => ^id_one}, %{"id" => ^id_two}] = result
|
2020-03-24 16:18:27 +00:00
|
|
|
|
|
|
|
{:ok, %{id: id_three}} =
|
|
|
|
CommonAPI.post(other_user, %{
|
2020-05-12 19:59:26 +00:00
|
|
|
status: "Bye!",
|
|
|
|
in_reply_to_status_id: activity.id,
|
|
|
|
in_reply_to_conversation_id: participation.id
|
2020-03-24 16:18:27 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
assert [%{"id" => ^id_two}, %{"id" => ^id_three}] =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/conversations/#{participation.id}/statuses?limit=2")
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
assert [%{"id" => ^id_three}] =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/pleroma/conversations/#{participation.id}/statuses?min_id=#{id_two}")
|
|
|
|
|> json_response(:ok)
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|
2019-08-05 13:09:19 +00:00
|
|
|
|
2019-12-15 19:32:42 +00:00
|
|
|
test "PATCH /api/v1/pleroma/conversations/:id" do
|
|
|
|
%{user: user, conn: conn} = oauth_access(["write:conversations"])
|
2019-08-05 13:09:19 +00:00
|
|
|
other_user = insert(:user)
|
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, _activity} = CommonAPI.post(user, %{status: "Hi", visibility: "direct"})
|
2019-08-05 13:09:19 +00:00
|
|
|
|
|
|
|
[participation] = Participation.for_user(user)
|
|
|
|
|
|
|
|
participation = Repo.preload(participation, :recipients)
|
|
|
|
|
2019-10-01 21:37:08 +00:00
|
|
|
user = User.get_cached_by_id(user.id)
|
2019-08-05 13:09:19 +00:00
|
|
|
assert [user] == participation.recipients
|
|
|
|
assert other_user not in participation.recipients
|
|
|
|
|
|
|
|
result =
|
|
|
|
conn
|
|
|
|
|> patch("/api/v1/pleroma/conversations/#{participation.id}", %{
|
|
|
|
"recipients" => [user.id, other_user.id]
|
|
|
|
})
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert result["id"] == participation.id |> to_string
|
|
|
|
|
2019-08-12 10:51:08 +00:00
|
|
|
[participation] = Participation.for_user(user)
|
|
|
|
participation = Repo.preload(participation, :recipients)
|
2019-08-05 13:09:19 +00:00
|
|
|
|
2019-08-12 10:51:08 +00:00
|
|
|
assert user in participation.recipients
|
|
|
|
assert other_user in participation.recipients
|
2019-08-05 13:09:19 +00:00
|
|
|
end
|
2019-09-04 08:33:08 +00:00
|
|
|
|
2019-12-15 19:32:42 +00:00
|
|
|
test "POST /api/v1/pleroma/conversations/read" do
|
2019-10-11 03:40:58 +00:00
|
|
|
user = insert(:user)
|
2020-04-06 07:20:44 +00:00
|
|
|
%{user: other_user, conn: conn} = oauth_access(["write:conversations"])
|
2019-10-11 03:40:58 +00:00
|
|
|
|
|
|
|
{:ok, _activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "Hi @#{other_user.nickname}", visibility: "direct"})
|
2019-10-11 03:40:58 +00:00
|
|
|
|
|
|
|
{:ok, _activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "Hi @#{other_user.nickname}", visibility: "direct"})
|
2019-10-11 03:40:58 +00:00
|
|
|
|
|
|
|
[participation2, participation1] = Participation.for_user(other_user)
|
|
|
|
assert Participation.get(participation2.id).read == false
|
|
|
|
assert Participation.get(participation1.id).read == false
|
2019-10-20 19:29:56 +00:00
|
|
|
assert User.get_cached_by_id(other_user.id).unread_conversation_count == 2
|
2019-10-11 03:40:58 +00:00
|
|
|
|
|
|
|
[%{"unread" => false}, %{"unread" => false}] =
|
|
|
|
conn
|
|
|
|
|> post("/api/v1/pleroma/conversations/read", %{})
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
[participation2, participation1] = Participation.for_user(other_user)
|
|
|
|
assert Participation.get(participation2.id).read == true
|
|
|
|
assert Participation.get(participation1.id).read == true
|
2019-10-20 19:29:56 +00:00
|
|
|
assert User.get_cached_by_id(other_user.id).unread_conversation_count == 0
|
2019-10-11 03:40:58 +00:00
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|> post("/api/v1/pleroma/notifications/read", %{"id" => "#{notification1.id}"})
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
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
|
|
|
|
|> post("/api/v1/pleroma/notifications/read", %{"max_id" => "#{notification2.id}"})
|
|
|
|
|> json_response(:ok)
|
|
|
|
|
|
|
|
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
|
|
|
|
|> post("/api/v1/pleroma/notifications/read", %{"id" => "22222222222222"})
|
|
|
|
|> json_response(:bad_request)
|
|
|
|
|
|
|
|
assert response == %{"error" => "Cannot get notification"}
|
|
|
|
end
|
|
|
|
end
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|