2010-03-26 06:27:19 -04:00
|
|
|
require 'test_helper'
|
2009-10-08 10:31:51 -04:00
|
|
|
|
|
|
|
class ConfirmationInstructionsTest < ActionMailer::TestCase
|
|
|
|
|
|
|
|
def setup
|
|
|
|
setup_mailer
|
2011-08-20 16:35:47 -04:00
|
|
|
Devise.mailer = 'Devise::Mailer'
|
2010-01-05 10:01:16 -05:00
|
|
|
Devise.mailer_sender = 'test@example.com'
|
2009-10-19 23:28:01 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def user
|
|
|
|
@user ||= create_user
|
|
|
|
end
|
|
|
|
|
|
|
|
def mail
|
|
|
|
@mail ||= begin
|
|
|
|
user
|
|
|
|
ActionMailer::Base.deliveries.first
|
|
|
|
end
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'email sent after creating the user' do
|
2009-10-19 23:28:01 -04:00
|
|
|
assert_not_nil mail
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'content type should be set to html' do
|
2010-03-28 13:48:03 -04:00
|
|
|
assert mail.content_type.include?('text/html')
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'send confirmation instructions to the user email' do
|
2009-10-19 23:28:01 -04:00
|
|
|
mail
|
|
|
|
assert_equal [user.email], mail.to
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'setup sender from configuration' do
|
2009-10-19 23:28:01 -04:00
|
|
|
assert_equal ['test@example.com'], mail.from
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
|
|
|
|
2011-08-20 16:35:47 -04:00
|
|
|
test 'setup sender from custom mailer defaults' do
|
|
|
|
Devise.mailer = 'Users::Mailer'
|
|
|
|
assert_equal ['custom@example.com'], mail.from
|
|
|
|
end
|
|
|
|
|
2010-09-21 04:07:02 -04:00
|
|
|
test 'setup reply to as copy from sender' do
|
|
|
|
assert_equal ['test@example.com'], mail.reply_to
|
|
|
|
end
|
|
|
|
|
2009-10-08 10:31:51 -04:00
|
|
|
test 'setup subject from I18n' do
|
2010-06-12 14:29:43 -04:00
|
|
|
store_translations :en, :devise => { :mailer => { :confirmation_instructions => { :subject => 'Account Confirmation' } } } do
|
2009-10-19 23:28:01 -04:00
|
|
|
assert_equal 'Account Confirmation', mail.subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'subject namespaced by model' do
|
2010-06-12 14:29:43 -04:00
|
|
|
store_translations :en, :devise => { :mailer => { :confirmation_instructions => { :user_subject => 'User Account Confirmation' } } } do
|
2009-10-19 23:28:01 -04:00
|
|
|
assert_equal 'User Account Confirmation', mail.subject
|
|
|
|
end
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'body should have user info' do
|
2010-03-20 23:37:38 -04:00
|
|
|
assert_match /#{user.email}/, mail.body.encoded
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'body should have link to confirm the account' do
|
|
|
|
host = ActionMailer::Base.default_url_options[:host]
|
2009-10-19 23:28:01 -04:00
|
|
|
confirmation_url_regexp = %r{<a href=\"http://#{host}/users/confirmation\?confirmation_token=#{user.confirmation_token}">}
|
2010-03-20 23:37:38 -04:00
|
|
|
assert_match confirmation_url_regexp, mail.body.encoded
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|
2009-12-14 19:32:40 -05:00
|
|
|
|
|
|
|
test 'renders a scoped if scoped_views is set to true' do
|
|
|
|
swap Devise, :scoped_views => true do
|
2010-02-16 15:23:58 -05:00
|
|
|
assert_equal user.email, mail.body.decoded
|
2009-12-14 19:32:40 -05:00
|
|
|
end
|
|
|
|
end
|
2010-01-13 11:45:02 -05:00
|
|
|
|
2010-02-08 11:33:22 -05:00
|
|
|
test 'renders a scoped if scoped_views is set in the mailer class' do
|
|
|
|
begin
|
2010-02-17 06:25:20 -05:00
|
|
|
Devise::Mailer.scoped_views = true
|
2010-02-16 15:23:58 -05:00
|
|
|
assert_equal user.email, mail.body.decoded
|
2010-02-08 11:33:22 -05:00
|
|
|
ensure
|
2010-02-17 06:25:20 -05:00
|
|
|
Devise::Mailer.send :remove_instance_variable, :@scoped_views
|
2010-02-08 11:33:22 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-13 11:45:02 -05:00
|
|
|
test 'mailer sender accepts a proc' do
|
2010-03-20 23:37:38 -04:00
|
|
|
swap Devise, :mailer_sender => proc { "another@example.com" } do
|
2010-01-13 11:45:02 -05:00
|
|
|
assert_equal ['another@example.com'], mail.from
|
|
|
|
end
|
|
|
|
end
|
2009-10-08 10:31:51 -04:00
|
|
|
end
|