我正在尝试使用apache bench在我的rails应用程序中加载测试创建操作,但是ab似乎没有发送POST数据 - 尽管它确实提交了POST而不是GET请求.
这是我运行的命令:
ab -n 1 -p post -v 4 "http://oz01.zappos.net/registrations"
Run Code Online (Sandbox Code Playgroud)
这是帖子文件的内容:
authenticity_token=M18KXwSOuIVbDPZOVQy5h8aSGoU159V9S5uV2lpsAI0
Run Code Online (Sandbox Code Playgroud)
rails日志显示POST请求,但不显示任何发布的参数:
Started POST "/registrations" for 10.66.210.70 at Thu Sep 09 17:48:06 -0700 2010
Processing by RegistrationsController#create as */*
Rendered registrations/new.html.erb within layouts/application (14.0ms)
Completed 200 OK in 24ms (Views: 14.6ms | ActiveRecord: 0.1ms)
Run Code Online (Sandbox Code Playgroud)
而来自浏览器的POST请求会导致此日志条目:
Started POST "/registrations" for 192.168.66.20 at Thu Sep 09 17:49:47 -0700 2010
Processing by RegistrationsController#create as HTML
Parameters: {"submit"=>"true", "authenticity_token"=>"AfNG0UoTbJXnxke2725efhYAoi3ogddMC7Uqu5mAui0=", "utf8"=>"\342\234\223", "registration"=>{"city"=>"", "address"=>"", "name"=>"", "zip"=>"", "optin"=>"0", "state"=>"", "email"=>""}}
Rendered registrations/new.html.erb within …Run Code Online (Sandbox Code Playgroud)