mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
Update Elixir 0.14.1
This commit is contained in:
parent
be5058525c
commit
296e58a3b5
23 changed files with 45 additions and 102 deletions
|
@ -7,7 +7,7 @@ otp_release:
|
|||
install: mix deps.get
|
||||
before_install:
|
||||
- mkdir -p vendor/elixir
|
||||
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.14.0/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
|
||||
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.14.1/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
|
||||
- export PATH="$PATH:$PWD/vendor/elixir/bin"
|
||||
- export MIX_ENV=test
|
||||
- mix local.hex --force
|
||||
|
|
2
mix.exs
2
mix.exs
|
@ -5,7 +5,7 @@ defmodule Httparrot.Mixfile do
|
|||
[ app: :httparrot,
|
||||
version: "0.2.1",
|
||||
name: "HTTParrot",
|
||||
elixir: "~> 0.14.0",
|
||||
elixir: "~> 0.14.1",
|
||||
deps: deps ]
|
||||
end
|
||||
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.Base64HandlerTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "halts with error" do
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.BasicAuthHandlerTest do
|
|||
setup do
|
||||
new :cowboy_req
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "is_authorized returns true if user and passwd match" do
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.CacheHandlerTest do
|
|||
setup do
|
||||
new HTTParrot.GeneralRequestInfo
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload HTTParrot.GeneralRequestInfo
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "returns prettified json with query values, headers, url and origin" do
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.CookiesHandlerTest do
|
|||
setup do
|
||||
new :cowboy_req
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "returns a JSON with all the cookies o/" do
|
||||
|
|
|
@ -7,12 +7,8 @@ defmodule HTTParrot.DelayedHandlerTest do
|
|||
new HTTParrot.GeneralRequestInfo
|
||||
new JSEX
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload HTTParrot.GeneralRequestInfo
|
||||
unload JSEX
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "malformed_request returns false if it's not an integer" do
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.DeleteCookiesHandlerTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "delete cookies and redirect to /cookies " do
|
||||
|
|
|
@ -7,12 +7,8 @@ defmodule HTTParrot.DeleteHandlerTest do
|
|||
new :cowboy_req
|
||||
new HTTParrot.GeneralRequestInfo
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload HTTParrot.GeneralRequestInfo
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "returns prettified json with query values, headers, url and origin" do
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.GeneralRequestInfoTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
doctest HTTParrot.GeneralRequestInfo
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.GetHandlerTest do
|
|||
setup do
|
||||
new HTTParrot.GeneralRequestInfo
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload HTTParrot.GeneralRequestInfo
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "returns prettified json with query values, headers, url and origin" do
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.HeadersHandlerTest do
|
|||
setup do
|
||||
new :cowboy_req
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "returns prettified json with headers list" do
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.HiddenBasicAuthHandlerTest do
|
|||
setup do
|
||||
new :cowboy_req
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "resource_exists returns true if user and passwd match" do
|
||||
|
|
|
@ -5,11 +5,10 @@ defmodule HTTParrotTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
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}}])
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.IPHandlerTest do
|
|||
setup do
|
||||
new :cowboy_req
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "returns prettified json with origin" do
|
||||
|
|
|
@ -7,12 +7,8 @@ defmodule HTTParrot.PHandlerTest do
|
|||
new HTTParrot.GeneralRequestInfo
|
||||
new JSEX
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload HTTParrot.GeneralRequestInfo
|
||||
unload JSEX
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
Enum.each [{"/post", "POST"},
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.RedirectHandlerTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "malformed_request returns false if it's not an integer" do
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.RedirectToHandlerTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "malformed_request returns true if no 'url' is defined" do
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.RelativeRedirectHandlerTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "malformed_request returns false if it's not an integer" do
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.SetCookiesHandlerTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "malformed_request returns false if /name/value is sent" do
|
||||
|
|
|
@ -5,10 +5,8 @@ defmodule HTTParrot.StatusCodeHandlerTest do
|
|||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "reply with 'code' as status code" do
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
defmodule HTTParrot.StreamHandlerTest do
|
||||
use ExUnit.Case
|
||||
use ExUnit.Case, async: false
|
||||
import :meck
|
||||
import HTTParrot.StreamHandler
|
||||
|
||||
|
@ -7,12 +7,8 @@ defmodule HTTParrot.StreamHandlerTest do
|
|||
new :cowboy_req
|
||||
new HTTParrot.GeneralRequestInfo
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload HTTParrot.GeneralRequestInfo
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "malformed_request returns false if it's not an integer" do
|
||||
|
|
|
@ -6,11 +6,8 @@ defmodule HTTParrot.UserAgentHandlerTest do
|
|||
setup do
|
||||
new :cowboy_req
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload JSEX
|
||||
on_exit fn -> unload end
|
||||
:ok
|
||||
end
|
||||
|
||||
test "returns prettified json with user agent" do
|
||||
|
|
Loading…
Add table
Reference in a new issue