美好的一天!我正在练习Michael Hartle的“Ruby on Rails Tutorial”中的材料。 下面是我收到的失败消息,即使“预期”和“得到”似乎匹配。您能否给我一些建议,看看我应该如何解决这个问题? 非常感谢!
以下是实施代码:
class User < ActiveRecord::Base
attr_accessor :password
attr_accessible :name, :emp_id, :dept_id, :password, :password_confirmation
validates :emp_id, :presence => true
validates :name, :presence => true,
:length => { :maximum => 50 }
validates :password, :presence => true,
:confirmation => true,
:length => { :within => 6..40 }
before_save :encrypt_password
def has_password?(submitted_password)
encrypted_password == encrypt(submitted_password)
end
def self.authenticate(emp_id, submitted_password)
user = find_by_emp_id(emp_id)
return nil if user.nil?
return user if user.has_password?(submitted_password)
end
private
def encrypt_password
self.salt = make_salt if new_record?
self.encrypted_password = encrypt(password)
end
def encrypt(string)
secure_hash("#{salt}--#{string}")
end
def make_salt
secure_hash("#{Time.now.utc}--#{password}")
end
def secure_hash(string)
Digest::SHA2.hexdigest(string)
end
end
以下是SPEC代码:
require 'spec_helper'
describe User do
before(:each) do
@attr = {:name=>"Example", :dept_id=>01, :emp_id=>10, :password=>"pwdabcd", :password_confirmation => "pwdabcd" }
end
.
.
.
describe "password encryption" do
before(:each) do
@user = User.create!(@attr)
end
.
.
.
describe "authenticate method" do
it "should return the user on emp_id password match" do
matching_user = User.authenticate(@attr[:emp_id], @attr[:password])
matching_user.should == @user
end
end
end
end
非常感谢您的帮助。 祝你有愉快的一天!
答案 0 :(得分:2)
凯文 - 当你看到类似的失败消息时,对象(#<User ...>
)的表示取决于对象,因此它可能不会显示由{{进行比较的所有内容。 1}}。我的猜测是它与==
有关,但我不确定。它看起来并不像实现正在使用它,因此请尝试从规范中的:password_confirmation
和password_confirmation
声明中删除@attr
,然后查看它是否通过。