diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/pleroma/web/pleroma_api/controllers/chat_controller_test.exs | 22 | 
1 files changed, 22 insertions, 0 deletions
| diff --git a/test/pleroma/web/pleroma_api/controllers/chat_controller_test.exs b/test/pleroma/web/pleroma_api/controllers/chat_controller_test.exs index fa6b9db65..b0498df2b 100644 --- a/test/pleroma/web/pleroma_api/controllers/chat_controller_test.exs +++ b/test/pleroma/web/pleroma_api/controllers/chat_controller_test.exs @@ -343,6 +343,28 @@ defmodule Pleroma.Web.PleromaAPI.ChatControllerTest do        assert length(result) == 0      end +    test "it does not return chats with users you muted", %{conn: conn, user: user} do +      recipient = insert(:user) + +      {:ok, _} = Chat.get_or_create(user.id, recipient.ap_id) + +      result = +        conn +        |> get("/api/v1/pleroma/chats") +        |> json_response_and_validate_schema(200) + +      assert length(result) == 1 + +      User.mute(user, recipient) + +      result = +        conn +        |> get("/api/v1/pleroma/chats") +        |> json_response_and_validate_schema(200) + +      assert length(result) == 0 +    end +      test "it returns all chats", %{conn: conn, user: user} do        Enum.each(1..30, fn _ ->          recipient = insert(:user) | 
