public abstract class AbstractRequestExpectationManager extends Object implements RequestExpectationManager
RequestExpectationManager
implementations responsible
for storing expectations and actual requests, and checking for unsatisfied
expectations at the end.
Subclasses are responsible for validating each request by matching it to to expectations following the order of declaration or not.
Modifier and Type | Class and Description |
---|---|
protected static class |
AbstractRequestExpectationManager.RequestExpectationGroup
Helper class to manage a group of remaining expectations.
|
Constructor and Description |
---|
AbstractRequestExpectationManager() |
Modifier and Type | Method and Description |
---|---|
protected void |
afterExpectationsDeclared()
Invoked at the time of the first actual request, which effectively means
the expectations declaration phase is over.
|
protected AssertionError |
createUnexpectedRequestError(ClientHttpRequest request)
Return an
AssertionError that a sub-class can raise for an
unexpected request. |
ResponseActions |
expectRequest(ExpectedCount count,
RequestMatcher matcher)
Set up a new request expectation.
|
protected List<RequestExpectation> |
getExpectations() |
protected String |
getRequestDetails()
Return details of executed requests.
|
protected List<ClientHttpRequest> |
getRequests() |
void |
reset()
Reset the internal state removing all expectations and recorded requests.
|
ClientHttpResponse |
validateRequest(ClientHttpRequest request)
Validate the given actual request against the declared expectations.
|
protected abstract ClientHttpResponse |
validateRequestInternal(ClientHttpRequest request)
Subclasses must implement the actual validation of the request
matching to declared expectations.
|
void |
verify()
Verify that all expectations have been met.
|
protected List<RequestExpectation> getExpectations()
protected List<ClientHttpRequest> getRequests()
public ResponseActions expectRequest(ExpectedCount count, RequestMatcher matcher)
RequestExpectationManager
ResponseActions
is
used to add more expectations and define a response.
This is a delegate for
MockRestServiceServer.expect(ExpectedCount, RequestMatcher)
.
expectRequest
in interface RequestExpectationManager
matcher
- a request expectationMockRestServiceServer.expect(RequestMatcher)
,
MockRestServiceServer.expect(ExpectedCount, RequestMatcher)
public ClientHttpResponse validateRequest(ClientHttpRequest request) throws IOException
RequestExpectationManager
This is used in MockRestServiceServer
against actual requests.
validateRequest
in interface RequestExpectationManager
request
- the requestIOException
- in case of any validation errorsprotected void afterExpectationsDeclared()
protected abstract ClientHttpResponse validateRequestInternal(ClientHttpRequest request) throws IOException
IOException
public void verify()
RequestExpectationManager
This is a delegate for MockRestServiceServer.verify()
.
verify
in interface RequestExpectationManager
MockRestServiceServer.verify()
protected String getRequestDetails()
protected AssertionError createUnexpectedRequestError(ClientHttpRequest request)
AssertionError
that a sub-class can raise for an
unexpected request.public void reset()
RequestExpectationManager
This is a delegate for MockRestServiceServer.reset()
.
reset
in interface RequestExpectationManager
MockRestServiceServer.reset()