pub struct Endpoint<T> { /* private fields */ }
Expand description

A Django-style Wiremock endpoint for a collection of suitable objects.

This is the central struct in this crate. Endpoint implements Respond(wiremock::Respond and so can be mounted directly into a MockServer. It contains a RowSource which it will query for a starting set of data.

It will then filter that data using the URL, using the Filterable trait on the objects; then it will sort the data using the Sortable trait on the objects; then it will clip the results to the selected page using limit and offset;finally it will convert the data to JSON using the IntoRow trait on the objects.

Implementations

Create a new endpoint.

row_source is where the data comes from. base_uri, if provided, should be the wiremock server URI.

base_uri is only required because wiremock mangles the request URL such that it’s not possible to inspect it to see how to give out other URLs on the same server; the port number, which is usually random when mocking, is lost. Since Django includes full absolute URLs for the next and preceding pages for a query, mimicking this is impossible without more information (i.e. including usable URLs for the next page within the query response is impossible).

Trait Implementations

Given a reference to a Request return a ResponseTemplate that will be used by the MockServer as blueprint for the response returned to the client. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more