1
0
Fork 0
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:
Eduardo Gurgel 2014-06-24 21:27:01 +12:00
parent be5058525c
commit 296e58a3b5
23 changed files with 45 additions and 102 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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}}])

View file

@ -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

View file

@ -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"},

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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