问题描述
在我的一生中,我不明白为什么 Authlogic 没有让我在此集成测试中登录.我没有遇到任何问题,Authlogic 使用此代码将我登录到功能测试中.根据 authlogic rdocs (http://tinyurl.com/mb2fp2),模拟登录状态是功能相同集成测试,所以我很困惑.非常感谢任何帮助!
For the life of me I don't understand why Authlogic isn't logging me in in this integration test. I haven't had any problems w/ Authlogic logging me in in functional tests using this code. According to the authlogic rdocs (http://tinyurl.com/mb2fp2), simulating a logged-in state is the same in functional & integration tests, so i'm pretty confused. any help is MUCH appreciated!
class TipsController < ApplicationController
before_filter :require_user, :only => [:destroy, :undelete]
def destroy
@tip = Tip.find(params[:id])
if can_delete?(@tip)
@tip.destroy
set_flash("good", "Tip deleted. <a href=\"#{undelete_tip_url(@tip.id)}\">Undo?</a>")
respond_to do |format|
format.html { redirect_to city_path(@tip.city)}
end
else
set_flash("bad", "Seems like you can't delete this tip, sorry.")
respond_to do |format|
format.html { render :action => "show", :id => @tip}
end
end
end
end
class DeleteTipAndRender < ActionController::IntegrationTest
context "log user in" do
setup do
@user = create_user
@tip = create_tip
end
context "delete tip" do
setup do
activate_authlogic
UserSession.create(@user)
@us = UserSession.find
post "/tips/destroy", :id => @tip.id
end
should_redirect_to("city_path(@tip.city)"){city_path(@tip.city)}
end
end
end
推荐答案
基于 user_sessions_controller
create
方法中的代码,该方法采用登录凭据的哈希值,我能够在我的集成测试中让它像这样工作:
Based on the code in the user_sessions_controller
create
method, which takes a hash of the login credentials, I was able to make it work like this in my integration test:
UserSession.create(:email => '[email protected]', :password => 'password')
但不是:
UserSession.create(@user)
这篇关于使用 Authlogic 进行集成测试?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!