1
1
defmodule PostscriptTest do
2
2
use ExUnit.Case , async: true
3
3
4
- alias Postscript . { Http , Operation , Response }
4
+ import ExUnit.CaptureLog , only: [ with_log: 2 ]
5
5
6
- @ ok_resp % { body: "{ \" ok \" :true}" , headers: [ ] , status_code: 200 }
6
+ alias Postscript . { Http , Operation , Response }
7
7
8
- @ not_ok_resp % { body: "{\" ok\" :false}" , headers: [ ] , status_code: 400 }
8
+ @ ok_resp % { body: "{\" ok\" :true}" , headers: [ ] , status_code: 200 }
9
+
10
+ @ not_ok_resp % { body: "{\" ok\" :false}" , headers: [ ] , status_code: 400 }
11
+
12
+ @ not_json_resp % {
13
+ body: "not json" ,
14
+ headers: [ { "content-type" , "application/json" } ] ,
15
+ status_code: 200
16
+ }
9
17
10
18
test "sends the proper HTTP method" do
11
19
Http.Mock . start_link ( )
12
20
13
- response = { :ok , @ ok_resp }
21
+ response = { :ok , @ ok_resp }
14
22
15
23
Http.Mock . put_response ( response )
16
24
17
- operation = % Operation { method: :get , params: [ hello: "world" ] , path: "/fake" }
25
+ operation = % Operation { method: :get , params: [ hello: "world" ] , path: "/fake" }
18
26
19
27
Postscript . request ( operation , http_client: Http.Mock )
20
28
@@ -24,11 +32,11 @@ defmodule PostscriptTest do
24
32
test "uses the proper URL for GET requests" do
25
33
Http.Mock . start_link ( )
26
34
27
- response = { :ok , @ ok_resp }
35
+ response = { :ok , @ ok_resp }
28
36
29
37
Http.Mock . put_response ( response )
30
38
31
- operation = % Operation { method: :get , params: [ hello: "world" ] , path: "/fake" }
39
+ operation = % Operation { method: :get , params: [ hello: "world" ] , path: "/fake" }
32
40
33
41
Postscript . request ( operation , http_client: Http.Mock )
34
42
@@ -38,11 +46,11 @@ defmodule PostscriptTest do
38
46
test "uses the proper URL for DELETE requests" do
39
47
Http.Mock . start_link ( )
40
48
41
- response = { :ok , @ ok_resp }
49
+ response = { :ok , @ ok_resp }
42
50
43
51
Http.Mock . put_response ( response )
44
52
45
- operation = % Operation { method: :delete , params: [ hello: "world" ] , path: "/fake" }
53
+ operation = % Operation { method: :delete , params: [ hello: "world" ] , path: "/fake" }
46
54
47
55
Postscript . request ( operation , http_client: Http.Mock )
48
56
@@ -52,11 +60,11 @@ defmodule PostscriptTest do
52
60
test "uses the proper URL for non-GET requests" do
53
61
Http.Mock . start_link ( )
54
62
55
- response = { :ok , @ ok_resp }
63
+ response = { :ok , @ ok_resp }
56
64
57
65
Http.Mock . put_response ( response )
58
66
59
- operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
67
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
60
68
61
69
Postscript . request ( operation , http_client: Http.Mock )
62
70
@@ -66,31 +74,36 @@ defmodule PostscriptTest do
66
74
test "sends the proper HTTP headers" do
67
75
Http.Mock . start_link ( )
68
76
69
- response = { :ok , @ ok_resp }
77
+ response = { :ok , @ ok_resp }
70
78
71
79
Http.Mock . put_response ( response )
72
80
73
81
operation = % Operation { }
74
82
operation = Map . put ( operation , :method , :get )
75
- operation = Map . put ( operation , :params , [ hello: "world" ] )
83
+ operation = Map . put ( operation , :params , hello: "world" )
76
84
operation = Map . put ( operation , :path , "/fake" )
77
85
78
- Postscript . request ( operation , api_key: "thisisfake" , http_client: Http.Mock , http_headers: [ { "x-custom-header" , "true" } ] , shop_token: "thisisfake" )
79
-
80
- assert { "content-type" , "application/json" } in Http.Mock . get_request_headers ( )
81
- assert { "authorization" , "Bearer thisisfake" } in Http.Mock . get_request_headers ( )
82
- assert { "x-custom-header" , "true" } in Http.Mock . get_request_headers ( )
83
- assert { "x-postscript-shop-token" , "thisisfake" } in Http.Mock . get_request_headers ( )
86
+ Postscript . request ( operation ,
87
+ api_key: "thisisfake" ,
88
+ http_client: Http.Mock ,
89
+ http_headers: [ { "x-custom-header" , "true" } ] ,
90
+ shop_token: "thisisfake"
91
+ )
92
+
93
+ assert { "content-type" , "application/json" } in Http.Mock . get_request_headers ( )
94
+ assert { "authorization" , "Bearer thisisfake" } in Http.Mock . get_request_headers ( )
95
+ assert { "x-custom-header" , "true" } in Http.Mock . get_request_headers ( )
96
+ assert { "x-postscript-shop-token" , "thisisfake" } in Http.Mock . get_request_headers ( )
84
97
end
85
98
86
99
test "sends the proper body for GET requests" do
87
100
Http.Mock . start_link ( )
88
101
89
- response = { :ok , @ ok_resp }
102
+ response = { :ok , @ ok_resp }
90
103
91
104
Http.Mock . put_response ( response )
92
105
93
- operation = % Operation { method: :get , params: [ hello: "world" ] , path: "/fake" }
106
+ operation = % Operation { method: :get , params: [ hello: "world" ] , path: "/fake" }
94
107
95
108
Postscript . request ( operation , http_client: Http.Mock )
96
109
@@ -100,11 +113,11 @@ defmodule PostscriptTest do
100
113
test "sends the proper body for DELETE requests" do
101
114
Http.Mock . start_link ( )
102
115
103
- response = { :ok , @ ok_resp }
116
+ response = { :ok , @ ok_resp }
104
117
105
118
Http.Mock . put_response ( response )
106
119
107
- operation = % Operation { method: :delete , params: [ hello: "world" ] , path: "/fake" }
120
+ operation = % Operation { method: :delete , params: [ hello: "world" ] , path: "/fake" }
108
121
109
122
Postscript . request ( operation , http_client: Http.Mock )
110
123
@@ -114,11 +127,11 @@ defmodule PostscriptTest do
114
127
test "sends the proper body for non-GET requests" do
115
128
Http.Mock . start_link ( )
116
129
117
- response = { :ok , @ ok_resp }
130
+ response = { :ok , @ ok_resp }
118
131
119
132
Http.Mock . put_response ( response )
120
133
121
- operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
134
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
122
135
123
136
Postscript . request ( operation , http_client: Http.Mock )
124
137
@@ -128,39 +141,59 @@ defmodule PostscriptTest do
128
141
test "returns :ok when the request is successful" do
129
142
Http.Mock . start_link ( )
130
143
131
- response = { :ok , @ ok_resp }
144
+ response = { :ok , @ ok_resp }
132
145
133
146
Http.Mock . put_response ( response )
134
147
135
- operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
148
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
136
149
137
150
result = Postscript . request ( operation , http_client: Http.Mock )
138
151
139
- assert { :ok , % Response { } } = result
152
+ assert { :ok , % Response { } } = result
140
153
end
141
154
142
155
test "returns :error when the request is not successful" do
143
156
Http.Mock . start_link ( )
144
157
145
- response = { :ok , @ not_ok_resp }
158
+ response = { :ok , @ not_ok_resp }
146
159
147
160
Http.Mock . put_response ( response )
148
161
149
- operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
162
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
150
163
151
164
result = Postscript . request ( operation , http_client: Http.Mock )
152
165
153
- assert { :error , % Response { } } = result
166
+ assert { :error , % Response { } } = result
167
+ end
168
+
169
+ test "logs warning and returns :error when response is not valid JSON" do
170
+ Http.Mock . start_link ( )
171
+
172
+ response = { :ok , @ not_json_resp }
173
+
174
+ Http.Mock . put_response ( response )
175
+
176
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
177
+
178
+ assert { result , log } =
179
+ with_log ( [ level: :warning ] , fn ->
180
+ Postscript . request ( operation , http_client: Http.Mock )
181
+ end )
182
+
183
+ assert { :error , _error } = result
184
+
185
+ assert log =~ "invalid JSON response"
186
+ assert log =~ "\" not json\" "
154
187
end
155
188
156
189
test "passes the response through when unrecognized" do
157
190
Http.Mock . start_link ( )
158
191
159
- response = { :error , :timeout }
192
+ response = { :error , :timeout }
160
193
161
194
Http.Mock . put_response ( response )
162
195
163
- operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
196
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
164
197
165
198
result = Postscript . request ( operation , http_client: Http.Mock )
166
199
@@ -170,30 +203,30 @@ defmodule PostscriptTest do
170
203
test "retries failed requests" do
171
204
Http.Mock . start_link ( )
172
205
173
- response_1 = { :error , :timeout }
174
- response_2 = { :ok , @ ok_resp }
206
+ response_1 = { :error , :timeout }
207
+ response_2 = { :ok , @ ok_resp }
175
208
176
209
Http.Mock . put_response ( response_1 )
177
210
Http.Mock . put_response ( response_2 )
178
211
179
- operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
212
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
180
213
181
214
result = Postscript . request ( operation , http_client: Http.Mock , retry: Postscript.Retry.Linear )
182
215
183
- assert { :ok , % Response { } } = result
216
+ assert { :ok , % Response { } } = result
184
217
end
185
218
186
219
test "retries up to max attempts" do
187
220
Http.Mock . start_link ( )
188
221
189
- response = { :error , :timeout }
222
+ response = { :error , :timeout }
190
223
191
224
Http.Mock . put_response ( response )
192
225
Http.Mock . put_response ( response )
193
226
Http.Mock . put_response ( response )
194
227
Http.Mock . put_response ( response )
195
228
196
- operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
229
+ operation = % Operation { method: :post , params: [ hello: "world" ] , path: "/fake" }
197
230
198
231
Postscript . request ( operation , http_client: Http.Mock , retry: Postscript.Retry.Linear )
199
232
0 commit comments