MockServerRestClientCustomizer

RestClientCustomizer that can be applied to RestClient.Builder instances to add MockRestServiceServer support.

Typically applied to an existing builder before it is used, for example:

MockServerRestClientCustomizer customizer = new MockServerRestClientCustomizer();
RestClient.Builder builder = RestClient.builder();
customizer.customize(builder);
MyBean bean = new MyBean(client.build());
customizer.getServer().expect(requestTo("/hello")).andRespond(withSuccess());
bean.makeRestCall();

If the customizer is only used once, the getServer method can be used to obtain the mock server. If the customizer has been used more than once the getServer or getServers method must be used to access the related server.

If a mock server is used in more than one test case in a test class, it might be necessary to reset the expectations on the server between tests using getServer().reset() or getServer(restClientBuilder).reset().

Author

Scott Frederick

Since

3.2.0

See also

Constructors

Link copied to clipboard
constructor()
constructor(expectationManager: Class<out RequestExpectationManager>)
Create a new MockServerRestClientCustomizer instance.
constructor(expectationManagerSupplier: Supplier<out RequestExpectationManager>)
Create a new MockServerRestClientCustomizer instance.

Functions

Link copied to clipboard
open fun customize(restClientBuilder: RestClient.Builder)
Link copied to clipboard
Link copied to clipboard
open fun setBufferContent(bufferContent: Boolean)
Set if the BufferingClientHttpRequestFactory wrapper should be used to buffer the input and output streams, and for example, allow multiple reads of the response body.