类 AbstractRequestExpectationManager
- java.lang.Object
- org.springframework.test.web.client.AbstractRequestExpectationManager
- 所有已实现的接口:
RequestExpectationManager
public abstract class AbstractRequestExpectationManager extends Object implements RequestExpectationManager
Base class forRequestExpectationManagerimplementations 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.
- 从以下版本开始:
- 4.3
- 作者:
- Rossen Stoyanchev, Juergen Hoeller
嵌套类概要
嵌套类 修饰符和类型 类 说明 protected static classAbstractRequestExpectationManager.RequestExpectationGroupHelper class to manage a group of remaining expectations.
构造器概要
构造器 构造器 说明 AbstractRequestExpectationManager()
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 protected voidafterExpectationsDeclared()Invoked at the time of the first actual request, which effectively means the expectations declaration phase is over.protected AssertionErrorcreateUnexpectedRequestError(ClientHttpRequest request)Return anAssertionErrorthat a sub-class can raise for an unexpected request.ResponseActionsexpectRequest(ExpectedCount count, RequestMatcher matcher)Set up a new request expectation.protected List<RequestExpectation>getExpectations()protected StringgetRequestDetails()Return details of executed requests.protected List<ClientHttpRequest>getRequests()voidreset()Reset the internal state removing all expectations and recorded requests.ClientHttpResponsevalidateRequest(ClientHttpRequest request)Validate the given actual request against the declared expectations.protected abstract ClientHttpResponsevalidateRequestInternal(ClientHttpRequest request)Subclasses must implement the actual validation of the request matching to declared expectations.voidverify()Verify that all expectations have been met.
构造器详细资料
AbstractRequestExpectationManager
public AbstractRequestExpectationManager()
方法详细资料
getExpectations
protected List<RequestExpectation> getExpectations()
getRequests
protected List<ClientHttpRequest> getRequests()
expectRequest
public ResponseActions expectRequest(ExpectedCount count, RequestMatcher matcher)
从接口复制的说明:RequestExpectationManagerSet up a new request expectation. The returnedResponseActionsis used to add more expectations and define a response.This is a delegate for
MockRestServiceServer.expect(ExpectedCount, RequestMatcher).- 指定者:
expectRequest在接口中RequestExpectationManagermatcher- a request expectation- 返回:
- for setting up further expectations and define a response
- 另请参阅:
MockRestServiceServer.expect(RequestMatcher),MockRestServiceServer.expect(ExpectedCount, RequestMatcher)
validateRequest
public ClientHttpResponse validateRequest(ClientHttpRequest request) throws IOException
从接口复制的说明:RequestExpectationManagerValidate the given actual request against the declared expectations. Is successful return the mock response to use or raise an error.This is used in
MockRestServiceServeragainst actual requests.- 指定者:
validateRequest在接口中RequestExpectationManager- 参数:
request- the request- 返回:
- the response to return if the request was validated.
- 抛出:
IOException- in case of any validation errors
afterExpectationsDeclared
protected void afterExpectationsDeclared()
Invoked at the time of the first actual request, which effectively means the expectations declaration phase is over.
validateRequestInternal
protected abstract ClientHttpResponse validateRequestInternal(ClientHttpRequest request) throws IOException
Subclasses must implement the actual validation of the request matching to declared expectations.- 抛出:
IOException
verify
public void verify()
从接口复制的说明:RequestExpectationManagerVerify that all expectations have been met.This is a delegate for
MockRestServiceServer.verify().
getRequestDetails
protected String getRequestDetails()
Return details of executed requests.
createUnexpectedRequestError
protected AssertionError createUnexpectedRequestError(ClientHttpRequest request)
Return anAssertionErrorthat a sub-class can raise for an unexpected request.
reset
public void reset()
从接口复制的说明:RequestExpectationManagerReset the internal state removing all expectations and recorded requests.This is a delegate for
MockRestServiceServer.reset().- 指定者:
reset在接口中RequestExpectationManager- 另请参阅:
MockRestServiceServer.reset()