Sha256: 56834aea186c25b0cd1ab6f0955917cd1b42668a5a6d0a34ae97d01e55de9044

Contents?: true

Size: 1.52 KB

Versions: 15

Compression:

Stored size: 1.52 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!
      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

15 entries across 15 versions & 3 rubygems

Version Path
mongoid-devise-1.0.1 test/mailers/unlock_instructions_test.rb
devise-1.0.4 test/mailers/unlock_instructions_test.rb
devise-1.1.pre4 test/mailers/unlock_instructions_test.rb
devise-1.1.pre3 test/mailers/unlock_instructions_test.rb
devise-1.0.3 test/mailers/unlock_instructions_test.rb
devise-1.1.pre2 test/mailers/unlock_instructions_test.rb
glennr-devise-1.0.1.1 test/mailers/unlock_instructions_test.rb
glennr-devise-1.0.1 test/mailers/unlock_instructions_test.rb
devise-1.0.2 test/mailers/unlock_instructions_test.rb
devise-1.1.pre test/mailers/unlock_instructions_test.rb
devise-1.0.1 test/mailers/unlock_instructions_test.rb
devise-1.0.0 test/mailers/unlock_instructions_test.rb
devise-0.9.2 test/mailers/unlock_instructions_test.rb
devise-0.9.1 test/mailers/unlock_instructions_test.rb
devise-0.9.0 test/mailers/unlock_instructions_test.rb