aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/old_base/mail_render_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailer/test/old_base/mail_render_test.rb')
-rw-r--r--actionmailer/test/old_base/mail_render_test.rb157
1 files changed, 157 insertions, 0 deletions
diff --git a/actionmailer/test/old_base/mail_render_test.rb b/actionmailer/test/old_base/mail_render_test.rb
new file mode 100644
index 0000000000..804200fd36
--- /dev/null
+++ b/actionmailer/test/old_base/mail_render_test.rb
@@ -0,0 +1,157 @@
+require 'abstract_unit'
+
+class RenderMailer < ActionMailer::Base
+ def inline_template
+ recipients 'test@localhost'
+ subject "using helpers"
+ from "tester@example.com"
+
+ @world = "Earth"
+ render :inline => "Hello, <%= @world %>"
+ end
+
+ def file_template
+ recipients 'test@localhost'
+ subject "using helpers"
+ from "tester@example.com"
+
+ @recipient = 'test@localhost'
+ render :file => "templates/signed_up"
+ end
+
+ def implicit_body
+ recipients 'test@localhost'
+ subject "using helpers"
+ from "tester@example.com"
+
+ @recipient = 'test@localhost'
+ render :template => "templates/signed_up"
+ end
+
+ def rxml_template
+ recipients 'test@localhost'
+ subject "rendering rxml template"
+ from "tester@example.com"
+ end
+
+ def included_subtemplate
+ recipients 'test@localhost'
+ subject "Including another template in the one being rendered"
+ from "tester@example.com"
+ end
+
+ def mailer_accessor
+ recipients 'test@localhost'
+ subject "Mailer Accessor"
+ from "tester@example.com"
+
+ render :inline => "Look, <%= mailer.subject %>!"
+ end
+
+ def no_instance_variable
+ recipients 'test@localhost'
+ subject "No Instance Variable"
+ from "tester@example.com"
+
+ silence_warnings do
+ render :inline => "Look, subject.nil? is <%= @subject.nil? %>!"
+ end
+ end
+
+ def initialize_defaults(method_name)
+ super
+ mailer_name "test_mailer"
+ end
+end
+
+class FirstMailer < ActionMailer::Base
+ def share
+ recipients 'test@localhost'
+ subject "using helpers"
+ from "tester@example.com"
+ end
+end
+
+class SecondMailer < ActionMailer::Base
+ def share
+ recipients 'test@localhost'
+ subject "using helpers"
+ from "tester@example.com"
+ end
+end
+
+# CHANGED: Those tests were changed because body returns an object now
+# Instead of mail.body.strip, we should mail.body.to_s.strip
+class RenderHelperTest < Test::Unit::TestCase
+ def setup
+ set_delivery_method :test
+ ActionMailer::Base.perform_deliveries = true
+ ActionMailer::Base.deliveries.clear
+
+ @recipient = 'test@localhost'
+ end
+
+ def teardown
+ restore_delivery_method
+ end
+
+ def test_implicit_body
+ mail = RenderMailer.implicit_body
+ assert_equal "Hello there, \n\nMr. test@localhost", mail.body.to_s.strip
+ end
+
+ def test_inline_template
+ mail = RenderMailer.inline_template
+ assert_equal "Hello, Earth", mail.body.to_s.strip
+ end
+
+ def test_file_template
+ mail = RenderMailer.file_template
+ assert_equal "Hello there, \n\nMr. test@localhost", mail.body.to_s.strip
+ end
+
+ def test_rxml_template
+ mail = RenderMailer.rxml_template.deliver
+ assert_equal "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<test/>", mail.body.to_s.strip
+ end
+
+ def test_included_subtemplate
+ mail = RenderMailer.included_subtemplate.deliver
+ assert_equal "Hey Ho, let's go!", mail.body.to_s.strip
+ end
+
+ def test_mailer_accessor
+ mail = RenderMailer.mailer_accessor.deliver
+ assert_equal "Look, Mailer Accessor!", mail.body.to_s.strip
+ end
+
+ def test_no_instance_variable
+ mail = RenderMailer.no_instance_variable.deliver
+ assert_equal "Look, subject.nil? is true!", mail.body.to_s.strip
+ end
+end
+
+class FirstSecondHelperTest < Test::Unit::TestCase
+ def setup
+ set_delivery_method :test
+ ActionMailer::Base.perform_deliveries = true
+ ActionMailer::Base.deliveries.clear
+
+ @recipient = 'test@localhost'
+ end
+
+ def teardown
+ restore_delivery_method
+ end
+
+ def test_ordering
+ mail = FirstMailer.share
+ assert_equal "first mail", mail.body.to_s.strip
+ mail = SecondMailer.share
+ assert_equal "second mail", mail.body.to_s.strip
+ mail = FirstMailer.share
+ assert_equal "first mail", mail.body.to_s.strip
+ mail = SecondMailer.share
+ assert_equal "second mail", mail.body.to_s.strip
+ end
+end