diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2009-02-25 07:25:01 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2009-02-25 07:25:01 +0000 |
commit | 4baf32b166a667f26440e4f3d81cdbcedc64eaa4 (patch) | |
tree | fffed4d31974613745424e966ddfe7fc80825aff /test/unit | |
parent | 0f68334f0bed0507bfb2157d99052a15511c5a2c (diff) | |
download | redmine-4baf32b166a667f26440e4f3d81cdbcedc64eaa4.tar.gz redmine-4baf32b166a667f26440e4f3d81cdbcedc64eaa4.zip |
Fixing Plugin and Mailer default_url_options.
Both the plugin hooks and Mailer were setting default_url_options incorrectly
and causing ActionContoller::UrlWritter to cache the settings on the module
(mattr_accessor) causing several url generators to fail in either the plugin
hooks or the Mailer.
* Replaced Mailer's use of the default_url_options accessor with the proper class method
* Replaced Hook's use of the default_url_options accessor with the proper class method on the ViewListener class
* Added a test to reproduce the bugs in the Mailer when a hook is registered (thanks Chaoqun Zou)
#2542
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2522 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/lib/redmine/hook_test.rb | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/test/unit/lib/redmine/hook_test.rb b/test/unit/lib/redmine/hook_test.rb index 3e70c1c69..9313a36c7 100644 --- a/test/unit/lib/redmine/hook_test.rb +++ b/test/unit/lib/redmine/hook_test.rb @@ -19,6 +19,8 @@ require File.dirname(__FILE__) + '/../../../test_helper' class Redmine::Hook::ManagerTest < Test::Unit::TestCase + fixtures :issues + # Some hooks that are manually registered in these tests class TestHook < Redmine::Hook::ViewListener; end @@ -64,7 +66,6 @@ class Redmine::Hook::ManagerTest < Test::Unit::TestCase def teardown @hook_module.clear_listeners - @hook_module.default_url_options = { } end def test_clear_listeners @@ -144,5 +145,22 @@ class Redmine::Hook::ManagerTest < Test::Unit::TestCase assert_equal 'Test hook 1 listener. Test hook 2 listener.', @view_hook_helper.call_hook(:view_layouts_base_html_head) end + + def test_call_hook_should_not_change_the_default_url_for_email_notifications + issue = Issue.find(1) + + ActionMailer::Base.deliveries.clear + Mailer.deliver_issue_add(issue) + mail = ActionMailer::Base.deliveries.last + + @hook_module.add_listener(TestLinkToHook) + @hook_helper.call_hook(:view_layouts_base_html_head) + + ActionMailer::Base.deliveries.clear + Mailer.deliver_issue_add(issue) + mail2 = ActionMailer::Base.deliveries.last + + assert_equal mail.body, mail2.body + end end |