Explain the encode-decode roundtrip

This commit is contained in:
tusooa 2023-07-18 18:13:49 -04:00
parent 3e7d2e29b3
commit eb33a03d0a
No known key found for this signature in database
GPG key ID: 42AEC43D48433C51

View file

@ -38,6 +38,13 @@ defmodule Pleroma.Integration.MastodonWebsocketTest do
end
end
# Turns atom keys to strings
defp atom_key_to_string(json) do
json
|> Jason.encode!()
|> Jason.decode!()
end
test "refuses invalid requests" do
capture_log(fn ->
assert {:error, %WebSockex.RequestError{code: 404}} = start_socket("?stream=ncjdk")
@ -80,8 +87,7 @@ defmodule Pleroma.Integration.MastodonWebsocketTest do
view_json =
Pleroma.Web.MastodonAPI.StatusView.render("show.json", activity: activity, for: nil)
|> Jason.encode!()
|> Jason.decode!()
|> atom_key_to_string()
assert json == view_json
end