mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
23 lines
506 B
Elixir
23 lines
506 B
Elixir
defmodule HTTParrot.IPHandlerTest do
|
|
use ExUnit.Case
|
|
import :meck
|
|
import HTTParrot.IPHandler
|
|
|
|
setup do
|
|
new :cowboy_req
|
|
new JSX
|
|
on_exit fn -> unload end
|
|
:ok
|
|
end
|
|
|
|
test "returns prettified json with origin" do
|
|
ip = {127, 1, 2, 3}
|
|
expect(:cowboy_req, :peer, 1, {{ip, :host}, :req2})
|
|
expect(JSX, :encode!, [{[[origin: "127.1.2.3"]], :json}])
|
|
|
|
assert get_json(:req1, :state) == {:json, :req2, :state}
|
|
|
|
assert validate :cowboy_req
|
|
assert validate JSX
|
|
end
|
|
end
|