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