pleroma/test/web/admin_api/controllers/chat_controller_test.exs

129 lines
3.7 KiB
Elixir
Raw Normal View History

2020-09-01 02:56:05 +02:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.AdminAPI.ChatControllerTest do
use Pleroma.Web.ConnCase
import Pleroma.Factory
2020-09-02 02:39:34 +02:00
alias Pleroma.Chat
2020-09-02 03:40:36 +02:00
alias Pleroma.Chat.MessageReference
2020-09-01 02:56:05 +02:00
alias Pleroma.Config
2020-09-02 03:40:36 +02:00
alias Pleroma.Object
2020-09-01 02:56:05 +02:00
alias Pleroma.ModerationLog
alias Pleroma.Repo
2020-09-02 02:39:34 +02:00
alias Pleroma.Web.CommonAPI
2020-09-01 02:56:05 +02:00
setup do
admin = insert(:user, is_admin: true)
token = insert(:oauth_admin_token, user: admin)
conn =
build_conn()
|> assign(:user, admin)
|> assign(:token, token)
{:ok, %{admin: admin, token: token, conn: conn}}
end
describe "DELETE /api/pleroma/admin/chats/:id/messages/:message_id" do
2020-09-02 03:40:36 +02:00
test "it deletes a message from the chat", %{conn: conn, admin: admin} do
user = insert(:user)
recipient = insert(:user)
{:ok, message} =
CommonAPI.post_chat_message(user, recipient, "Hello darkness my old friend")
object = Object.normalize(message, false)
chat = Chat.get(user.id, recipient.ap_id)
2020-09-01 02:56:05 +02:00
2020-09-02 03:40:36 +02:00
cm_ref = MessageReference.for_chat_and_object(chat, object)
2020-09-01 02:56:05 +02:00
2020-09-02 03:40:36 +02:00
result =
conn
|> put_req_header("content-type", "application/json")
|> delete("/api/pleroma/admin/chats/#{chat.id}/messages/#{cm_ref.id}")
|> json_response_and_validate_schema(200)
2020-09-01 02:56:05 +02:00
log_entry = Repo.one(ModerationLog)
assert ModerationLog.get_log_entry_message(log_entry) ==
2020-09-02 03:40:36 +02:00
"@#{admin.nickname} deleted chat message ##{cm_ref.id}"
2020-09-01 02:56:05 +02:00
2020-09-02 03:40:36 +02:00
assert result["id"] == cm_ref.id
refute MessageReference.get_by_id(cm_ref.id)
assert %{data: %{"type" => "Tombstone"}} = Object.get_by_id(object.id)
2020-09-01 02:56:05 +02:00
end
end
2020-09-02 02:39:34 +02:00
describe "GET /api/pleroma/admin/chats/:id/messages" do
test "it paginates", %{conn: conn} do
user = insert(:user)
recipient = insert(:user)
Enum.each(1..30, fn _ ->
{:ok, _} = CommonAPI.post_chat_message(user, recipient, "hey")
end)
chat = Chat.get(user.id, recipient.ap_id)
result =
conn
|> get("/api/pleroma/admin/chats/#{chat.id}/messages")
|> json_response_and_validate_schema(200)
assert length(result) == 20
result =
conn
|> get("/api/pleroma/admin/chats/#{chat.id}/messages?max_id=#{List.last(result)["id"]}")
|> json_response_and_validate_schema(200)
assert length(result) == 10
end
test "it returns the messages for a given chat", %{conn: conn} do
user = insert(:user)
other_user = insert(:user)
third_user = insert(:user)
{:ok, _} = CommonAPI.post_chat_message(user, other_user, "hey")
{:ok, _} = CommonAPI.post_chat_message(user, third_user, "hey")
{:ok, _} = CommonAPI.post_chat_message(user, other_user, "how are you?")
{:ok, _} = CommonAPI.post_chat_message(other_user, user, "fine, how about you?")
chat = Chat.get(user.id, other_user.ap_id)
result =
conn
|> get("/api/pleroma/admin/chats/#{chat.id}/messages")
|> json_response_and_validate_schema(200)
result
|> Enum.each(fn message ->
assert message["chat_id"] == chat.id |> to_string()
end)
assert length(result) == 3
end
end
2020-09-02 02:49:46 +02:00
describe "GET /api/pleroma/admin/chats/:id" do
test "it returns a chat", %{conn: conn} do
user = insert(:user)
other_user = insert(:user)
{:ok, chat} = Chat.get_or_create(user.id, other_user.ap_id)
result =
conn
|> get("/api/pleroma/admin/chats/#{chat.id}")
|> json_response_and_validate_schema(200)
assert result["id"] == to_string(chat.id)
end
end
2020-09-01 02:56:05 +02:00
end