Search in sources :

Example 11 with SimpleFooAction

use of com.opensymphony.xwork2.SimpleFooAction in project struts by apache.

the class StaticParametersInterceptorTest method testWithOneParameters.

public void testWithOneParameters() throws Exception {
    MockActionInvocation mai = new MockActionInvocation();
    MockActionProxy map = new MockActionProxy();
    ActionConfig ac = new ActionConfig.Builder("", "", "").addParam("top.name", "Santa").build();
    map.setConfig(ac);
    mai.setProxy(map);
    mai.setAction(new SimpleFooAction());
    User user = new User();
    ActionContext.getContext().getValueStack().push(user);
    int before = ActionContext.getContext().getValueStack().size();
    interceptor.intercept(mai);
    assertEquals(before, ActionContext.getContext().getValueStack().size());
    assertEquals("Santa", user.getName());
}
Also used : ActionConfig(com.opensymphony.xwork2.config.entities.ActionConfig) MockActionInvocation(com.opensymphony.xwork2.mock.MockActionInvocation) SimpleFooAction(com.opensymphony.xwork2.SimpleFooAction) MockActionProxy(com.opensymphony.xwork2.mock.MockActionProxy)

Example 12 with SimpleFooAction

use of com.opensymphony.xwork2.SimpleFooAction in project struts by apache.

the class AliasInterceptorTest method testInvalidAliasExpression.

public void testInvalidAliasExpression() throws Exception {
    Action action = new SimpleFooAction();
    MockActionInvocation mai = new MockActionInvocation();
    MockActionProxy map = new MockActionProxy();
    ActionConfig cfg = new ActionConfig.Builder("", "", "").addParam("aliases", "invalid alias expression").build();
    map.setConfig(cfg);
    mai.setProxy(map);
    mai.setAction(action);
    mai.setInvocationContext(ActionContext.getContext());
    AliasInterceptor ai = new AliasInterceptor();
    ai.init();
    ai.intercept(mai);
    ai.destroy();
}
Also used : ActionConfig(com.opensymphony.xwork2.config.entities.ActionConfig) SimpleFooAction(com.opensymphony.xwork2.SimpleFooAction) SimpleAction(com.opensymphony.xwork2.SimpleAction) Action(com.opensymphony.xwork2.Action) MockActionInvocation(com.opensymphony.xwork2.mock.MockActionInvocation) SimpleFooAction(com.opensymphony.xwork2.SimpleFooAction) MockActionProxy(com.opensymphony.xwork2.mock.MockActionProxy)

Example 13 with SimpleFooAction

use of com.opensymphony.xwork2.SimpleFooAction in project struts by apache.

the class NumberConverterTest method testStringToNumberConversionUS.

public void testStringToNumberConversionUS() throws Exception {
    // given
    NumberConverter converter = new NumberConverter();
    Map<String, Object> context = createContextWithLocale(new Locale("en", "US"));
    SimpleFooAction foo = new SimpleFooAction();
    // when
    Object value = converter.convertValue(context, foo, null, "id", ",1234", Integer.class);
    // then
    assertEquals(1234, value);
}
Also used : Locale(java.util.Locale) SimpleFooAction(com.opensymphony.xwork2.SimpleFooAction)

Aggregations

SimpleFooAction (com.opensymphony.xwork2.SimpleFooAction)12 MockActionInvocation (com.opensymphony.xwork2.mock.MockActionInvocation)11 ActionConfig (com.opensymphony.xwork2.config.entities.ActionConfig)10 MockActionProxy (com.opensymphony.xwork2.mock.MockActionProxy)10 Action (com.opensymphony.xwork2.Action)3 SimpleAction (com.opensymphony.xwork2.SimpleAction)3 HashMap (java.util.HashMap)2 Locale (java.util.Locale)2