Sha256: 19c5ddfa4509d0d6b091fdeb7c3162aa22cee753bfebf798ea1a2248702f5b6d

Contents?: true

Size: 1.68 KB

Versions: 18

Compression:

Stored size: 1.68 KB

Contents

require 'test_helper'

class UnlockInstructionsTest < ActionMailer::TestCase

  def setup
    setup_mailer
    Devise.mailer_sender = 'test@example.com'
  end

  def user
    @user ||= begin
      user = create_user
      user.lock_access!
      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
    assert mail.content_type.include?('text/html')
  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

  test 'setup reply to as copy from sender' do
    assert_equal ['test@example.com'], mail.reply_to
  end

  test 'setup subject from I18n' do
    store_translations :en, :devise => { :mailer => { :unlock_instructions =>  { :subject => 'Yo unlock instructions' } } } do
      assert_equal 'Yo unlock instructions', mail.subject
    end
  end

  test 'subject namespaced by model' do
    store_translations :en, :devise => { :mailer => { :unlock_instructions => { :user_subject => 'User Unlock Instructions' } } } do
      assert_equal 'User Unlock Instructions', mail.subject
    end
  end

  test 'body should have user info' do
    assert_match(/#{user.email}/, mail.body.encoded)
  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}">}
    assert_match unlock_url_regexp, mail.body.encoded
  end
end

Version data entries

18 entries across 18 versions & 6 rubygems

Version Path
devise_sociable-0.1.0 vendor/bundle/gems/devise-1.2.1/test/mailers/unlock_instructions_test.rb
devise-1.4.2 test/mailers/unlock_instructions_test.rb
devise-1.4.1 test/mailers/unlock_instructions_test.rb
devise-1.3.4 test/mailers/unlock_instructions_test.rb
devise-1.3.3 test/mailers/unlock_instructions_test.rb
devise-1.3.2 test/mailers/unlock_instructions_test.rb
devise-1.3.1 test/mailers/unlock_instructions_test.rb
devise-1.3.0 test/mailers/unlock_instructions_test.rb
devise-1.2.1 test/mailers/unlock_instructions_test.rb
devise-1.2.0 test/mailers/unlock_instructions_test.rb
devise-jdguyot-1.2.rc3 test/mailers/unlock_instructions_test.rb
devise-1.2.rc2 test/mailers/unlock_instructions_test.rb
devise-jdguyot-1.2.rc2 test/mailers/unlock_instructions_test.rb
devise-jdguyot-1.2.rc test/mailers/unlock_instructions_test.rb
devise-1.2.rc test/mailers/unlock_instructions_test.rb
aihs_devise-1.2.rc test/mailers/unlock_instructions_test.rb
gonow-devise-1.2.rc test/mailers/unlock_instructions_test.rb
devise-edge-1.2.rc test/mailers/unlock_instructions_test.rb