Sha256: 35ca633ef57d0ef471920c766410ce332ba3e32b017684f6c6b01f3aeed2bb45

Contents?: true

Size: 1.53 KB

Versions: 20

Compression:

Stored size: 1.53 KB

Contents

require 'test/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_equal 'text/html', mail.content_type
  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 subject from I18n' do
    store_translations :en, :devise => { :mailer => { :unlock_instructions => 'Unlock instructions' } } do
      assert_equal 'Unlock instructions', mail.subject
    end
  end

  test 'subject namespaced by model' do
    store_translations :en, :devise => { :mailer => { :user => { :unlock_instructions => '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
  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
  end
end

Version data entries

20 entries across 15 versions & 5 rubygems

Version Path
graffititracker_devise-1.0.11 test/mailers/unlock_instructions_test.rb
devise-1.0.11 test/mailers/unlock_instructions_test.rb
devise-1.0.10 test/mailers/unlock_instructions_test.rb
devise_ennder-1.4.1.0.9 test/rails_app/vendor/plugins/devise/test/mailers/unlock_instructions_test.rb
devise_ennder-1.4.1.0.9 test/mailers/unlock_instructions_test.rb
devise_ennder-1.3.1.0.9 test/rails_app/vendor/plugins/devise/test/mailers/unlock_instructions_test.rb
devise_ennder-1.3.1.0.9 test/mailers/unlock_instructions_test.rb
devise_ennder-1.2.1.0.9 test/rails_app/vendor/plugins/devise/test/mailers/unlock_instructions_test.rb
devise_ennder-1.2.1.0.9 test/mailers/unlock_instructions_test.rb
devise_ennder-1.1.1.0.9 test/mailers/unlock_instructions_test.rb
devise_ennder-1.1.1.0.9 test/rails_app/vendor/plugins/devise/test/mailers/unlock_instructions_test.rb
devise_ennder-1.0.1.0.9 test/mailers/unlock_instructions_test.rb
devise_ennder-1.0.1.0.9 test/rails_app/vendor/plugins/devise/test/mailers/unlock_instructions_test.rb
devise-1.0.9 test/mailers/unlock_instructions_test.rb
dcu-devise-1.0.7 test/mailers/unlock_instructions_test.rb
devise-1.0.8 test/mailers/unlock_instructions_test.rb
ivanvc-devise-1.0.7.1 test/mailers/unlock_instructions_test.rb
devise-1.0.7 test/mailers/unlock_instructions_test.rb
devise-1.0.6 test/mailers/unlock_instructions_test.rb
devise-1.0.5 test/mailers/unlock_instructions_test.rb