1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Add '/post'

TODO:
- [] File/upload data
- [] Invalid JSON
This commit is contained in:
Eduardo Gurgel 2013-12-30 17:23:14 -03:00
parent 859133ba58
commit 2f19e015b6
3 changed files with 78 additions and 0 deletions

View file

@ -7,6 +7,7 @@ defmodule HTTParrot do
{'/user-agent', HTTParrot.UserAgentHandler, []},
{'/headers', HTTParrot.HeadersHandler, []},
{'/get', HTTParrot.GetHandler, []},
{'/post', HTTParrot.PostHandler, []},
{'/status/:code', HTTParrot.StatusCodeHandler, []},
{'/redirect-to', HTTParrot.RedirectToHandler, []},
{'/html', :cowboy_static, {:priv_file, :httparrot, "html.html"}} ] }

View file

@ -0,0 +1,37 @@
defmodule HTTParrot.PostHandler do
alias HTTParrot.GeneralRequestInfo
def init(_transport, _req, _opts) do
{:upgrade, :protocol, :cowboy_rest}
end
def allowed_methods(req, state) do
{["POST"], req, state}
end
def content_types_accepted(req, state) do
{[{{"application", "json", :*}, :post_json},
{{"application", "x-www-form-urlencoded", :*}, :post_form}], req, state}
end
def post_form(req, state) do
{:ok, body, req} = :cowboy_req.body_qs(req)
post(req, [form: body, data: "", json: nil])
end
def post_json(req, state) do
{:ok, body, req} = :cowboy_req.body(req)
post(req, [form: [{}], data: body, json: JSEX.decode!(body)])
end
defp post(req, body) do
{info, req} = GeneralRequestInfo.retrieve(req)
req = :cowboy_req.set_resp_body(response(info, body), req)
{true, req, nil}
end
defp response(info, body) do
info ++ body |> JSEX.encode!
end
def terminate(_, _, _), do: :ok
end

View file

@ -0,0 +1,40 @@
defmodule HTTParrot.PostHandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.PostHandler
setup do
new HTTParrot.GeneralRequestInfo
new JSEX
new :cowboy_req
end
teardown do
unload HTTParrot.GeneralRequestInfo
unload JSEX
unload :cowboy_req
end
test "returns json with general info and POST form data" do
expect(:cowboy_req, :body_qs, 1, {:ok, :body_qs, :req2})
expect(:cowboy_req, :set_resp_body, [{[:response, :req3], :req4}])
expect(HTTParrot.GeneralRequestInfo, :retrieve, 1, {[:info], :req3})
expect(JSEX, :encode!, [{[[:info, {:form, :body_qs}, {:data, ""}, {:json, nil}]], :response}])
assert post_form(:req1, :state) == {true, :req4, nil}
assert validate HTTParrot.GeneralRequestInfo
end
test "returns json with general info and POST JSON body data" do
expect(:cowboy_req, :body, 1, {:ok, :body, :req2})
expect(:cowboy_req, :set_resp_body, [{[:response, :req3], :req4}])
expect(HTTParrot.GeneralRequestInfo, :retrieve, 1, {[:info], :req3})
expect(JSEX, :decode!, 1, :decoded_json)
expect(JSEX, :encode!, [{[[:info, {:form, [{}]}, {:data, :body}, {:json, :decoded_json}]], :response}])
assert post_json(:req1, :state) == {true, :req4, nil}
assert validate HTTParrot.GeneralRequestInfo
end
end