Grails - 在集成测试中使用参数重定向()

发布于 2024-12-01 15:18:49 字数 425 浏览 0 评论 0原文

预先感谢您提供的任何帮助。 我有一个方法,在控制器内部以经典重定向结束,如下所示:

redirect(action: 'login', params: params)

我想在我的集成测试中测试它。 对于 action 部分,我执行以下操作:

assert creditProviderController.response.redirectedUrl.startsWith("/creditProvider/login")

首先,是否有更干净的方法可以避免 startsWith() 调用? 然后,我如何测试 params 部分?

我一直在环顾四周,找不到这个答案。

祝您度过愉快的一天!

Thank you in advance for any help provided.
I have a method, inside a controller which ends with a classical redirect, as follows:

redirect(action: 'login', params: params)

I would like to test this in my integration test.
For the action part, I do as follows:

assert creditProviderController.response.redirectedUrl.startsWith("/creditProvider/login")

First of all, isn't there anything cleaner to avoid the startsWith() call ?
And then, how can I test the params part ?

I have been looking around and cannot find this answer.

I wish you a pleasant day !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

睫毛溺水了 2024-12-08 15:18:49
assert response.redirectedUrl == '/roleClientProfile/create?user.id=1'
assert response.redirectedUrl == '/roleClientProfile/create?user.id=1'
度的依靠╰つ 2024-12-08 15:18:49

我建议通过扩展 ControllerUnitTestCase 的单元测试来测试控制器。这为您提供了一种非常干净的方法来测试对redirect() 的调用。例如:

assertEquals("login", redirectArgs.action)
assertNotNull(redirectArgs.params.username)

通过单元测试(尤其是控制器操作中的流程逻辑)进行尽可能合理的测试,并使用集成测试来确保一切正常运行并验证系统状态。

I would recommend testing the controller via a unit test that extends ControllerUnitTestCase. That gives you a very clean way to test your call to redirect(). For example:

assertEquals("login", redirectArgs.action)
assertNotNull(redirectArgs.params.username)

Test as much as reasonable via unit tests (especially the flow logic in controller actions), and use integration tests just to make sure everything plays nicely together and to verify the system state.

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