Test that server will disconnect websocket upon token revocation

This commit is contained in:
Tusooa Zhu 2022-08-19 14:09:42 -04:00
commit 3522852c61
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
2 changed files with 23 additions and 1 deletions

View file

@ -41,6 +41,12 @@ defmodule Pleroma.Integration.WebsocketClient do
{:ok, state}
end
@impl true
def handle_disconnect(conn_status, state) do
send(state.sender, {:close, conn_status})
{:ok, state}
end
@doc false
@impl true
def handle_info({:text, msg}, state) do