mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
108 lines
2.7 KiB
Ruby
108 lines
2.7 KiB
Ruby
require 'cases/helper'
|
|
require 'active_support/core_ext/numeric/time'
|
|
|
|
require 'models/topic'
|
|
require 'models/person'
|
|
|
|
class ExclusionValidationTest < ActiveModel::TestCase
|
|
|
|
def teardown
|
|
Topic.clear_validators!
|
|
end
|
|
|
|
def test_validates_exclusion_of
|
|
Topic.validates_exclusion_of(:title, in: %w( abe monkey ))
|
|
|
|
assert Topic.new("title" => "something", "content" => "abc").valid?
|
|
assert Topic.new("title" => "monkey", "content" => "abc").invalid?
|
|
end
|
|
|
|
def test_validates_exclusion_of_with_formatted_message
|
|
Topic.validates_exclusion_of(:title, in: %w( abe monkey ), message: "option %{value} is restricted")
|
|
|
|
assert Topic.new("title" => "something", "content" => "abc")
|
|
|
|
t = Topic.new("title" => "monkey")
|
|
assert t.invalid?
|
|
assert t.errors[:title].any?
|
|
assert_equal ["option monkey is restricted"], t.errors[:title]
|
|
end
|
|
|
|
def test_validates_exclusion_of_with_within_option
|
|
Topic.validates_exclusion_of(:title, within: %w( abe monkey ))
|
|
|
|
assert Topic.new("title" => "something", "content" => "abc")
|
|
|
|
t = Topic.new("title" => "monkey")
|
|
assert t.invalid?
|
|
assert t.errors[:title].any?
|
|
end
|
|
|
|
def test_validates_exclusion_of_for_ruby_class
|
|
Person.validates_exclusion_of :karma, in: %w( abe monkey )
|
|
|
|
p = Person.new
|
|
p.karma = "abe"
|
|
assert p.invalid?
|
|
|
|
assert_equal ["is reserved"], p.errors[:karma]
|
|
|
|
p.karma = "Lifo"
|
|
assert p.valid?
|
|
ensure
|
|
Person.clear_validators!
|
|
end
|
|
|
|
def test_validates_exclusion_of_with_lambda
|
|
Topic.validates_exclusion_of :title, in: lambda { |topic| topic.author_name == "sikachu" ? %w( monkey elephant ) : %w( abe wasabi ) }
|
|
|
|
t = Topic.new
|
|
t.title = "elephant"
|
|
t.author_name = "sikachu"
|
|
assert t.invalid?
|
|
|
|
t.title = "wasabi"
|
|
assert t.valid?
|
|
end
|
|
|
|
def test_validates_exclusion_of_with_range
|
|
Topic.validates_exclusion_of :content, in: ("a".."g")
|
|
|
|
assert Topic.new(content: 'g').invalid?
|
|
assert Topic.new(content: 'h').valid?
|
|
end
|
|
|
|
def test_validates_exclusion_of_with_time_range
|
|
Topic.validates_exclusion_of :created_at, in: 6.days.ago..2.days.ago
|
|
|
|
assert Topic.new(created_at: 5.days.ago).invalid?
|
|
assert Topic.new(created_at: 3.days.ago).invalid?
|
|
assert Topic.new(created_at: 7.days.ago).valid?
|
|
assert Topic.new(created_at: 1.day.ago).valid?
|
|
end
|
|
|
|
def test_validates_inclusion_of_with_symbol
|
|
Person.validates_exclusion_of :karma, in: :reserved_karmas
|
|
|
|
p = Person.new
|
|
p.karma = "abe"
|
|
|
|
def p.reserved_karmas
|
|
%w(abe)
|
|
end
|
|
|
|
assert p.invalid?
|
|
assert_equal ["is reserved"], p.errors[:karma]
|
|
|
|
p = Person.new
|
|
p.karma = "abe"
|
|
|
|
def p.reserved_karmas
|
|
%w()
|
|
end
|
|
|
|
assert p.valid?
|
|
ensure
|
|
Person.clear_validators!
|
|
end
|
|
end
|