logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/
commit: 3e4768efca88124b3ae418d41da923c428598275
parent b389b85d7760d9c275b2584e0e99bff4f0265222
Author: Mark Felder <feld@feld.me>
Date:   Sun,  4 Aug 2024 13:59:13 -0400

Revert "Remove invalid test"

This reverts commit d0f4b2b02fc3aee3f08239d9c188ca5a2e8ad482.

Diffstat:

Mtest/pleroma/integration/mastodon_websocket_test.exs11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/test/pleroma/integration/mastodon_websocket_test.exs b/test/pleroma/integration/mastodon_websocket_test.exs @@ -268,6 +268,17 @@ defmodule Pleroma.Integration.MastodonWebsocketTest do end) end + test "accepts valid token on Sec-WebSocket-Protocol header", %{token: token} do + assert {:ok, _} = start_socket("?stream=user", [{"Sec-WebSocket-Protocol", token.token}]) + + capture_log(fn -> + assert {:error, %WebSockex.RequestError{code: 401}} = + start_socket("?stream=user", [{"Sec-WebSocket-Protocol", "I am a friend"}]) + + Process.sleep(30) + end) + end + test "accepts valid token on client-sent event", %{token: token} do assert {:ok, pid} = start_socket()