forked from edgurgel/httpoison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
httpoison_test.exs
158 lines (128 loc) · 5.14 KB
/
httpoison_test.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
defmodule HTTPoisonTest do
use ExUnit.Case, async: true
import PathHelpers
setup_all do
{:ok, _} = :application.ensure_all_started(:httparrot)
:ok
end
test "get" do
assert_response HTTPoison.get("localhost:8080/deny"), fn(response) ->
assert :erlang.size(response.body) == 197
assert response.location == "http://localhost:8080/deny"
end
end
test "get with params" do
resp = HTTPoison.get("localhost:8080/get", [], params: %{foo: "bar", baz: "bong"})
assert_response resp, fn(response) ->
args = JSX.decode!(response.body)["args"]
assert args["foo"] == "bar"
assert args["baz"] == "bong"
assert (args |> Dict.keys |> length) == 2
end
end
test "head" do
assert_response HTTPoison.head("localhost:8080/get"), fn(response) ->
assert response.body == ""
end
end
test "post charlist body" do
assert_response HTTPoison.post("localhost:8080/post", 'test')
end
test "post binary body" do
{ :ok, file } = File.read(fixture_path("image.png"))
assert_response HTTPoison.post("localhost:8080/post", file)
end
test "post form data" do
assert_response HTTPoison.post("localhost:8080/post", {:form, [key: "value"]}, %{"Content-type" => "application/x-www-form-urlencoded"}), fn(response) ->
Regex.match?(~r/"key".*"value"/, response.body)
end
end
test "put" do
assert_response HTTPoison.put("localhost:8080/put", "test")
end
test "patch" do
assert_response HTTPoison.patch("localhost:8080/patch", "test")
end
test "delete" do
assert_response HTTPoison.delete("localhost:8080/delete")
end
test "options" do
assert_response HTTPoison.options("localhost:8080/get"), fn(response) ->
assert get_header(response.headers, "content-length") == "0"
assert is_binary(get_header(response.headers, "allow"))
end
end
test "option follow redirect absolute url" do
assert_response HTTPoison.get("http://localhost:8080/redirect-to?url=http%3A%2F%2Flocalhost:8080%2Fget", [], [follow_redirect: true]), fn(response) ->
assert response.location == "http://localhost:8080/get"
end
end
test "option follow redirect relative url" do
assert_response HTTPoison.get("http://localhost:8080/relative-redirect/1", [], [follow_redirect: true]), fn(response) ->
assert response.location == "/get"
end
end
test "basic_auth hackney option" do
hackney = [basic_auth: {"user", "pass"}]
assert_response HTTPoison.get("http://localhost:8080/basic-auth/user/pass", [], [ hackney: hackney ])
end
test "explicit http scheme" do
assert_response HTTPoison.head("http://localhost:8080/get")
end
test "https scheme" do
httparrot_priv_dir = :code.priv_dir(:httparrot)
cacert_file = "#{httparrot_priv_dir}/ssl/server-ca.crt"
cert_file = "#{httparrot_priv_dir}/ssl/server.crt"
key_file = "#{httparrot_priv_dir}/ssl/server.key"
assert_response HTTPoison.get("https://localhost:8433/get", [], ssl: [cacertfile: cacert_file, keyfile: key_file, certfile: cert_file])
end
test "char list URL" do
assert_response HTTPoison.head('localhost:8080/get')
end
test "request headers as a map" do
map_header = %{"X-Header" => "X-Value"}
assert HTTPoison.get!("localhost:8080/get", map_header).body =~ "X-Value"
end
test "cached request" do
if_modified = %{"If-Modified-Since" => "Tue, 11 Dec 2012 10:10:24 GMT"}
response = HTTPoison.get!("localhost:8080/cache", if_modified)
assert %HTTPoison.Response{status_code: 304, body: "", location: "http://localhost:8080/cache"} = response
end
test "send cookies" do
response = HTTPoison.get!("localhost:8080/cookies", %{}, hackney: [cookie: [{"SESSION", "123"}]])
assert response.body =~ ~r(\"SESSION\".*\"123\")
end
test "exception" do
assert HTTPoison.get "localhost:1" == {:error, %HTTPoison.Error{reason: :econnrefused}}
assert_raise HTTPoison.Error, ":econnrefused", fn ->
HTTPoison.get! "localhost:1"
end
end
test "asynchronous request" do
{:ok, %HTTPoison.AsyncResponse{id: id}} = HTTPoison.get "localhost:8080/get", [], [stream_to: self]
assert_receive %HTTPoison.AsyncStatus{ id: ^id, code: 200 }, 1_000
assert_receive %HTTPoison.AsyncHeaders{ id: ^id, headers: headers }, 1_000
assert_receive %HTTPoison.AsyncChunk{ id: ^id, chunk: _chunk }, 1_000
assert_receive %HTTPoison.AsyncEnd{ id: ^id }, 1_000
assert is_list(headers)
end
test "asynchronous redirected get request" do
{:ok, %HTTPoison.AsyncResponse{id: id}} = HTTPoison.get "localhost:8080/redirect/2", [], [stream_to: self, hackney: [follow_redirect: true]]
assert_receive %HTTPoison.AsyncRedirect{ id: ^id, to: to, headers: headers }, 1_000
assert to == "http://localhost:8080/redirect/1"
assert is_list(headers)
end
defp assert_response({:ok, response}, function \\ nil) do
assert is_list(response.headers)
assert response.status_code == 200
assert is_binary(response.body)
assert is_binary(response.location)
unless function == nil, do: function.(response)
end
defp get_header(headers, key) do
headers
|> Enum.filter(fn({k, _}) -> k == key end)
|> hd
|> elem(1)
end
end