mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7bd85a8fc2
This is required because the JSON gem is incompatible with Rails behavior and was not allowing ActiveModel::Errors to be serialized. So we need to ensure Rails implementation is the one triggered. [#4890 state:resolved]
73 lines
1.8 KiB
Ruby
73 lines
1.8 KiB
Ruby
# encoding: utf-8
|
|
require 'cases/helper'
|
|
|
|
require 'models/topic'
|
|
require 'models/person'
|
|
require 'models/custom_reader'
|
|
|
|
class PresenceValidationTest < ActiveModel::TestCase
|
|
|
|
teardown do
|
|
Topic.reset_callbacks(:validate)
|
|
Person.reset_callbacks(:validate)
|
|
CustomReader.reset_callbacks(:validate)
|
|
end
|
|
|
|
def test_validate_presences
|
|
Topic.validates_presence_of(:title, :content)
|
|
|
|
t = Topic.new
|
|
assert t.invalid?
|
|
assert_equal ["can't be blank"], t.errors[:title]
|
|
assert_equal ["can't be blank"], t.errors[:content]
|
|
|
|
t.title = "something"
|
|
t.content = " "
|
|
|
|
assert t.invalid?
|
|
assert_equal ["can't be blank"], t.errors[:content]
|
|
|
|
t.content = "like stuff"
|
|
|
|
assert t.valid?
|
|
end
|
|
|
|
def test_accepts_array_arguments
|
|
Topic.validates_presence_of %w(title content)
|
|
t = Topic.new
|
|
assert t.invalid?
|
|
assert_equal ["can't be blank"], t.errors[:title]
|
|
assert_equal ["can't be blank"], t.errors[:content]
|
|
end
|
|
|
|
def test_validates_acceptance_of_with_custom_error_using_quotes
|
|
Person.validates_presence_of :karma, :message => "This string contains 'single' and \"double\" quotes"
|
|
p = Person.new
|
|
assert p.invalid?
|
|
assert_equal "This string contains 'single' and \"double\" quotes", p.errors[:karma].last
|
|
end
|
|
|
|
def test_validates_presence_of_for_ruby_class
|
|
Person.validates_presence_of :karma
|
|
|
|
p = Person.new
|
|
assert p.invalid?
|
|
|
|
assert_equal ["can't be blank"], p.errors[:karma]
|
|
|
|
p.karma = "Cold"
|
|
assert p.valid?
|
|
end
|
|
|
|
def test_validates_presence_of_for_ruby_class_with_custom_reader
|
|
CustomReader.validates_presence_of :karma
|
|
|
|
p = CustomReader.new
|
|
assert p.invalid?
|
|
|
|
assert_equal ["can't be blank"], p.errors[:karma]
|
|
|
|
p[:karma] = "Cold"
|
|
assert p.valid?
|
|
end
|
|
end
|