Skip to content

Commit

Permalink
Fixed that saving a model with multiple habtm associations would only…
Browse files Browse the repository at this point in the history
… save the first one.

git-svn-id: http://svn-commit.rubyonrails.org/rails/branches/stable@3332 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
csshsh committed Dec 21, 2005
1 parent 37e0d5d commit cf44803
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
6 changes: 5 additions & 1 deletion activerecord/CHANGELOG
@@ -1,4 +1,8 @@
*
*SVN*

* Fixed that saving a model with multiple habtm associations would only save the first one. #3244 [yanowitz-rubyonrails@quantumfoam.org, Florian Weber]


*1.13.2* (December 13th, 2005)

* Become part of Rails 1.0
Expand Down
7 changes: 2 additions & 5 deletions activerecord/lib/active_record/associations.rb
Expand Up @@ -783,7 +783,6 @@ def require_association_class(class_name)
def add_multiple_associated_save_callbacks(association_name)
method_name = "validate_associated_records_for_#{association_name}".to_sym
define_method(method_name) do
@new_record_before_save = new_record?
association = instance_variable_get("@#{association_name}")
if association.respond_to?(:loaded?)
if new_record?
Expand All @@ -797,7 +796,8 @@ def add_multiple_associated_save_callbacks(association_name)
end

validate method_name

before_save("@new_record_before_save = new_record?; true")

after_callback = <<-end_eval
association = instance_variable_get("@#{association_name}")
if association.respond_to?(:loaded?)
Expand All @@ -809,9 +809,6 @@ def add_multiple_associated_save_callbacks(association_name)
records_to_save.each { |record| association.send(:insert_record, record) }
association.send(:construct_sql) # reconstruct the SQL queries now that we know the owner's id
end
@new_record_before_save = false
true
end_eval

# Doesn't use after_save as that would save associations added in after_create/after_update twice
Expand Down
16 changes: 16 additions & 0 deletions activerecord/test/associations_test.rb
Expand Up @@ -1173,6 +1173,22 @@ def test_habtm_adding_before_save_with_join_attributes
end
end

def test_habtm_saving_multiple_relationships
new_project = Project.new("name" => "Grimetime")
amount_of_developers = 4
developers = (0..amount_of_developers).collect {|i| Developer.create(:name => "JME #{i}") }

new_project.developer_ids = [developers[0].id, developers[1].id]
new_project.developers_with_callback_ids = [developers[2].id, developers[3].id]
assert new_project.save

new_project.reload
assert_equal amount_of_developers, new_project.developers.size
amount_of_developers.times do |i|
assert_equal developers[i].name, new_project.developers[i].name
end
end

def test_build
devel = Developer.find(1)
proj = devel.projects.build("name" => "Projekt")
Expand Down

0 comments on commit cf44803

Please sign in to comment.