diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-08-26 09:03:17 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-08-26 09:03:17 +0000 |
commit | 5969df81424968af69cc7b584242d48bf7d5c51e (patch) | |
tree | 88488b73617fc90f18871cc2a622306f95ee4854 /test | |
parent | 2ed4364c8a15b9f557bf349894395f83955e9934 (diff) | |
download | redmine-5969df81424968af69cc7b584242d48bf7d5c51e.tar.gz redmine-5969df81424968af69cc7b584242d48bf7d5c51e.zip |
MailHandler: Match assignee on the full display name (#11552).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10236 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/object_helpers.rb | 3 | ||||
-rw-r--r-- | test/unit/mail_handler_test.rb | 10 |
2 files changed, 12 insertions, 1 deletions
diff --git a/test/object_helpers.rb b/test/object_helpers.rb index 85c6d139c..42dfdecda 100644 --- a/test/object_helpers.rb +++ b/test/object_helpers.rb @@ -12,7 +12,8 @@ module ObjectHelpers user end - def User.add_to_project(user, project, roles) + def User.add_to_project(user, project, roles=nil) + roles = Role.find(1) if roles.nil? roles = [roles] unless roles.is_a?(Array) Member.create!(:principal => user, :project => project, :roles => roles) end diff --git a/test/unit/mail_handler_test.rb b/test/unit/mail_handler_test.rb index 32646fcdd..49b5d896f 100644 --- a/test/unit/mail_handler_test.rb +++ b/test/unit/mail_handler_test.rb @@ -194,6 +194,16 @@ class MailHandlerTest < ActiveSupport::TestCase assert_equal '2', issue.custom_field_value(field) end + def test_add_issue_should_match_assignee_on_display_name + user = User.generate!(:firstname => 'Foo Bar', :lastname => 'Foo Baz') + User.add_to_project(user, Project.find(2)) + issue = submit_email('ticket_on_given_project.eml') do |email| + email.sub!(/^Assigned to.*$/, 'Assigned to: Foo Bar Foo baz') + end + assert issue.is_a?(Issue) + assert_equal user, issue.assigned_to + end + def test_add_issue_with_cc issue = submit_email('ticket_with_cc.eml', :issue => {:project => 'ecookbook'}) assert issue.is_a?(Issue) |