StrutsTestCase 测试和“错误”从 Struts2 操作类返回
我正在尝试使用 StrutsTestCase 来测试我的 Struts2 操作,但在从代理执行“execute()”方法时总是返回“错误”值。这是例子:
public void testSpike() 抛出异常{
request.addHeader("param1", "param"); ActionProxy proxy = getActionProxy("/action/to/test.action"); 断言NotNull(代理); TestAction 操作 = (TestAction) proxy.getAction(); 断言NotNull(动作); 字符串输出 = proxy.execute();
}
输出字符串始终为“error”。有没有办法了解那里发生了什么?日志没有说明任何内容,甚至尝试在 Action 类上放置断点进行调试也无济于事(代码永远不会在那里停止)。
有什么建议吗?
谢谢 罗伯托
I'm trying to use StrutsTestCase for testing my Struts2 actions, but I'm getting always the "error" value back while executing the "execute()" method from the proxy. Here's the example:
public void testSpike() throws Exception{
request.addHeader("param1", "param"); ActionProxy proxy = getActionProxy("/action/to/test.action"); assertNotNull(proxy); TestAction action = (TestAction) proxy.getAction(); assertNotNull(action); String output = proxy.execute();
}
the output string is always "error". Is there a way to understand what happened there? The logs are not saying anything, and even trying to debug placing a breakpoint on the Action class doesn't help (the code never stops there).
Any suggestions?
Thanks
Roberto
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“String output = proxy.execute();”行添加一个断点。在您最喜欢的 IDE 中以调试模式执行测试,并逐步执行代码以了解为什么execute() 方法始终返回“错误”。
Add a breakpoint at the line 'String output = proxy.execute();'. Execute your test in debug mode in your favorite IDE and step through the code to realize why execute() method returns always 'error'.