aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/ship.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-07-18 10:28:24 -0400
committerSean Griffin <sean@thoughtbot.com>2015-07-18 10:30:58 -0400
commit7550f0a016ee6647aaa76c0c0ae30bebc3867288 (patch)
tree1a13b0e841e8e2aac71abed0d3192d25b408ac65 /activerecord/test/models/ship.rb
parent2a0a264b39eb99ddf444bbdacf3014868c8896cc (diff)
downloadrails-7550f0a016ee6647aaa76c0c0ae30bebc3867288.tar.gz
rails-7550f0a016ee6647aaa76c0c0ae30bebc3867288.tar.bz2
rails-7550f0a016ee6647aaa76c0c0ae30bebc3867288.zip
Ensure cyclic associations w/ autosave don't cause duplicate errors
This code is so fucked. Things that cause this bug not to replicate: - Defining the validation before the association (we end up calling `uniq!` on the errors in the autosave validation) - Adding `accepts_nested_attributes_for` (I have no clue why. The only thing it does that should affect this is adds `autosave: true` to the inverse reflection, and doing that manually doesn't fix this). This solution is a hack, and I'm almost certain there's a better way to go about it, but this shouldn't cause a huge hit on validation times, and is the simplest way to get it done. Fixes #20874.
Diffstat (limited to 'activerecord/test/models/ship.rb')
-rw-r--r--activerecord/test/models/ship.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/test/models/ship.rb b/activerecord/test/models/ship.rb
index 312caef604..fcc533380b 100644
--- a/activerecord/test/models/ship.rb
+++ b/activerecord/test/models/ship.rb
@@ -19,6 +19,17 @@ class Ship < ActiveRecord::Base
end
end
+class ShipWithoutNestedAttributes < ActiveRecord::Base
+ self.table_name = "ships"
+ has_many :prisoners, inverse_of: :ship, foreign_key: :ship_id
+
+ validates :name, presence: true
+end
+
+class Prisoner < ActiveRecord::Base
+ belongs_to :ship, autosave: true, class_name: "ShipWithoutNestedAttributes", inverse_of: :prisoners
+end
+
class FamousShip < ActiveRecord::Base
self.table_name = 'ships'
belongs_to :famous_pirate