diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-07-02 10:15:07 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-07-02 10:15:07 -0700 |
commit | dacc947296f41591bacb2b46c91d147df176f7c8 (patch) | |
tree | 1e33f3c99457e3395218211414917b2fae48a6b5 /activerecord | |
parent | 9e0b3fc7cfba43af55377488f991348e2de24515 (diff) | |
parent | b1e509ad7a8c8264544f10f4666705cd806b5408 (diff) | |
download | rails-dacc947296f41591bacb2b46c91d147df176f7c8.tar.gz rails-dacc947296f41591bacb2b46c91d147df176f7c8.tar.bz2 rails-dacc947296f41591bacb2b46c91d147df176f7c8.zip |
Merge pull request #6935 from frodsan/b1e509ad7a8c8264544f10f4666705cd806b5408
Backport #3329 to 3-2-stable
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/autosave_association.rb | 36 | ||||
-rw-r--r-- | activerecord/test/cases/autosave_association_test.rb | 10 |
2 files changed, 31 insertions, 15 deletions
diff --git a/activerecord/lib/active_record/autosave_association.rb b/activerecord/lib/active_record/autosave_association.rb index c86eaba498..e1499fc3b0 100644 --- a/activerecord/lib/active_record/autosave_association.rb +++ b/activerecord/lib/active_record/autosave_association.rb @@ -332,25 +332,31 @@ module ActiveRecord if records = associated_records_to_validate_or_save(association, @new_record_before_save, autosave) begin - records.each do |record| - next if record.destroyed? + records_to_destroy = [] + + records.each do |record| + next if record.destroyed? + + saved = true + + if autosave && record.marked_for_destruction? + records_to_destroy << record + elsif autosave != false && (@new_record_before_save || record.new_record?) + if autosave + saved = association.insert_record(record, false) + else + association.insert_record(record) unless reflection.nested? + end + elsif autosave + saved = record.save(:validate => false) + end - saved = true + raise ActiveRecord::Rollback unless saved + end - if autosave && record.marked_for_destruction? + records_to_destroy.each do |record| association.proxy.destroy(record) - elsif autosave != false && (@new_record_before_save || record.new_record?) - if autosave - saved = association.insert_record(record, false) - else - association.insert_record(record) unless reflection.nested? - end - elsif autosave - saved = record.save(:validate => false) end - - raise ActiveRecord::Rollback unless saved - end rescue records.each {|x| IdentityMap.remove(x) } if IdentityMap.enabled? raise diff --git a/activerecord/test/cases/autosave_association_test.rb b/activerecord/test/cases/autosave_association_test.rb index 315a9b001b..e6b881389b 100644 --- a/activerecord/test/cases/autosave_association_test.rb +++ b/activerecord/test/cases/autosave_association_test.rb @@ -770,6 +770,16 @@ class TestDestroyAsPartOfAutosaveAssociation < ActiveRecord::TestCase assert_equal before, @pirate.reload.birds end + def test_when_new_record_a_child_marked_for_destruction_should_not_affect_other_records_from_saving + @pirate = @ship.build_pirate(:catchphrase => "Arr' now I shall keep me eye on you matey!") # new record + + 3.times { |i| @pirate.birds.build(:name => "birds_#{i}") } + @pirate.birds[1].mark_for_destruction + @pirate.save! + + assert_equal 2, @pirate.birds.reload.length + end + # Add and remove callbacks tests for association collections. %w{ method proc }.each do |callback_type| define_method("test_should_run_add_callback_#{callback_type}s_for_has_many") do |