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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
defmodule Couch.Session do
@moduledoc """
CouchDB session helpers.
"""
defstruct [:cookie, :error, :base_url]
def new(cookie, error \\ "") do
%Couch.Session{cookie: cookie, error: error}
end
def logout(sess) do
headers = [
"Content-Type": "application/x-www-form-urlencoded",
"X-CouchDB-WWW-Authenticate": "Cookie",
Cookie: sess.cookie
]
Couch.delete!("/_session", headers: headers)
end
def info(sess) do
headers = [
"Content-Type": "application/x-www-form-urlencoded",
"X-CouchDB-WWW-Authenticate": "Cookie",
Cookie: sess.cookie
]
Couch.get("/_session", headers: headers).body
end
def get(sess, url, opts \\ []), do: go(sess, :get, url, opts)
def get!(sess, url, opts \\ []), do: go!(sess, :get, url, opts)
def put(sess, url, opts \\ []), do: go(sess, :put, url, opts)
def put!(sess, url, opts \\ []), do: go!(sess, :put, url, opts)
def post(sess, url, opts \\ []), do: go(sess, :post, url, opts)
def post!(sess, url, opts \\ []), do: go!(sess, :post, url, opts)
def delete(sess, url, opts \\ []), do: go(sess, :delete, url, opts)
def delete!(sess, url, opts \\ []), do: go!(sess, :delete, url, opts)
# Skipping head/patch/options for YAGNI. Feel free to add
# if the need arises.
def go(%Couch.Session{} = sess, method, url, opts) do
opts = Keyword.merge(opts, cookie: sess.cookie, base_url: sess.base_url)
Couch.request(method, url, opts)
end
def go!(%Couch.Session{} = sess, method, url, opts) do
opts = Keyword.merge(opts, cookie: sess.cookie, base_url: sess.base_url)
Couch.request!(method, url, opts)
end
end
defmodule Couch do
use HTTPotion.Base
@moduledoc """
CouchDB library to power test suite.
"""
# These constants are supplied to the underlying HTTP client and control
# how long we will wait before timing out a test. The inactivity timeout
# specifically fires during an active HTTP response and defaults to 10_000
# if not specified. We're defining it to a different value than the
# request_timeout largely just so we know which timeout fired.
@request_timeout 60_000
@inactivity_timeout 55_000
def process_url("http://" <> _ = url) do
url
end
def process_url(url, options) do
(Keyword.get(options, :base_url) <> url)
|> prepend_protocol
|> append_query_string(options)
end
def process_request_headers(headers, _body, options) do
headers = Keyword.put(headers, :"User-Agent", "couch-potion")
headers =
if headers[:"Content-Type"] do
headers
else
Keyword.put(headers, :"Content-Type", "application/json")
end
case Keyword.get(options, :cookie) do
nil ->
headers
cookie ->
Keyword.put(headers, :Cookie, cookie)
end
end
def process_options(options) do
base_url = System.get_env("EX_COUCH_URL") || "http://127.0.0.1:15984"
options = Keyword.put_new(options, :base_url, base_url)
options
|> set_auth_options()
|> set_inactivity_timeout()
|> set_request_timeout()
end
def process_request_body(body) do
if is_map(body) do
:jiffy.encode(body)
else
body
end
end
def process_response_body(_headers, body) when body == [] do
""
end
def process_response_body(headers, body) do
content_type = headers[:"Content-Type"]
if !!content_type and String.match?(content_type, ~r/application\/json/) do
body |> IO.iodata_to_binary() |> :jiffy.decode([:return_maps])
else
process_response_body(body)
end
end
def set_auth_options(options) do
no_auth? = Keyword.get(options, :no_auth) == true
cookie? = Keyword.has_key?(options, :cookie)
basic_auth? = Keyword.has_key?(options, :basic_auth)
if cookie? or no_auth? or basic_auth? do
Keyword.delete(options, :no_auth)
else
headers = Keyword.get(options, :headers, [])
if headers[:basic_auth] != nil or headers[:authorization] != nil do
options
else
username = System.get_env("EX_USERNAME") || "adm"
password = System.get_env("EX_PASSWORD") || "pass"
Keyword.put(options, :basic_auth, {username, password})
end
end
end
def set_inactivity_timeout(options) do
Keyword.update(
options,
:ibrowse,
[{:inactivity_timeout, @inactivity_timeout}],
fn ibrowse ->
Keyword.put_new(ibrowse, :inactivity_timeout, @inactivity_timeout)
end
)
end
def set_request_timeout(options) do
timeout = Application.get_env(:httpotion, :default_timeout, @request_timeout)
Keyword.put_new(options, :timeout, timeout)
end
def login(userinfo) do
[user, pass] = String.split(userinfo, ":", parts: 2)
login(user, pass)
end
def login(user, pass, options \\ []) do
options = options |> Enum.into(%{})
base_url =
Map.get_lazy(options, :base_url, fn ->
System.get_env("EX_COUCH_URL") || "http://127.0.0.1:15984"
end)
resp =
Couch.post(
"/_session",
body: %{:username => user, :password => pass},
base_url: base_url,
no_auth: true
)
if Map.get(options, :expect, :success) == :success do
true = resp.body["ok"]
cookie = resp.headers[:"set-cookie"]
[token | _] = String.split(cookie, ";")
%Couch.Session{cookie: token, base_url: base_url}
else
true = Map.has_key?(resp.body, "error")
%Couch.Session{error: resp.body["error"], base_url: base_url}
end
end
end
|