Search in sources :

Example 21 with ValidationInterceptor

use of com.opensymphony.xwork2.validator.ValidationInterceptor in project struts by apache.

the class JSONValidationInterceptorTest method setUp.

protected void setUp() throws Exception {
    super.setUp();
    ActionConfig config = new ActionConfig.Builder("", "name", "").build();
    this.action = new TestAction();
    this.interceptor = new JSONValidationInterceptor();
    this.validationInterceptor = new AnnotationValidationInterceptor();
    container.inject(validationInterceptor);
    this.request = new StrutsMockHttpServletRequest();
    stringWriter = new StringWriter();
    PrintWriter writer = new PrintWriter(stringWriter);
    this.response = new StrutsMockHttpServletResponse();
    response.setWriter(writer);
    ActionContext context = ActionContext.getContext();
    context.put(StrutsStatics.HTTP_REQUEST, request);
    context.put(StrutsStatics.HTTP_RESPONSE, response);
    StrutsMockServletContext servletContext = new StrutsMockServletContext();
    context.put(StrutsStatics.SERVLET_CONTEXT, servletContext);
    invocation = new MockActionInvocation();
    ActionContext.getContext().withActionInvocation(invocation);
    invocation.setAction(action);
    invocation.setInvocationContext(context);
    MockActionProxy proxy = new MockActionProxy();
    proxy.setMethod("execute");
    proxy.setAction(action);
    proxy.setConfig(config);
    invocation.setProxy(proxy);
}
Also used : ActionConfig(com.opensymphony.xwork2.config.entities.ActionConfig) MockActionInvocation(com.opensymphony.xwork2.mock.MockActionInvocation) ActionContext(com.opensymphony.xwork2.ActionContext) StringWriter(java.io.StringWriter) MockActionProxy(com.opensymphony.xwork2.mock.MockActionProxy) AnnotationValidationInterceptor(org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor) PrintWriter(java.io.PrintWriter)

Aggregations

ValidationInterceptor (com.opensymphony.xwork2.validator.ValidationInterceptor)18 ActionConfig (com.opensymphony.xwork2.config.entities.ActionConfig)5 InterceptorMapping (com.opensymphony.xwork2.config.entities.InterceptorMapping)4 RuntimeConfiguration (com.opensymphony.xwork2.config.RuntimeConfiguration)2 ActionContext (com.opensymphony.xwork2.ActionContext)1 ActionInvocation (com.opensymphony.xwork2.ActionInvocation)1 ActionProxy (com.opensymphony.xwork2.ActionProxy)1 PackageConfig (com.opensymphony.xwork2.config.entities.PackageConfig)1 ResultConfig (com.opensymphony.xwork2.config.entities.ResultConfig)1 ContainerBuilder (com.opensymphony.xwork2.inject.ContainerBuilder)1 ParametersInterceptor (com.opensymphony.xwork2.interceptor.ParametersInterceptor)1 MockActionInvocation (com.opensymphony.xwork2.mock.MockActionInvocation)1 MockActionProxy (com.opensymphony.xwork2.mock.MockActionProxy)1 MockResult (com.opensymphony.xwork2.mock.MockResult)1 PrintWriter (java.io.PrintWriter)1 StringWriter (java.io.StringWriter)1 HashMap (java.util.HashMap)1 Set (java.util.Set)1 ActionMapper (org.apache.struts2.dispatcher.mapper.ActionMapper)1 DefaultActionMapper (org.apache.struts2.dispatcher.mapper.DefaultActionMapper)1