为什么validate_acceptance_of没有破坏我的功能测试?

时间:2015-01-23 04:50:54

标签: ruby-on-rails functional-testing

使用Ruby on Rails 4.2.0.rc2我在用户注册中添加了“接受服务条款”复选框

在我添加的用户模型中

attr_accessor :terms_of_service
validates_acceptance_of :terms_of_service, acceptance: true

在视图中

<%= f.check_box :terms_of_service %>

最后在控制器中我将它添加到参数列表

def user_params
  params.require(:user).permit(:name, :email, :password, :password_confirmation, :terms_of_service)
end

这可以按预期工作,但由于我对实现进行了更改,我预计相关测试将处于红色状态。但是,这个测试通过了,我不明白为什么:

assert_difference 'User.count', 1 do
   post users_path, user: { name:  "Example User",
                            email: "user@example.com",
                            password:              "password",
                            password_confirmation: "password" }
   end

我可以重新编写我的测试

  test "accept terms of service" do
    get signup_path
    assert_no_difference 'User.count' do
        post users_path, user: { name:  "Example User",
                                 email: "user@example.com",
                                 password:              "password",
                                 password_confirmation: "password",
                                 terms_of_service: "0" }
    end

    assert_difference 'User.count', 1 do
        post users_path, user: { name:  "Example User",
                                 email: "user@example.com",
                                 password:              "password",
                                 password_confirmation: "password",
                                 terms_of_service: "1" }
    end
  end

但我很好奇为什么原始测试未能失败。我从中得到的是,validates_acceptance_of传递为nil。

这是预期的行为吗?

1 个答案:

答案 0 :(得分:1)

简而言之,是的,nil是允许的。我之前遇到过同样的问题。

active_model /验证/ acceptance.rb

module ActiveModel
  module Validations
    class AcceptanceValidator < EachValidator # :nodoc:
      def initialize(options)
        super({ allow_nil: true, accept: "1" }.merge!(options))
        setup!(options[:class])
      end
      # ...
    end
    # ...
  end
  # ...
end

在初始化程序中,它将allow_nil与选项合并,所以是的,nil(或者我应该说缺少值)是允许的。 They mention it in the Rails Guide for acceptance,但我错过了。

在我的测试中,这也是我的几次 - 当我确定他们不应该通过时,我不断通过验证。现在我们知道为什么了!