Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix touching an invalid parent record for belongs_to #9443

Merged
merged 1 commit into from Feb 26, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##

* Do not try to touch invalid (and thus not persisted) parent record
for a `belongs_to :parent, touch: true` association

*Olek Janiszewski*

* Fix when performing an ordered join query. The bug only
affected queries where the order was given with a symbol.
Fixes #9275.
Expand All @@ -12,7 +17,7 @@

## Rails 4.0.0.beta1 (February 25, 2013) ##

* Fix overriding of attributes by default_scope on `ActiveRecord::Base#dup`.
* Fix overriding of attributes by `default_scope` on `ActiveRecord::Base#dup`.

*Hiroshige UMINO*

Expand Down
Expand Up @@ -48,7 +48,7 @@ def add_touch_callbacks(reflection)
def belongs_to_touch_after_save_or_destroy_for_#{name}
record = #{name}

unless record.nil?
unless record.nil? || record.new_record?
record.touch #{options[:touch].inspect if options[:touch] != true}
end
end
Expand Down
12 changes: 12 additions & 0 deletions activerecord/test/cases/timestamp_test.rb
Expand Up @@ -113,6 +113,18 @@ def test_destroying_a_record_with_a_belongs_to_that_specifies_touching_the_paren
assert_not_equal previously_owner_updated_at, pet.owner.updated_at
end

def test_saving_a_new_record_belonging_to_invalid_parent_with_touch_should_not_raise_exception
klass = Class.new(Owner) do
def self.name; 'Owner'; end
validate { errors.add(:base, :invalid) }
end

pet = Pet.new(owner: klass.new)
pet.save!

assert pet.owner.new_record?
end

def test_saving_a_record_with_a_belongs_to_that_specifies_touching_a_specific_attribute_the_parent_should_update_that_attribute
klass = Class.new(ActiveRecord::Base) do
def self.name; 'Pet'; end
Expand Down