在我的一个控制器规范中获得了非常奇怪的rspec行为。
最好举例说明。 在红宝石中,当我设置断点时,会发生以下情况:
#rspec test
describe Api::V1::UsersController do
let(:user) { FactoryGirl.create(:user) }
describe "#show" do
it "responds successfully" do
get 'show', id: user.id
response.should be_success
end
end
#controller
class Api::V1::UsersController < AuthenticatedController
def show # !!! RubyMine breakpoint will stop execution here !!!
user = User.find(params[:id])
user_hash = User.information(user, current_user)
respond_to do |format|
format.json { render json: user_hash.to_json }
end
end
因此,上述工作按预期工作。
但是,现在这个测试失败了。
#rspec test
describe UsersController do
let(:user) { FactoryGirl.create(:user, is_admin: false) }
describe "#show" do
it "redirects non-admin" do
get 'index'
response.should redirect_to user_path(user)
end
end
#controller
class UsersController < AuthenticatedController
def index # !!! Breakpoint is never hit !!!
@users = User.all
respond_to do |format|
if current_user.is_admin
format.html
format.json { render json: @users }
else
redirect_to user_path(current_user) and return
end
end
end
By the way, this is the result:
Expected response to be a redirect to <http://test.host/users/625> but was a redirect to <https://test.host/users>
用户控制器中控制器方法中的任何断点都没有命中。 但是如果我在 API::V1::UsersController 中设置断点,则所有控制器方法都会命中。
任何指导都非常感谢。 我真的不知道如何调试它。
对不起,这个问题比什么都令人沮丧。 但我终于弄清楚了发生了什么。 提示:tail
测试.log是个好主意。
我在控制器上强制使用 ssl。 发送的请求 rspec 是 http。 ActionController::ForceSSL
将请求重定向到 https 和同一个控制器#action。 但是,此时,rspec 测试已完成并未通过测试,因为它只能看到重定向回相同的控制器#操作。
因此,在before(:each)
或类似的东西中,请使用以下内容:request.env['HTTPS'] = 'on'
. 所有测试现在都按预期工作。
在重定向测试方面,您可能已经超出了rspec的领域。我可以建议使用水豚和rspec吗?
我的来源:Rspec - 轨道 - 如何跟踪重定向http://robots.thoughtbot.com/post/33771089985/rspec-integration-tests-with-capybara