@@ -2,42 +2,62 @@ defmodule Assent.StrategyTest do
2
2
use Assent.TestCase
3
3
doctest Assent.Strategy
4
4
5
- alias Assent . { HTTPAdapter.HTTPResponse , Strategy }
5
+ alias Assent . { HTTPAdapter.HTTPResponse , InvalidResponseError , Strategy }
6
6
7
- test "decode_response/2" do
8
- expected = % { "a" => "1" , "b" => "2" }
9
-
10
- headers = [ { "content-type" , "application/json" } ]
11
- body = @ json_library . encode! ( expected )
12
-
13
- assert Strategy . decode_response ( { :ok , % { body: body , headers: headers } } , [ ] ) ==
14
- { :ok , % { body: expected , headers: headers } }
15
-
16
- assert Strategy . decode_response ( { :error , % { body: body , headers: headers } } , [ ] ) ==
17
- { :error , % { body: expected , headers: headers } }
18
-
19
- headers = [ { "content-type" , "application/json; charset=utf-8" } ]
20
-
21
- assert Strategy . decode_response ( { :ok , % { body: body , headers: headers } } , [ ] ) ==
22
- { :ok , % { body: expected , headers: headers } }
23
-
24
- headers = [ { "content-type" , "text/javascript" } ]
25
-
26
- assert Strategy . decode_response ( { :ok , % { body: body , headers: headers } } , [ ] ) ==
27
- { :ok , % { body: expected , headers: headers } }
7
+ @ body % { "a" => "1" , "b" => "2" }
8
+ @ headers [ { "content-type" , "application/json" } ]
9
+ @ json_encoded_body @ json_library . encode! ( @ body )
10
+ @ uri_encoded_body URI . encode_query ( @ body )
28
11
29
- headers = [ { "content-type" , "application/x-www-form-urlencoded" } ]
30
- body = URI . encode_query ( expected )
31
-
32
- assert Strategy . decode_response ( { :ok , % { body: body , headers: headers } } , [ ] ) ==
33
- { :ok , % { body: expected , headers: headers } }
34
-
35
- headers = [ { "content-type" , "application/x-www-form-urlencoded; charset=utf-8" } ]
36
-
37
- assert Strategy . decode_response ( { :ok , % { body: body , headers: headers } } , [ ] ) ==
38
- { :ok , % { body: expected , headers: headers } }
39
-
40
- assert Strategy . decode_response ( { :error , "error reason" } , [ ] ) == { :error , "error reason" }
12
+ test "decode_response/2" do
13
+ assert { :ok , response } =
14
+ Strategy . decode_response (
15
+ % HTTPResponse { body: @ json_encoded_body , headers: @ headers } ,
16
+ [ ]
17
+ )
18
+
19
+ assert response . body == @ body
20
+
21
+ assert { :ok , response } =
22
+ Strategy . decode_response (
23
+ % HTTPResponse {
24
+ body: @ json_encoded_body ,
25
+ headers: [ { "content-type" , "application/json; charset=utf-8" } ]
26
+ } ,
27
+ [ ]
28
+ )
29
+
30
+ assert response . body == @ body
31
+
32
+ assert { :ok , response } =
33
+ Strategy . decode_response (
34
+ % HTTPResponse {
35
+ body: @ json_encoded_body ,
36
+ headers: [ { "content-type" , "text/javascript" } ]
37
+ } ,
38
+ [ ]
39
+ )
40
+
41
+ assert response . body == @ body
42
+
43
+ assert { :ok , response } =
44
+ Strategy . decode_response (
45
+ % HTTPResponse {
46
+ body: @ uri_encoded_body ,
47
+ headers: [ { "content-type" , "application/x-www-form-urlencoded" } ]
48
+ } ,
49
+ [ ]
50
+ )
51
+
52
+ assert response . body == @ body
53
+
54
+ assert { :ok , response } = Strategy . decode_response ( % HTTPResponse { body: @ body , headers: [ ] } , [ ] )
55
+ assert response . body == @ body
56
+
57
+ assert { :error , % InvalidResponseError { } = error } =
58
+ Strategy . decode_response ( % HTTPResponse { body: "%" , headers: @ headers } , [ ] )
59
+
60
+ assert error . response . body == "%"
41
61
end
42
62
43
63
defmodule JSONMock do
@@ -172,15 +192,9 @@ defmodule Assent.StrategyTest do
172
192
request_url: "json-encoded-body-text/javascript-header"
173
193
} }
174
194
175
- assert { :error , error } =
195
+ assert { :error , % InvalidResponseError { } } =
176
196
Strategy . request ( :get , "invalid-json-body" , nil , [ ] , http_adapter: HTTPMock )
177
197
178
- if unquote ( @ json_library == Jason ) do
179
- assert % Jason.DecodeError { } = error
180
- else
181
- assert error == { :invalid_byte , 0 , 37 }
182
- end
183
-
184
198
assert Strategy . request ( :get , "json-no-headers" , nil , [ ] , http_adapter: HTTPMock ) ==
185
199
{ :ok ,
186
200
% HTTPResponse {
0 commit comments