Skip to content

Commit

Permalink
r4880@ks: jeremy | 2006-07-30 23:52:59 -0700
Browse files Browse the repository at this point in the history
 Only set method_name = md.pre_match if the pre_match is an attribute. Plays nicely with other ? suffixed attribute methods.
 r4881@ks:  jeremy | 2006-07-30 23:53:37 -0700
 Heavier testing for attribute method suffixes.


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4635 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
jeremy committed Jul 31, 2006
1 parent 63ad8b4 commit dd664c3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
3 changes: 2 additions & 1 deletion activerecord/lib/active_record/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1763,7 +1763,8 @@ def method_missing(method_id, *args, &block)
method_name = method_id.to_s
if @attributes.include?(method_name) or
(md = /\?$/.match(method_name) and
@attributes.include?(method_name = md.pre_match))
@attributes.include?(query_method_name = md.pre_match) and
method_name = query_method_name)
define_read_methods if self.class.read_methods.empty? && self.class.generate_read_methods
md ? query_attribute(method_name) : read_attribute(method_name)
elsif self.class.primary_key.to_s == method_name
Expand Down
31 changes: 25 additions & 6 deletions activerecord/test/attribute_methods_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,30 @@

class AttributeMethodsTest < Test::Unit::TestCase
def setup
@old_suffixes = ActiveRecord::Base.send(:attribute_method_suffixes).dup
@target = Class.new(ActiveRecord::Base)
@target.table_name = 'topics'
end

def teardown
ActiveRecord::Base.send(:attribute_method_suffixes).clear
ActiveRecord::Base.attribute_method_suffix *@old_suffixes
end


def test_match_attribute_method_query_returns_match_data
assert_not_nil md = @target.match_attribute_method?('title=')
assert_equal 'title', md.pre_match
assert_equal ['='], md.captures

%w(_hello_world ist! _maybe?).each do |suffix|
@target.class_eval "def attribute#{suffix}(*args) args end"
@target.attribute_method_suffix suffix

assert_not_nil md = @target.match_attribute_method?("title#{suffix}")
assert_equal 'title', md.pre_match
assert_equal [suffix], md.captures
end
end

def test_declared_attribute_method_affects_respond_to_and_method_missing
Expand All @@ -19,12 +35,15 @@ def test_declared_attribute_method_affects_respond_to_and_method_missing
assert !topic.respond_to?('title_hello_world')
assert_raise(NoMethodError) { topic.title_hello_world }

@target.class_eval "def attribute_hello_world(*args) args end"
@target.attribute_method_suffix '_hello_world'
%w(_hello_world _it! _candidate= able?).each do |suffix|
@target.class_eval "def attribute#{suffix}(*args) args end"
@target.attribute_method_suffix suffix

assert topic.respond_to?('title_hello_world')
assert_equal ['title'], topic.title_hello_world
assert_equal ['title', 'a'], topic.title_hello_world('a')
assert_equal ['title', 1, 2, 3], topic.title_hello_world(1, 2, 3)
meth = "title#{suffix}"
assert topic.respond_to?(meth)
assert_equal ['title'], topic.send(meth)
assert_equal ['title', 'a'], topic.send(meth, 'a')
assert_equal ['title', 1, 2, 3], topic.send(meth, 1, 2, 3)
end
end
end

0 comments on commit dd664c3

Please sign in to comment.