Rspec验证失败 - 属性不能为空,但不是空白

时间:2011-10-15 22:46:34

标签: ruby-on-rails rspec

我刚刚编写了一个测试,用于测试新用户创建是否也包含管理设置。这是测试:

describe User do

  before(:each) do
    @attr = { 
      :name => "Example User", 
      :email => "user@example.com",
      :admin => "f"
    }
  end

  it "should create a new instance given valid attributes" do
    User.create!(@attr)
  end

  it "should require a name" do
    no_name_user = User.new(@attr.merge(:name => ""))
    no_name_user.should_not be_valid
  end

  it "should require an email" do
    no_email_user = User.new(@attr.merge(:email => ""))
    no_email_user.should_not be_valid
  end

  it "should require an admin setting" do
    no_admin_user = User.new(@attr.merge(:admin => ""))
    no_admin_user.should_not be_valid
  end

end

然后,在我的用户模型中,我有:

class User < ActiveRecord::Base
  attr_accessible :name, :email, :admin

  has_many :ownerships
  has_many :projects, :through => :ownerships

  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 :admin, :presence => true

end

我清楚地创建了一个具有管理员设置的新用户,为什么它说它是假的?我为admin设置创建了迁移:admin:boolean。我做错了吗?

这是错误:

Failures:

  1) User should create a new instance given valid attributes
     Failure/Error: User.create!(@attr)
     ActiveRecord::RecordInvalid:
       Validation failed: Admin can't be blank
     # ./spec/models/user_spec.rb:14:in `block (2 levels) in <top (required)>'

奇怪的是,当我评论出验证时:admin,:presence =&gt;是的,测试正确地创建了用户,但在“用户应该需要管理员设置”

时失败

编辑:当我将@attr:admin值更改为“t”时,它可以工作!当值为false时,为什么它不起作用?

1 个答案:

答案 0 :(得分:25)

来自rails guides

  

自false.blank?是的,如果你想验证一个存在的话   布尔字段你应该使用validates:field_name,:inclusion =&gt; {   :in =&gt; [true,false]}。

基本上,看起来ActiveRecord在验证之前将您的“f”转换为false,然后它运行false.blank?并返回true(意味着该字段不存在) ,导致验证失败。因此,要在您的情况下修复它,请更改您的验证:

validates :admin, :inclusion => { :in => [true, false] }

对我来说似乎有点hacky ......希望Rails开发人员在将来的版本中重新考虑这一点。