1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00
httparrot/test/base64_handler_test.exs
2019-06-30 14:44:33 +12:00

29 lines
739 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="}])
assert malformed_request(:req1, :state) == {true, :req1, :state}
assert validate(:cowboy_req)
end
test "proceeds with decoded base64 urlsafe" do
expect(:cowboy_req, :binding, [{[:value, :req1], "LytiYXNlNjQrLw"}])
assert malformed_request(:req1, :state) == {false, :req1, "/+base64+/"}
assert validate(:cowboy_req)
end
test "returns value from state" do
assert get_binary(:req, :decoded) == {:decoded, :req, :decoded}
end
end