Fixed: attachments from Apple Mail not added by mail handler (#8651).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6324 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2011-07-29 17:01:29 +00:00
parent b30f702156
commit 4f4b3594db
3 changed files with 251 additions and 1 deletions
+10
View File
@@ -290,6 +290,16 @@ class MailHandlerTest < ActiveSupport::TestCase
assert_kind_of Issue, issue
assert_equal tracker, issue.tracker
end
def test_add_issue_from_apple_mail
issue = submit_email('apple_mail_with_attachment.eml', :issue => {:project => 'ecookbook'})
assert_kind_of Issue, issue
assert_equal 1, issue.attachments.size
attachment = issue.attachments.first
assert_equal 'paella.jpg', attachment.filename
assert_equal 10790, attachment.filesize
end
def test_should_ignore_emails_from_emission_address
Role.anonymous.add_permission!(:add_issues)