2

私はHartlのRailsチュートリアルを通して作業しています。私は第7章に到達しましたが、RSpecテストケースの1つが失敗しています。具体的には、一致しないパスワードを処理するケースです。

describe "has_password? method" do

    it "should be true if the passwords match" do
        @user.has_password?(@attr[:password]).should be_true
    end

    it "should be false if the passwords don't match" do
        @user.has_password?("invalid").should be_false
    end
end

ターミナルからの出力:障害:

  1) User password encryption has_password? method should be false if the passwords don't match
 Failure/Error: @user.has_password?("invalid").should be_false
   expected "273725daa81e74764ea1e941a0789da7d580656cd321c64e39d1389f6a7e14d9" to be false
 # ./spec/models/user_spec.rb:111

これが私の/user.rbコードです:

require 'digest'
class User < ActiveRecord::Base
attr_accessor :password
attr_accessible :name, :email, :password, :password_confirmation

email_regex = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i

validates :name,  :presence => true,
                  :length   => { :maximum => 50 }
validates :email, :presence => true,
                  :format   => { :with => email_regex },
                  :uniqueness => { :case_sensitive => false }

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

private 

    def encrypt_password
        self.salt = make_salt unless has_password? (password)
        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

私の人生に何が悪いのか理解できないようです。私は助けに感謝します!

4

1 に答える 1

3

あなたのhas_password?方法で

encrypted_password = encrypt(submitted_password)読む必要があります: encrypted_password == encrypt(submitted_password)

于 2013-02-22T00:42:57.643 に答える