diff --git a/lib/httparrot.ex b/lib/httparrot.ex index ec7176c..dfc1b2e 100644 --- a/lib/httparrot.ex +++ b/lib/httparrot.ex @@ -7,7 +7,9 @@ defmodule HTTParrot do {'/user-agent', HTTParrot.UserAgentHandler, []}, {'/headers', HTTParrot.HeadersHandler, []}, {'/get', HTTParrot.GetHandler, []}, - {'/post', HTTParrot.PostHandler, []}, + {'/post', HTTParrot.PHandler, []}, + {'/put', HTTParrot.PHandler, []}, + {'/patch', HTTParrot.PHandler, []}, {'/status/:code', HTTParrot.StatusCodeHandler, []}, {'/redirect-to', HTTParrot.RedirectToHandler, []}, {'/cookies', HTTParrot.CookiesHandler, []}, diff --git a/lib/httparrot/post_handler.ex b/lib/httparrot/p_handler.ex similarity index 75% rename from lib/httparrot/post_handler.ex rename to lib/httparrot/p_handler.ex index 7a1166d..056d414 100644 --- a/lib/httparrot/post_handler.ex +++ b/lib/httparrot/p_handler.ex @@ -1,12 +1,20 @@ -defmodule HTTParrot.PostHandler do +defmodule HTTParrot.PHandler do + @moduledoc """ + This REST handler will respond to POST, PATCH and PUT requests. + """ alias HTTParrot.GeneralRequestInfo def init(_transport, _req, _opts) do {:upgrade, :protocol, :cowboy_rest} end + @doc """ + When a request is made to /post, allowed_methods will return POST for example + """ def allowed_methods(req, state) do - {["POST"], req, state} + {path, req} = :cowboy_req.path(req) + path = String.slice(path, 1..-1) + {[String.upcase(path)], req, state} end def content_types_accepted(req, state) do diff --git a/test/post_handler_test.exs b/test/p_handler_test.exs similarity index 65% rename from test/post_handler_test.exs rename to test/p_handler_test.exs index 91ec36e..28c33eb 100644 --- a/test/post_handler_test.exs +++ b/test/p_handler_test.exs @@ -1,7 +1,7 @@ -defmodule HTTParrot.PostHandlerTest do +defmodule HTTParrot.PHandlerTest do use ExUnit.Case import :meck - import HTTParrot.PostHandler + import HTTParrot.PHandler setup do new HTTParrot.GeneralRequestInfo @@ -15,7 +15,19 @@ defmodule HTTParrot.PostHandlerTest do unload :cowboy_req end - test "returns json with general info and POST form data" do + Enum.each [{"/post", "POST"}, + {"/patch", "PATCH"}, + {"/put", "PUT"}], fn {path, verb} -> + test "allowed_methods return verb related to #{path}" do + expect(:cowboy_req, :path, 1, {unquote(path), :req2}) + + assert allowed_methods(:req1, :state) == {[unquote(verb)], :req2, :state} + + assert validate :cowboy_req + end + end + + test "returns json with general info and P[OST, ATCH, UT] 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}) @@ -26,7 +38,7 @@ defmodule HTTParrot.PostHandlerTest do assert validate HTTParrot.GeneralRequestInfo end - test "returns json with general info and POST JSON body data" do + test "returns json with general info and P[OST, ATCH, UT] 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})