sttp.client3.testing

Members list

Type members

Classlikes

final class AtomicCyclicIterator[+T]

Attributes

Companion
object
Supertypes
class Object
trait Matchable
class Any

Attributes

Companion
class
Supertypes
class Object
trait Matchable
class Any
Self type
class RecordingSttpBackend[F[_], +P](delegate: SttpBackend[F, P]) extends DelegateSttpBackend[F, P]

Attributes

Supertypes
class DelegateSttpBackend[F, P]
trait SttpBackend[F, P]
class Object
trait Matchable
class Any
implicit class RichTestingRequest[T](r: RequestT[Identity, T, _])

Attributes

Supertypes
class Object
trait Matchable
class Any
class SttpBackendStub[F[_], +P](monad: MonadError[F], matchers: PartialFunction[RequestT[Identity, _, _], F[Response[_]]], fallback: Option[SttpBackend[F, P]]) extends SttpBackend[F, P]

A stub backend to use in tests.

A stub backend to use in tests.

The stub can be configured to respond with a given response if the request matches a predicate (see the whenRequestMatches method).

Note however, that this is not type-safe with respect to the type of the response body - the stub doesn't have a way to check if the type of the body in the configured response is the same as the one specified by the request. Some conversions will be attempted (e.g. from a String to a custom mapped type, as specified in the request, see the documentation for more details).

For web socket requests, the stub can be configured to returned both custom WebSocket implementations, as well as WebSocketStub instances.

For requests which return the response as a stream, if the stub should return a raw stream value (which should then be passed to the stream-consuming function, or mapped to another value), it should be wrapped with RawStream.

Predicates can match requests basing on the URI or headers. A ClassCastException might occur if for a given request, a response is specified with the incorrect or inconvertible body type.

Attributes

Companion
object
Supertypes
trait SttpBackend[F, P]
class Object
trait Matchable
class Any

Attributes

Companion
class
Supertypes
class Object
trait Matchable
class Any
Self type

Implicits

Implicits

final implicit def RichTestingRequest[T](r: RequestT[Identity, T, _]): RichTestingRequest[T]