From: Go MAEDA Date: Sat, 24 Nov 2018 11:22:34 +0000 (+0000) Subject: Merged r17630 from trunk to 3.3-stable (#28576). X-Git-Tag: 3.3.9~7 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7564b2cf458749500ddc0ad789325cb3fe8fb17c;p=redmine.git Merged r17630 from trunk to 3.3-stable (#28576). git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@17632 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb index 652efd7c4..fef2beb8b 100644 --- a/app/models/mail_handler.rb +++ b/app/models/mail_handler.rb @@ -250,8 +250,8 @@ class MailHandler < ActionMailer::Base # add To and Cc as watchers before saving so the watchers can reply to Redmine add_watchers(issue) - add_attachments(issue) issue.save! + add_attachments(issue) if logger logger.info "MailHandler: issue ##{issue.id} updated by #{user}" end diff --git a/test/unit/mail_handler_test.rb b/test/unit/mail_handler_test.rb index dd4b60d50..7752cd386 100644 --- a/test/unit/mail_handler_test.rb +++ b/test/unit/mail_handler_test.rb @@ -832,6 +832,21 @@ class MailHandlerTest < ActiveSupport::TestCase assert_equal 'Paella.jpg', detail.value end + def test_update_issue_should_discard_all_changes_on_validation_failure + Issue.any_instance.stubs(:valid?).returns(false) + assert_no_difference 'Journal.count' do + assert_no_difference 'JournalDetail.count' do + assert_no_difference 'Attachment.count' do + assert_no_difference 'Issue.count' do + journal = submit_email('ticket_with_attachment.eml') do |raw| + raw.gsub! /^Subject: .*$/, 'Subject: Re: [Cookbook - Feature #2] (New) Add ingredients categories' + end + end + end + end + end + end + def test_update_issue_should_send_email_notification journal = submit_email('ticket_reply.eml') assert journal.is_a?(Journal)