如何在 Rails / Capybara / Cucumber 或 Rspec 中测试帖子
我正在使用 rspec、cucumber 和 capybara,我正在寻找一种方法来测试恶意用户无法破解表单然后发布到他/她无权访问的 URL。我在 cancan 中设置了权限,这样“应该”可以工作,但是,我可以测试它的唯一方法是自己破解一个表单。
我怎样才能自动化这种测试?使用 webrat,我可以在带有 rspec 的单元测试中执行此操作,例如
put :update, :user_id => @user.id, :id => @user_achievement.id
response.should contain("Error, you don't have permission to access that!")
In capybara,但是,似乎仅访问确实得到了。我找不到办法做到这一点,我已经到处搜索了。
任何帮助将不胜感激, 谢谢
I'm using rspec, cucumber and capybara and I'm looking for a way to test that a malicious user can't hack a form then post to an url he/she doesn't have permission to. I have my permissions set up in cancan such that this "should" work, however, the only way I can test it is by hacking a form myself.
How can I automate this sort of testing? With webrat I could do this in a unit test with rspec with something like
put :update, :user_id => @user.id, :id => @user_achievement.id
response.should contain("Error, you don't have permission to access that!")
In capybara, however, visit only does get's it seems. I can't find a way to do this, I've googled everwhere.
Any help would be much appreciated,
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你可以通过机架测试来做到这一点
https://github.com/brynary/rack-test
在你的 Gemfile 中:
在你的环境中。 rb 文件
步骤定义在某处:
我学到的大部分内容都来自这里: http://www.anthonyeden.com/2010/11/testing-rest-apis-with-cucumber-and-rack-test
更新:我认为您可以跳过对您的包含较新版本的 Rails 和/或 Cucumber 的 env.rb 文件(不确定是哪一个,我只是不在我的新项目中执行该部分,并且工作正常)
I think you can do this with rack-test
https://github.com/brynary/rack-test
in your Gemfile:
in your env.rb file
step defintions somewhere:
Most of what I learned came from here: http://www.anthonyeden.com/2010/11/testing-rest-apis-with-cucumber-and-rack-test
UPDATE: I think you can skip the changes to your env.rb file with newer versions of Rails and/or Cucumber (not sure which, I just don't do that part on my newer projects and it works fine)
与@Josh Crews相同,我很大程度上基于:http://www.anthonyeden.com/2010/11/testing-rest-apis-with-cucumber-and-rack-test/#comment-159。但有两个值得注意的例外:1) 我测试实际的响应正文,2) 我演示如何测试 POST 请求。以下是使用 Rails 3.0.9 的示例:
步骤:
功能:
Same as @Josh Crews I've largely based this off of: http://www.anthonyeden.com/2010/11/testing-rest-apis-with-cucumber-and-rack-test/#comment-159. But there are two notable exceptions: 1) I test the actual response body, 2) I demonstrate how to test a POST request. Here's an example using Rails 3.0.9:
Steps:
Feature: