1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00
httparrot/test/httparrot_test.exs
2024-06-25 21:23:13 +12:00

24 lines
642 B
Elixir

defmodule HTTParrotTest do
use ExUnit.Case
import :meck
import HTTParrot
setup do
new(:cowboy_req)
on_exit(fn -> unload() end)
:ok
end
test "'prettify_json' prettifies body response if it's a JSON" do
expect(:cowboy_req, :reply, [
{[:status, %{"content-length" => ~c"14"}, "{\n \"a\": \"b\"\n}", :req1], :req2}
])
assert prettify_json(:status, %{"content-length" => ~c"12"}, "{\"a\":\"b\"}", :req1) == :req2
assert validate(:cowboy_req)
end
test "'prettify_json' does nothing if body is not a JSON" do
assert prettify_json(:status, :headers, "<xml></xml>", :req1) == :req1
end
end