Struts2 JUnit ActionContext对象

时间:2014-08-21 21:56:34

标签: java junit struts2 actioncontext

问题:测试期间Struts ActionContext为空

使用Struts2 JUnit插件我有以下测试:

public class MainActionIT extends StrutsJUnit4TestCase 
{
  @Test
  public void testAction() {
    Map<String, Object> application = new HashMap<String, Object>();
    application.put("options","home");
    ActionContext.getContext().put("application",application);
    ActionProxy proxy = getActionProxy("/home");
    String result = proxy.execute();

  }

}

两个相关的课程如下:

public class MainAction extends BaseAction 
{
  @Action(value = "/home", results = {@Result(name = "success", location = "home.jsp")}
  public String getHome()
  {
    Map options = getHomeOptions();
    return SUCCESS;
  }
}

public class BaseAction extends ActionSupport
{
  public Map getHomeOptions() 
  {
    return ActionContext.getContext().get("application").get("options");
  }
}

我正在尝试使用"application"模仿ActionContext的{​​{1}}对象。 值在测试中设置,但代码在HashMap中执行后,值为BaseAction。 类似的问题在这里(link),但答案在我的情况下是不正确的。

是否创建了不同的null?如果是这样,我如何将变量传递给ActionContext

1 个答案:

答案 0 :(得分:0)

在操作执行期间创建操作上下文。您应该检查此代码以证明该概念。

@Test
public void shouldAdditionalContextParamsBeAvailable() throws Exception {
    // given
    String key = "application";
    assertNull(ActionContext.getContext().get(key));

    // when
    String output = executeAction("/home");

    // then
    assertNotNull(ActionContext.getContext().get(key));
}

@Override
protected void applyAdditionalParams(ActionContext context) {
    Map<String, Object> application = new HashMap<String, Object>();
    application.put("options","home");
    context.put("application", application);
}

关于模板

  

applyAdditionalParams(ActionContext)可以被覆盖   在子类中提供额外的参数和设置   行动调用