Skip to content

Commit

Permalink
Fixed that validate_length_of lost :on option when :within was specif…
Browse files Browse the repository at this point in the history
…ied #1195 [jhosteny@mac.com]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1258 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Apr 30, 2005
1 parent 537efa3 commit 9f1b577
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 3 deletions.
2 changes: 2 additions & 0 deletions activerecord/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
*SVN*

* Fixed that validate_length_of lost :on option when :within was specified #1195 [jhosteny@mac.com]

* Added encoding and min_messages options for PostgreSQL #1205 [shugo]. Configuration example:

development:
Expand Down
8 changes: 5 additions & 3 deletions activerecord/lib/active_record/validations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -373,15 +373,17 @@ def validates_length_of(*attrs)
option_value = options[range_options.first]

# Declare different validations per option.

validity_checks = { :is => "==", :minimum => ">=", :maximum => "<=" }
message_options = { :is => :wrong_length, :minimum => :too_short, :maximum => :too_long }

case option
when :within, :in
raise ArgumentError, ':within must be a Range' unless option_value.is_a?(Range) # '
validates_length_of attrs, :minimum => option_value.begin, :allow_nil => options[:allow_nil]
validates_length_of attrs, :maximum => option_value.end, :allow_nil => options[:allow_nil]
(options_without_range = options.dup).delete(option)
(options_with_minimum = options_without_range.dup).store(:minimum, option_value.begin)
validates_length_of attrs, options_with_minimum
(options_with_maximum = options_without_range.dup).store(:maximum, option_value.end)
validates_length_of attrs, options_with_maximum
when :is, :minimum, :maximum
raise ArgumentError, ":#{option} must be a nonnegative Integer" unless option_value.is_a?(Integer) and option_value >= 0 # '
message = options[:message] || options[message_options[option]]
Expand Down
42 changes: 42 additions & 0 deletions activerecord/test/validations_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,48 @@ def test_optionally_validates_length_of_using_within
assert t.valid?
end

def test_optionally_validates_length_of_using_within_on_create
Topic.validates_length_of :title, :content, :within => 5..10, :on => :create, :too_long => "my string is too long: %d"

t = Topic.create("title" => "thisisnotvalid", "content" => "whatever")
assert !t.save
assert t.errors.on(:title)
assert_equal "my string is too long: 10", t.errors[:title]

t.title = "butthisis"
assert t.save

t.title = "few"
assert t.save

t.content = "andthisislong"
assert t.save

t.content = t.title = "iamfine"
assert t.save
end

def test_optionally_validates_length_of_using_within_on_update
Topic.validates_length_of :title, :content, :within => 5..10, :on => :update, :too_short => "my string is too short: %d"

t = Topic.create("title" => "vali", "content" => "whatever")
assert !t.save
assert t.errors.on(:title)

t.title = "not"
assert !t.save
assert t.errors.on(:title)
assert_equal "my string is too short: 5", t.errors[:title]

t.title = "valid"
t.content = "andthisistoolong"
assert !t.save
assert t.errors.on(:content)

t.content = "iamfine"
assert t.save
end

def test_validates_length_of_using_is
Topic.validates_length_of :title, :is => 5

Expand Down

0 comments on commit 9f1b577

Please sign in to comment.