2010-05-08 16:27:49 -04:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'cases/helper'
|
|
|
|
|
|
|
|
require 'models/topic'
|
|
|
|
|
2010-05-08 17:03:45 -04:00
|
|
|
class ValidationsContextTest < ActiveModel::TestCase
|
2010-05-08 16:27:49 -04:00
|
|
|
|
|
|
|
def teardown
|
|
|
|
Topic.reset_callbacks(:validate)
|
|
|
|
Topic._validators.clear
|
|
|
|
end
|
|
|
|
|
|
|
|
ERROR_MESSAGE = "Validation error from validator"
|
|
|
|
|
|
|
|
class ValidatorThatAddsErrors < ActiveModel::Validator
|
|
|
|
def validate(record)
|
|
|
|
record.errors[:base] << ERROR_MESSAGE
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-21 12:00:38 -04:00
|
|
|
test "with a class that adds errors on create and validating a new model with no arguments" do
|
2013-05-01 20:10:06 -04:00
|
|
|
Topic.validates_with(ValidatorThatAddsErrors, on: :create)
|
2010-05-08 16:27:49 -04:00
|
|
|
topic = Topic.new
|
2013-04-21 12:00:38 -04:00
|
|
|
assert topic.valid?, "Validation doesn't run on valid? if 'on' is set to create"
|
2010-05-08 16:27:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "with a class that adds errors on update and validating a new model" do
|
2013-05-01 20:10:06 -04:00
|
|
|
Topic.validates_with(ValidatorThatAddsErrors, on: :update)
|
2010-05-08 16:27:49 -04:00
|
|
|
topic = Topic.new
|
|
|
|
assert topic.valid?(:create), "Validation doesn't run on create if 'on' is set to update"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "with a class that adds errors on create and validating a new model" do
|
2013-05-01 20:10:06 -04:00
|
|
|
Topic.validates_with(ValidatorThatAddsErrors, on: :create)
|
2010-05-08 16:27:49 -04:00
|
|
|
topic = Topic.new
|
|
|
|
assert topic.invalid?(:create), "Validation does run on create if 'on' is set to create"
|
|
|
|
assert topic.errors[:base].include?(ERROR_MESSAGE)
|
|
|
|
end
|
2013-05-01 20:10:06 -04:00
|
|
|
end
|