mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
Add tests to 'prettify_json' onresponse hook
This commit is contained in:
parent
c3eb62d2c6
commit
62250a5ec2
1 changed files with 25 additions and 0 deletions
25
test/httparrot_test.exs
Normal file
25
test/httparrot_test.exs
Normal file
|
@ -0,0 +1,25 @@
|
|||
defmodule HTTParrotTest do
|
||||
use ExUnit.Case
|
||||
import :meck
|
||||
import HTTParrot
|
||||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
end
|
||||
|
||||
test "'prettify_json' prettifies body response if it's a JSON" do
|
||||
expect(:cowboy_req, :reply, [{[:status, [{"content-length", '14'}], "{\n \"a\": \"b\"\n}", :req1], {:ok, :req2}}])
|
||||
assert prettify_json(:status, [{"content-length", '12'}], "{\"a\":\"b\"}", :req1) == :req2
|
||||
assert validate :cowboy_req
|
||||
end
|
||||
|
||||
test "'prettify_json' does nothing if body is not a JSON" do
|
||||
expect(:cowboy_req, :reply, [{[:status, :headers, "<xml></xml>", :req1], {:ok, :req2}}])
|
||||
assert prettify_json(:status, :headers, "<xml></xml>", :req1) == :req2
|
||||
assert validate :cowboy_req
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue