1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00
httparrot/test/gzip_handler_test.exs
Eduardo Gurgel dac364cd7d Add /gzip endpoint
It closes #6
2014-11-27 22:05:32 +13:00

27 lines
717 B
Elixir

defmodule HTTParrot.GzipHandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.GzipHandler
setup do
new HTTParrot.GeneralRequestInfo
new JSEX
on_exit fn -> unload end
:ok
end
test "returns prettified json with query values, headers, url and origin" do
expect(HTTParrot.GeneralRequestInfo, :retrieve, 1, {:info, :req2})
expect(JSEX, :encode!, [{[:info], :json}])
expect(JSEX, :prettify!, [{[:json], "json"}])
expect(:cowboy_req, :set_resp_header, 3, :req3)
body = :zlib.gzip("json")
assert get_json(:req1, :state) == {body, :req3, :state}
assert validate HTTParrot.GeneralRequestInfo
assert validate JSEX
assert validate :cowboy_req
end
end