在 rspec 中指定查询字符串

发布于 2024-12-05 07:18:24 字数 250 浏览 1 评论 0原文

我正在与第三方库集成,该库使用哈希验证查询字符串(要求保留查询字符串的顺序)。有没有办法将查询字符串文字传递给 rspec?

您可以在 TestUnit 中执行此操作,

@request.env['QUERY_STRING'] = 'this=is&in=order'
post :whatever

但是当您在 rspec 中执行此操作时,不会传递查询字符串(准确地说,该操作未找到任何参数)。

I'm integrating with a 3rd party library that validates the query string with a hash (requiring that the order of the query string be preserved). Is there a way to pass a query string literal to rspec?

You can do it in TestUnit with

@request.env['QUERY_STRING'] = 'this=is&in=order'
post :whatever

But when you do that in rspec, the query string is not passed (to be precise, the action finds no parameters).

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

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

发布评论

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

评论(1

捶死心动 2024-12-12 07:18:24

你必须真正发布数据。

@request.env['QUERY_STRING'].should eq 'this=is&in=order'
post :whatever, :this => "is", :in => "order" 

You have to really post the data.

@request.env['QUERY_STRING'].should eq 'this=is&in=order'
post :whatever, :this => "is", :in => "order" 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文