diff --git a/lib/httparrot.ex b/lib/httparrot.ex index bc2b637..517c6e3 100644 --- a/lib/httparrot.ex +++ b/lib/httparrot.ex @@ -25,6 +25,7 @@ defmodule HTTParrot do {'/delay/:n', HTTParrot.DelayedHandler, []}, {'/html', :cowboy_static, {:priv_file, :httparrot, "html.html"}}, {'/deny', HTTParrot.DenyHandler, []}, + {'/cache', HTTParrot.CacheHandler, []}, {'/robots.txt', HTTParrot.RobotsHandler, []}, {'/base64/:value', HTTParrot.Base64Handler, []}, {'/image', HTTParrot.ImageHandler, []}, diff --git a/lib/httparrot/cache_handler.ex b/lib/httparrot/cache_handler.ex new file mode 100644 index 0000000..39941f7 --- /dev/null +++ b/lib/httparrot/cache_handler.ex @@ -0,0 +1,33 @@ +defmodule HTTParrot.CacheHandler do + @moduledoc """ + Returns 200 unless an If-Modified-Since or If-None-Match header is provided, when it returns a 304. + """ + alias HTTParrot.GeneralRequestInfo + + def init(_transport, _req, _opts) do + {:upgrade, :protocol, :cowboy_rest} + end + + def allowed_methods(req, state) do + {["GET", "HEAD", "OPTIONS"], req, state} + end + + def last_modified(req, state) do + {{{2012, 9, 21}, {22, 36, 14}}, req, state} + end + + def content_types_provided(req, state) do + {[{{"application", "json", []}, :get_json}], req, state} + end + + def get_json(req, state) do + {info, req} = GeneralRequestInfo.retrieve(req) + {response(info), req, state} + end + + defp response(info) do + info |> JSEX.encode! + end + + def terminate(_, _, _), do: :ok +end diff --git a/priv/index.html b/priv/index.html index b512ed9..27fe01f 100644 --- a/priv/index.html +++ b/priv/index.html @@ -85,6 +85,7 @@
  • /html Renders an HTML Page.
  • /robots.txt Returns some robots.txt rules.
  • /deny Denied by robots.txt file.
  • +
  • /cache 200 unless If-Modified-Since was sent, then 304.
  • /base64/:value Decodes value base64url-encoded string.
  • /image Return an image based on Accept header.
  • /websocket Echo message received through websocket.
  • diff --git a/test/cache_handler_test.exs b/test/cache_handler_test.exs new file mode 100644 index 0000000..ca6f8c2 --- /dev/null +++ b/test/cache_handler_test.exs @@ -0,0 +1,25 @@ +defmodule HTTParrot.CacheHandlerTest do + use ExUnit.Case + import :meck + import HTTParrot.CacheHandler + + setup do + new HTTParrot.GeneralRequestInfo + new JSEX + end + + teardown do + unload HTTParrot.GeneralRequestInfo + unload JSEX + 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}]) + + assert get_json(:req1, :state) == {:json, :req2, :state} + + assert validate HTTParrot.GeneralRequestInfo + assert validate JSEX + end +end