提交 92dadf6d 编写于 作者: W Will Bryant 提交者: Pratik Naik

Fixed autosave checks on objects with hm:t in :include [#2213 state:resolved]

Signed-off-by: NPratik Naik <pratiknaik@gmail.com>
上级 be7b64b3
...@@ -310,7 +310,7 @@ def save_collection_association(reflection) ...@@ -310,7 +310,7 @@ def save_collection_association(reflection)
# This all happens inside a transaction, _if_ the Transactions module is included into # This all happens inside a transaction, _if_ the Transactions module is included into
# ActiveRecord::Base after the AutosaveAssociation module, which it does by default. # ActiveRecord::Base after the AutosaveAssociation module, which it does by default.
def save_has_one_association(reflection) def save_has_one_association(reflection)
if association = association_instance_get(reflection.name) if (association = association_instance_get(reflection.name)) && !association.target.nil?
if reflection.options[:autosave] && association.marked_for_destruction? if reflection.options[:autosave] && association.marked_for_destruction?
association.destroy association.destroy
elsif new_record? || association.new_record? || association[reflection.primary_key_name] != id || reflection.options[:autosave] elsif new_record? || association.new_record? || association[reflection.primary_key_name] != id || reflection.options[:autosave]
......
...@@ -326,4 +326,20 @@ def test_belongs_to_proxy_should_respond_to_private_methods_via_send ...@@ -326,4 +326,20 @@ def test_belongs_to_proxy_should_respond_to_private_methods_via_send
companies(:first_firm).send(:private_method) companies(:first_firm).send(:private_method)
companies(:second_client).firm.send(:private_method) companies(:second_client).firm.send(:private_method)
end end
def test_save_of_record_with_loaded_belongs_to
@account = companies(:first_firm).account
assert_nothing_raised do
Account.find(@account.id).save!
Account.find(@account.id, :include => :firm).save!
end
@account.firm.delete
assert_nothing_raised do
Account.find(@account.id).save!
Account.find(@account.id, :include => :firm).save!
end
end
end end
...@@ -290,4 +290,20 @@ def test_has_one_proxy_should_respond_to_private_methods_via_send ...@@ -290,4 +290,20 @@ def test_has_one_proxy_should_respond_to_private_methods_via_send
companies(:first_firm).account.send(:private_method) companies(:first_firm).account.send(:private_method)
end end
def test_save_of_record_with_loaded_has_one
@firm = companies(:first_firm)
assert_not_nil @firm.account
assert_nothing_raised do
Firm.find(@firm.id).save!
Firm.find(@firm.id, :include => :account).save!
end
@firm.account.destroy
assert_nothing_raised do
Firm.find(@firm.id).save!
Firm.find(@firm.id, :include => :account).save!
end
end
end end
...@@ -173,4 +173,20 @@ def test_preloading_has_one_through_on_belongs_to ...@@ -173,4 +173,20 @@ def test_preloading_has_one_through_on_belongs_to
assert_not_nil assert_no_queries { @new_detail.member_type } assert_not_nil assert_no_queries { @new_detail.member_type }
end end
def test_save_of_record_with_loaded_has_one_through
@club = @member.club
assert_not_nil @club.sponsored_member
assert_nothing_raised do
Club.find(@club.id).save!
Club.find(@club.id, :include => :sponsored_member).save!
end
@club.sponsor.destroy
assert_nothing_raised do
Club.find(@club.id).save!
Club.find(@club.id, :include => :sponsored_member).save!
end
end
end end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册