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
2024-06-25 21:23:13 +12:00

29 lines
741 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