StrutsTestCase 测试和“错误”从 Struts2 操作类返回

发布于 2024-09-06 03:10:04 字数 533 浏览 3 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

有木有妳兜一样 2024-09-13 03:10:04

在“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'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文