2008-05-18 06:22:34 +02:00
|
|
|
require 'abstract_unit'
|
2007-02-10 00:12:31 +01:00
|
|
|
|
|
|
|
class TestMailer < ActionMailer::Base
|
2007-12-21 08:48:59 +01:00
|
|
|
|
|
|
|
default_url_options[:host] = 'www.basecamphq.com'
|
|
|
|
|
2007-02-10 00:12:31 +01:00
|
|
|
def signed_up_with_url(recipient)
|
|
|
|
@recipients = recipient
|
|
|
|
@subject = "[Signed up] Welcome #{recipient}"
|
|
|
|
@from = "system@loudthinking.com"
|
|
|
|
@sent_on = Time.local(2004, 12, 12)
|
|
|
|
|
|
|
|
@body["recipient"] = recipient
|
|
|
|
@body["welcome_url"] = url_for :host => "example.com", :controller => "welcome", :action => "greeting"
|
|
|
|
end
|
|
|
|
|
|
|
|
class <<self
|
|
|
|
attr_accessor :received_body
|
|
|
|
end
|
|
|
|
|
|
|
|
def receive(mail)
|
|
|
|
self.class.received_body = mail.body
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ActionMailerUrlTest < Test::Unit::TestCase
|
|
|
|
include ActionMailer::Quoting
|
|
|
|
|
|
|
|
def encode( text, charset="utf-8" )
|
|
|
|
quoted_printable( text, charset )
|
|
|
|
end
|
|
|
|
|
|
|
|
def new_mail( charset="utf-8" )
|
|
|
|
mail = TMail::Mail.new
|
|
|
|
mail.mime_version = "1.0"
|
|
|
|
if charset
|
|
|
|
mail.set_content_type "text", "plain", { "charset" => charset }
|
|
|
|
end
|
|
|
|
mail
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
2007-12-21 08:48:59 +01:00
|
|
|
set_delivery_method :test
|
2007-02-10 00:12:31 +01:00
|
|
|
ActionMailer::Base.perform_deliveries = true
|
|
|
|
ActionMailer::Base.deliveries = []
|
|
|
|
|
|
|
|
@recipient = 'test@localhost'
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def teardown
|
|
|
|
restore_delivery_method
|
|
|
|
end
|
|
|
|
|
2007-02-10 00:12:31 +01:00
|
|
|
def test_signed_up_with_url
|
|
|
|
ActionController::Routing::Routes.draw do |map|
|
|
|
|
map.connect ':controller/:action/:id'
|
2007-12-21 08:48:59 +01:00
|
|
|
map.welcome 'welcome', :controller=>"foo", :action=>"bar"
|
2007-02-10 00:12:31 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
expected = new_mail
|
|
|
|
expected.to = @recipient
|
|
|
|
expected.subject = "[Signed up] Welcome #{@recipient}"
|
2007-12-21 08:48:59 +01:00
|
|
|
expected.body = "Hello there, \n\nMr. #{@recipient}. Please see our greeting at http://example.com/welcome/greeting http://www.basecamphq.com/welcome\n\n<img alt=\"Somelogo\" src=\"/images/somelogo.png\" />"
|
2007-02-10 00:12:31 +01:00
|
|
|
expected.from = "system@loudthinking.com"
|
|
|
|
expected.date = Time.local(2004, 12, 12)
|
|
|
|
|
|
|
|
created = nil
|
|
|
|
assert_nothing_raised { created = TestMailer.create_signed_up_with_url(@recipient) }
|
|
|
|
assert_not_nil created
|
|
|
|
assert_equal expected.encoded, created.encoded
|
|
|
|
|
|
|
|
assert_nothing_raised { TestMailer.deliver_signed_up_with_url(@recipient) }
|
|
|
|
assert_not_nil ActionMailer::Base.deliveries.first
|
|
|
|
assert_equal expected.encoded, ActionMailer::Base.deliveries.first.encoded
|
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|