【发布时间】:2014-04-11 03:58:35
【问题描述】:
我似乎永远无法弄清楚为什么这三个测试没有通过。我对rails很陌生,但我觉得我已经尝试了所有的东西,至少根据教程。我敢肯定这是显而易见的,但我试图找到答案的尝试都是徒劳的。我失败的测试如下(来自 Michael Hartl 的 Rails 教程)。谢谢。
失败:
1) 密码不存在时的用户返回具有有效密码的身份验证方法的值 失败/错误:它 { 应该 eq found_user.authenticate(@user.password) } 无方法错误: '
中未定义的方法authenticate' for nil:NilClass
# ./spec/models/user_spec.rb:94:inblock(5 级)
2) 密码不存在时的用户返回值无效密码的身份验证方法
失败/错误:let(:user_for_invalid_password) { found_user.authenticate("invalid") }
无方法错误:
'中未定义的方法authenticate' for nil:NilClass
# ./spec/models/user_spec.rb:98:inblock(5级)
# ./spec/models/user_spec.rb:100:in `block (5 levels) in '
3) 密码不存在时的用户返回值无效密码的身份验证方法
失败/错误:let(:user_for_invalid_password) { found_user.authenticate("invalid") }
无方法错误:
'中未定义的方法authenticate' for nil:NilClass
# ./spec/models/user_spec.rb:98:inblock(5级)
# ./spec/models/user_spec.rb:101:in `block (5 levels) in '
User_spec 测试
需要'spec_helper'
describe User do
before do
@user = User.new(name: "Example User", email: "user@example.com",
password: "foobar", password_confirmation: "foobar")
end
subject { @user }
it { should respond_to(:name) }
it { should respond_to(:email) }
it { should respond_to(:password_digest) }
it { should respond_to(:password) }
it { should respond_to(:password_confirmation) }
it { should respond_to(:authenticate) }
it { should be_valid }
describe "when name is not present" do
before { @user.name = " " }
it { should_not be_valid }
end
it "should be valid" do
expect(@user).to be_valid
end
describe "when email is not present" do
before { @user.email = " " }
it { should_not be_valid }
end
describe "when name is too long" do
before { @user.name = 'a' * 51 }
it { should_not be_valid }
end
describe "when email format is invalid" do
it "should be invalid" do
addresses = %w[user@foo,com user_at_foo.org example.user@foo.
foo@bar_baz.com foo@bar+baz.com]
addresses.each do |invalid_address|
@user.email = invalid_address
expect(@user).not_to be_valid
end
end
end
describe "when email format is valid" do
it "should be valid" do
addresses = %w[user@foo.COM A_US-ER@f.b.org frst.lst@foo.jp a+b@baz.cn]
addresses.each do |valid_address|
@user.email = valid_address
expect(@user).to be_valid
end
end
end
describe "when email address is already taken" do
before do
user_with_same_email = @user.dup
user_with_same_email.email = @user.email.upcase
user_with_same_email.save
end
it { should_not be_valid }
end
describe "when password is not present" do
before do
@user = User.new(name:"Example User", email: "user@example.com",
password: " ", password_confirmation: " ")
end
it { should_not be_valid }
describe "when password does not match confirmation" do
before { @user.password_confirmation = "mismatch" }
it { should_not be_valid }
end
describe "with a password thats too short" do
before { @user.password = @user.password_confirmation = "a" * 5 }
it { should be_invalid }
end
describe "return value of authenticate method" do
before { @user.save }
let(:found_user) { User.find_by(email: @user.email) }
describe "with valid password" do
it { should eq found_user.authenticate(@user.password) }
end
describe "with invalid password" do
let(:user_for_invalid_password) { found_user.authenticate("invalid") }
it { should_not eq user_for_invalid_password }
specify { expect(user_for_invalid_password).to be_false }
end
end
结束 结束
用户模型
class User < ActiveRecord::Base
before_save { self.email = email.downcase }
validates :name, presence: true, length: { maximum: 50 }
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX },
uniqueness: { case_sensitive: false }
has_secure_password
validates :password, length: { minimum: 6 }
end
【问题讨论】:
标签: ruby-on-rails authentication ruby-on-rails-4 railstutorial.org