Ryan Bates のHow I Test Railscast に従って、ユーザーがサインアップしたときに電子メール確認トークンを送信するように実装します。
class User < ActiveRecord::Base
has_secure_password
strip_attributes except: [:password, :password_confirmation]
...
def send_email_confirmation
generate_token(:email_token)
self.email_token_sent_at = Time.zone.now
save!
UserMailer.email_confirmation(self).deliver
end
private
def generate_token(column)
begin
self[column] = SecureRandom.urlsafe_base64
end while User.exists?(column => self[column])
end
end
これは次の場合に失敗します (機能仕様およびサインアップ プロセスを手動でクリックした場合)。
Failures:
1) UserPages sign up with valid information should create a user
Failure/Error: expect { click_button submit }.to change(User, :count).by(1)
BCrypt::Errors::InvalidSalt:
invalid salt
# ./app/models/user.rb:70:in `send_email_confirmation'
# ./app/controllers/users_controller.rb:27:in `create'
# ./spec/features/user_pages_spec.rb:165:in `block (5 levels) in <top (required)>'
# ./spec/features/user_pages_spec.rb:165:in `block (4 levels) in <top (required)>'
私はbcrypt gemを再インストールしようとしました(Devise関連であり、Deviseを使用していませんが、他の場所gem uninstall bcrypt-ruby
で提案されているように):そして、役に立ちませんgem install bcrypt-ruby
でした。アイデア?