@@ -115,6 +115,13 @@ defmodule Bypass do
115
115
{ :error , :too_many_requests , { method , path } } ->
116
116
raise error_module , "Expected only one HTTP request for Bypass at #{ method } #{ path } "
117
117
118
+ { :error , { :unexpected_request_number , expected , actual } , { :any , :any } } ->
119
+ raise error_module , "Expected #{ expected } HTTP request for Bypass, got #{ actual } "
120
+
121
+ { :error , { :unexpected_request_number , expected , actual } , { method , path } } ->
122
+ raise error_module ,
123
+ "Expected #{ expected } HTTP request for Bypass at #{ method } #{ path } , got #{ actual } "
124
+
118
125
{ :error , :unexpected_request , { :any , :any } } ->
119
126
raise error_module , "Bypass got an HTTP request but wasn't expecting one"
120
127
@@ -172,6 +179,21 @@ defmodule Bypass do
172
179
def expect ( % Bypass { pid: pid } , fun ) ,
173
180
do: Bypass.Instance . call ( pid , { :expect , fun } )
174
181
182
+ @ doc """
183
+ Expects the passed function to be called exactly `n` times for any route.
184
+
185
+ ```elixir
186
+ Bypass.expect(bypass, 3, fn conn ->
187
+ assert "/1.1/statuses/update.json" == conn.request_path
188
+ assert "POST" == conn.method
189
+ Plug.Conn.resp(conn, 429, ~s<{"errors": [{"code": 88, "message": "Rate limit exceeded"}]}>)
190
+ end)
191
+ ```
192
+ """
193
+ @ spec expect ( Bypass . t ( ) , pos_integer ( ) , ( Plug.Conn . t ( ) -> Plug.Conn . t ( ) ) ) :: :ok
194
+ def expect ( % Bypass { pid: pid } , n , fun ) ,
195
+ do: Bypass.Instance . call ( pid , { :expect , n , fun } )
196
+
175
197
@ doc """
176
198
Expects the passed function to be called at least once for the specified route (method and path).
177
199
@@ -181,7 +203,7 @@ defmodule Bypass do
181
203
182
204
```elixir
183
205
Bypass.expect(bypass, "POST", "/1.1/statuses/update.json", fn conn ->
184
- Agent.get_and_update (AgentModule, fn step_no -> { step_no, step_no + 1} end)
206
+ Agent.update (AgentModule, fn step_no -> step_no + 1 end)
185
207
Plug.Conn.resp(conn, 429, ~s<{"errors": [{"code": 88, "message": "Rate limit exceeded"}]}>)
186
208
end)
187
209
```
@@ -190,6 +212,26 @@ defmodule Bypass do
190
212
def expect ( % Bypass { pid: pid } , method , path , fun ) ,
191
213
do: Bypass.Instance . call ( pid , { :expect , method , path , fun } )
192
214
215
+ @ doc """
216
+ Expects the passed function to be called exactly `n` times for the specified route (method and path).
217
+
218
+ - `method` is one of `["GET", "POST", "HEAD", "PUT", "PATCH", "DELETE", "OPTIONS", "CONNECT"]`
219
+
220
+ - `path` is the endpoint.
221
+
222
+ - `n` is the number of times the route is expected to be called.
223
+
224
+ ```elixir
225
+ Bypass.expect(bypass, "POST", "/1.1/statuses/update.json", 3, fn conn ->
226
+ Agent.update(AgentModule, fn step_no -> step_no + 1 end)
227
+ Plug.Conn.resp(conn, 429, ~s<{"errors": [{"code": 88, "message": "Rate limit exceeded"}]}>)
228
+ end)
229
+ ```
230
+ """
231
+ @ spec expect ( Bypass . t ( ) , String . t ( ) , String . t ( ) , pos_integer ( ) , ( Plug.Conn . t ( ) -> Plug.Conn . t ( ) ) ) :: :ok
232
+ def expect ( % Bypass { pid: pid } , method , path , n , fun ) ,
233
+ do: Bypass.Instance . call ( pid , { { :exactly , n } , method , path , fun } )
234
+
193
235
@ doc """
194
236
Expects the passed function to be called exactly once regardless of the route.
195
237
@@ -214,7 +256,7 @@ defmodule Bypass do
214
256
215
257
```elixir
216
258
Bypass.expect_once(bypass, "POST", "/1.1/statuses/update.json", fn conn ->
217
- Agent.get_and_update (AgentModule, fn step_no -> { step_no, step_no + 1} end)
259
+ Agent.update (AgentModule, fn step_no -> step_no + 1 end)
218
260
Plug.Conn.resp(conn, 429, ~s<{"errors": [{"code": 88, "message": "Rate limit exceeded"}]}>)
219
261
end)
220
262
```
@@ -232,7 +274,7 @@ defmodule Bypass do
232
274
233
275
```elixir
234
276
Bypass.stub(bypass, "POST", "/1.1/statuses/update.json", fn conn ->
235
- Agent.get_and_update (AgentModule, fn step_no -> { step_no, step_no + 1} end)
277
+ Agent.update (AgentModule, fn step_no -> step_no + 1 end)
236
278
Plug.Conn.resp(conn, 429, ~s<{"errors": [{"code": 88, "message": "Rate limit exceeded"}]}>)
237
279
end)
238
280
```
0 commit comments