it "should lastname" do
valid_params[:lastname] = nil
user = User.new(valid_params)
expect(user).to_not be_valid
end
it "should have username" do
valid_params[:username] = nil
user = User.new(valid_params)
expect(user).to_not be_valid
end
迁移文件
create_table :users do |t|
## Database authenticatable
t.string :email, null: false, default: ""
t.string :encrypted_password, null: false, default: ""
t.string :firstname, null: false, default: ""
t.string :lastname, null: false, default: ""
t.string :username, null: false, default: ""
t.boolean :admin, default: false
型号我没有任何验证,除了Devise验证
class User < ApplicationRecord
after_initialize :set_initial_password
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
private
def set_initial_password
if !self.firstname.nil? && !self.lastname.nil?
self.password = self.firstname.downcase + self.lastname.downcase
end
end
end
错误
1) User should have username
Failure/Error: expect(user).to_not be_valid
expected #<User id: nil, email: "wynell_daniel@schiller.co", firstname: "Garfield", lastname: "Koepp", username: nil, admin: false, created_at: nil, updated_at: nil> not to be valid
Rspec测试确实通过了姓,但没有通过用户名事件,尽管他们有相同的条件。
要使验证首先失败,您必须进行验证,因此您的模型需要以下
validates :username, presence: true
模型不会根据数据库进行验证。他们将根据模型中的验证方法进行验证。如果没有验证,您的模型将是有效的,但如果您在DB 中没有空限制,数据库将拒绝它
更新回复评论
你认为正在发生的事情并不是实际发生的事情。姓氏测试通过的原因只有一个,那就是用户对象无效。由于您还没有发布完整的测试,因此只有您才能确定在这种情况下用户对象未通过验证的原因。
要找出错误是什么,您应该检查对象的错误。尝试以下代码(未经测试,但应该可以正常工作(,并查看控制台输出中的无效属性列表
it "should lastname" do
valid_params[:lastname] = nil
user = User.new(valid_params)
user.errors.each do |error|
puts("Err: #{error.inspect}")
end
expect(user).to_not be_valid
end
然后你就会明白到底是什么失败了。如果lastname真的失败了,您会看到lastname的原因为空白或无效。如果lastname没有出现在输出中,那么它就没有错误。如果您在错误列表中看到姓氏,则devise
中会对姓氏进行验证。我对devise
一点也不熟悉,因为我总是使用自己的身份验证逻辑,所以这可能与您包含的某个选项有关。
我说得再清楚也不为过。如果没有验证代码,那么模型实例就不可能无效。