使用 Stripes 在控制器测试中设置请求主体
我正在创建一个 ActionBean,它接受包含 XML 消息的请求。有没有办法让我使用 Stripes 中包含的模拟框架来模拟此操作?
I'm creating an ActionBean that takes a request that contains an XML message. Is there a way for me to simulate this operation using the mocking framework included in Stripes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚意识到我可能可以从自定义 ActionBeanContext 方法模拟它,而实际的应用程序上下文实现将直接访问请求对象。
I just realized I could probably just mock it from a custom ActionBeanContext method while the actual application context implementation will access the request object directly.
虽然 Stripes 模拟框架做得很好,但我经常发现对操作 bean 进行单元测试会更干净,就像它只是一个 POJO 一样。对于更复杂的测试,我使用 Mockito (或 EasyMock)。
While the Stripes mock framework does a good job, I often find it cleaner to just unit test the action bean as if it were just a POJO. For more complex test I use Mockito (or EasyMock).