From 09e2a6f1e998bc7f5f0cd2a27dd8c10a37df4602 Mon Sep 17 00:00:00 2001 From: Paweł Stawicki Date: Tue, 27 Mar 2018 16:42:54 +0200 Subject: Added overloaded thenRespondWrapped which can return response monad but takes request as parameter --- docs/testing.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'docs') diff --git a/docs/testing.rst b/docs/testing.rst index 9afcd0e..2a6d37b 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -60,6 +60,16 @@ Another way to specify the behaviour is passing response wrapped in the result m val responseFuture = sttp.get(uri"http://example.org").send() // responseFuture will complete after 5 seconds with "OK" response +The returned response may also depend on the request: :: + + implicit val testingBackend = SttpBackendStub(HttpURLConnectionBackend()).whenAnyRequest + .thenRespondWrapped(req => + Response(Right("OK, got request sent to ${req.uri.host}"), 200, "", Nil, Nil) + ) + + val response = sttp.get(uri"http://example.org").send() + // response.body will be Right("OK, got request sent to example.org") + Simulating exceptions --------------------- -- cgit v1.2.3