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

Add '/redirect/:n'

This commit is contained in:
Eduardo Gurgel 2014-01-07 21:01:10 -03:00
parent 0e3168b4bb
commit bd1567d573
4 changed files with 90 additions and 1 deletions

View file

@ -12,6 +12,7 @@ defmodule HTTParrot do
{'/patch', HTTParrot.PHandler, []},
{'/delete', HTTParrot.DeleteHandler, []},
{'/status/:code', HTTParrot.StatusCodeHandler, []},
{'/redirect/:n', HTTParrot.RedirectHandler, []},
{'/redirect-to', HTTParrot.RedirectToHandler, []},
{'/cookies', HTTParrot.CookiesHandler, []},
{'/cookies/set', HTTParrot.SetCookiesHandler, []},

View file

@ -9,7 +9,7 @@ defmodule HTTParrot.GetHandler do
end
def allowed_methods(req, state) do
{["GET"], req, state}
{["GET", "HEAD", "OPTIONS"], req, state}
end
def content_types_provided(req, state) do

View file

@ -0,0 +1,34 @@
defmodule HTTParrot.RedirectHandler do
@moduledoc """
Redirects to the foo URL.
"""
def init(_transport, _req, _opts) do
{:upgrade, :protocol, :cowboy_rest}
end
def allowed_methods(req, state) do
{["GET", "HEAD", "OPTIONS"], req, state}
end
def malformed_request(req, state) do
{n, req} = :cowboy_req.binding(:n, req)
try do
n = n |> binary_to_integer |> max(1)
{false, req, n}
rescue
ArgumentError -> {true, req, state}
end
end
def resource_exists(req, state), do: {false, req, state}
def previously_existed(req, state), do: {true, req, state}
def moved_temporarily(req, n) do
{host_url, req} = :cowboy_req.host_url(req)
url = if n > 1, do: "/redirect/#{n-1}", else: "/get"
{{true, host_url <> url}, req, nil}
end
def terminate(_, _, _), do: :ok
end

View file

@ -0,0 +1,54 @@
defmodule HTTParrot.RedirectHandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.RedirectHandler
setup do
new :cowboy_req
end
teardown do
unload :cowboy_req
end
test "malformed_request returns false if it's not an integer" do
expect(:cowboy_req, :binding, [{[:n, :req1], {"a2B=", :req2}}])
assert malformed_request(:req1, :state) == {true, :req2, :state}
assert validate :cowboy_req
end
test "malformed_request returns false if it's an integer" do
expect(:cowboy_req, :binding, [{[:n, :req1], {"2", :req2}}])
assert malformed_request(:req1, :state) == {false, :req2, 2}
assert validate :cowboy_req
end
test "malformed_request returns 1 if 'n' is less than 1" do
expect(:cowboy_req, :binding, [{[:n, :req1], {"0", :req2}}])
assert malformed_request(:req1, :state) == {false, :req2, 1}
assert validate :cowboy_req
end
test "moved_temporarily returns 'redirect/n-1' if n > 1" do
expect(:cowboy_req, :host_url, 1, {"host", :req2})
assert moved_temporarily(:req1, 4) == {{true, "host/redirect/3"}, :req2, nil}
assert validate :cowboy_req
end
test "moved_temporarily returns '/get' if n = 1" do
expect(:cowboy_req, :host_url, 1, {"host", :req2})
assert moved_temporarily(:req1, 1) == {{true, "host/get"}, :req2, nil}
assert validate :cowboy_req
end
end