2010-03-26 06:27:19 -04:00
|
|
|
require 'test_helper'
|
2009-12-30 12:19:33 -05:00
|
|
|
|
|
|
|
class UnlockInstructionsTest < ActionMailer::TestCase
|
|
|
|
|
|
|
|
def setup
|
|
|
|
setup_mailer
|
2011-08-20 16:35:47 -04:00
|
|
|
Devise.mailer = 'Devise::Mailer'
|
2010-01-09 08:41:28 -05:00
|
|
|
Devise.mailer_sender = 'test@example.com'
|
2009-12-30 12:19:33 -05:00
|
|
|
end
|
|
|
|
|
2011-11-05 11:53:27 -04:00
|
|
|
def teardown
|
|
|
|
Devise.mailer = 'Devise::Mailer'
|
|
|
|
Devise.mailer_sender = 'please-change-me@config-initializers-devise.com'
|
|
|
|
end
|
|
|
|
|
2009-12-30 12:19:33 -05:00
|
|
|
def user
|
|
|
|
@user ||= begin
|
|
|
|
user = create_user
|
2010-03-10 10:13:54 -05:00
|
|
|
user.lock_access!
|
2009-12-30 12:19:33 -05:00
|
|
|
user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def mail
|
|
|
|
@mail ||= begin
|
|
|
|
user
|
|
|
|
ActionMailer::Base.deliveries.last
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'email sent after locking the user' do
|
|
|
|
assert_not_nil mail
|
|
|
|
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-12-30 12:19:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'send unlock instructions to the user email' do
|
|
|
|
assert_equal [user.email], mail.to
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'setup sender from configuration' do
|
|
|
|
assert_equal ['test@example.com'], mail.from
|
|
|
|
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-12-30 12:19:33 -05:00
|
|
|
test 'setup subject from I18n' do
|
2010-06-12 14:29:43 -04:00
|
|
|
store_translations :en, :devise => { :mailer => { :unlock_instructions => { :subject => 'Yo unlock instructions' } } } do
|
|
|
|
assert_equal 'Yo unlock instructions', mail.subject
|
2009-12-30 12:19:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'subject namespaced by model' do
|
2010-06-12 14:29:43 -04:00
|
|
|
store_translations :en, :devise => { :mailer => { :unlock_instructions => { :user_subject => 'User Unlock Instructions' } } } do
|
2009-12-30 12:19:33 -05:00
|
|
|
assert_equal 'User Unlock Instructions', mail.subject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'body should have user info' do
|
2010-03-20 23:37:38 -04:00
|
|
|
assert_match(/#{user.email}/, mail.body.encoded)
|
2009-12-30 12:19:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'body should have link to unlock the account' do
|
|
|
|
host = ActionMailer::Base.default_url_options[:host]
|
|
|
|
unlock_url_regexp = %r{<a href=\"http://#{host}/users/unlock\?unlock_token=#{user.unlock_token}">}
|
2010-03-20 23:37:38 -04:00
|
|
|
assert_match unlock_url_regexp, mail.body.encoded
|
2009-12-30 12:19:33 -05:00
|
|
|
end
|
|
|
|
end
|