相关型号:
class User < ActiveRecord::Base
acts_as_authentic
end
class UserSession < Authlogic::Session::Base
end
应用控制器:
class ApplicationController < ActionController::Base
helper :all
protect_from_forgery
helper_method :current_user_session, :current_user
private
def current_user_session
return @current_user_session if defined?(@current_user_session)
@current_user_session = UserSession.find
end
def current_user
return @current_user if defined?(@current_user)
@current_user = current_user_session && current_user_session.record
end
end
这是Rspec:
describe "Rate Function" do
include Authlogic::TestCase
before(:each) do
current_user = FactoryGirl.create(:user, persistence_token: "pt", email: "new@example.com", password: 'password', password_confirmation: 'password')
activate_authlogic
UserSession.create(current_user)
end
it "Some test for rating..." do
get "/reviews/rate", {:format => :json, :vehicle_id => 3}
# other stuff here, doesn't matter what it is because it never gets here
end
after(:each) do
end
end
这是用户的 Rspec 定义:
FactoryGirl.define do
factory :user do
email "email@example.com"
password "password"
password_confirmation "password"
persistence_token "pertoken"
end
end
问题是每次我current_user
从任何控制器方法调用时,它总是返回nil
,这是因为UserSession.find
总是nil
在ApplicationController
.
有趣的是,如果我在 Rspec 中(而不是在控制器中)运行以下命令,则UserSession.find
可以正常工作并且just_created_session
不为零。
UserSession.create(current_user)
just_created_session = UserSession.find
所以问题是特定于UserSession.find
在控制器中调用的。
任何帮助表示赞赏。
环境
Ruby: 1.9.3p392
Rails: 3.2.12
Authlogic: 3.2.0
Factory Girl: 4.2.0
Rspec: 2.13.0
OS: Windows 7
更新:我看了看UserSession.create
,它所做的只是:
def create(*args, &block)
session = new(*args)
session.save(&block)
session
end
由于从规范调用时我什至不存储返回值,该方法似乎也没有进行任何存储,我不确定我们希望User.find
如何找到任何东西。