aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/reflection_test.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-11-03 15:07:24 +0000
committerJon Leighton <j@jonathanleighton.com>2011-11-03 15:12:08 +0000
commitd486103570bf680307ba474915efc01862e99403 (patch)
tree8b7a7e64d442fcc73a0f772541ebb4ce5e6fa618 /activerecord/test/cases/reflection_test.rb
parent567d454d99bd472ef342c047c0038504fa4f960c (diff)
downloadrails-d486103570bf680307ba474915efc01862e99403.tar.gz
rails-d486103570bf680307ba474915efc01862e99403.tar.bz2
rails-d486103570bf680307ba474915efc01862e99403.zip
Fix #3271.
Building the conditions of a nested through association could potentially modify the conditions of the through and/or source association. This is a Bad Thing.
Diffstat (limited to 'activerecord/test/cases/reflection_test.rb')
-rw-r--r--activerecord/test/cases/reflection_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/cases/reflection_test.rb b/activerecord/test/cases/reflection_test.rb
index 69e9fc8d61..4d21822cf5 100644
--- a/activerecord/test/cases/reflection_test.rb
+++ b/activerecord/test/cases/reflection_test.rb
@@ -319,6 +319,12 @@ class ReflectionTest < ActiveRecord::TestCase
assert_equal "category_id", Post.reflect_on_association(:categorizations).foreign_key.to_s
end
+ def test_through_reflection_conditions_do_not_modify_other_reflections
+ orig_conds = Post.reflect_on_association(:first_blue_tags_2).conditions.inspect
+ Author.reflect_on_association(:misc_post_first_blue_tags_2).conditions
+ assert_equal orig_conds, Post.reflect_on_association(:first_blue_tags_2).conditions.inspect
+ end
+
private
def assert_reflection(klass, association, options)
assert reflection = klass.reflect_on_association(association)