1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00
httparrot/test/get_handler_test.exs
Eduardo Gurgel 859133ba58 Extract general stuff from /get /post /delete /put response
GeneralRequestInfo will take care of it
2013-12-30 17:22:19 -03:00

25 lines
825 B
Elixir

defmodule HTTParrot.GetHandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.GetHandler
setup do
new HTTParrot.GeneralRequestInfo
end
teardown do
unload HTTParrot.GeneralRequestInfo
end
test "returns prettified json with query values, headers, url and origin" do
qs_vals = [{"a", "b"}]
headers = [header1: "value 1", header2: "value 2"]
url = "http://localhost/get?a=b"
ip = "127.1.2.3"
expect(HTTParrot.GeneralRequestInfo, :retrieve, 1, {[args: qs_vals, headers: headers, url: url, origin: ip], :req2})
assert get_json(:req1, :state) == {"{\"args\":{\"a\":\"b\"},\"headers\":{\"header1\":\"value 1\",\"header2\":\"value 2\"},\"url\":\"http://localhost/get?a=b\",\"origin\":\"127.1.2.3\"}", :req2, :state}
assert validate HTTParrot.GeneralRequestInfo
end
end