Additional test for MailHandler.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9448 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-04-19 08:26:53 +00:00
parent 67f90df175
commit 62eb536e32
1 changed files with 11 additions and 1 deletions

View File

@ -347,6 +347,15 @@ class MailHandlerTest < ActiveSupport::TestCase
assert_equal 'caaf384198bcbc9563ab5c058acd73cd', attachment.digest
end
def test_should_ignore_emails_from_locked_users
User.find(2).lock!
MailHandler.any_instance.expects(:dispatch).never
assert_no_difference 'Issue.count' do
assert_equal false, submit_email('ticket_on_given_project.eml')
end
end
def test_should_ignore_emails_from_emission_address
Role.anonymous.add_permission!(:add_issues)
assert_no_difference 'User.count' do
@ -360,6 +369,7 @@ class MailHandlerTest < ActiveSupport::TestCase
end
def test_should_ignore_auto_replied_emails
MailHandler.any_instance.expects(:dispatch).never
[
"X-Auto-Response-Suppress: OOF",
"Auto-Submitted: auto-replied",
@ -367,7 +377,7 @@ class MailHandlerTest < ActiveSupport::TestCase
].each do |header|
raw = IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml'))
raw = header + "\n" + raw
assert_no_difference 'Issue.count' do
assert_equal false, MailHandler.receive(raw), "email with #{header} header was not ignored"
end