1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-06 00:32:34 -04:00
httparrot/test/base64_handler_test.exs
2017-03-14 10:13:08 +08:00

29 lines
757 B
Elixir

defmodule HTTParrot.Base64HandlerTest do
use ExUnit.Case
import :meck
import HTTParrot.Base64Handler
setup do
new :cowboy_req
on_exit fn -> unload() end
:ok
end
test "halts with error" do
expect(:cowboy_req, :binding, [{[:value, :req1], {"I=", :req2}}])
assert malformed_request(:req1, :state) == {true, :req2, :state}
assert validate(:cowboy_req)
end
test "proceeds with decoded base64 urlsafe" do
expect(:cowboy_req, :binding, [{[:value, :req1], {"LytiYXNlNjQrLw", :req2}}])
assert malformed_request(:req1, :state) == {false, :req2, "/+base64+/"}
assert validate(:cowboy_req)
end
test "returns value from state" do
assert get_binary(:req, :decoded) == {:decoded, :req, :decoded}
end
end