Sha256: 38fddd84a8aabc7f568d4cb051755bd824d316a0bf84eea0cb88fd5c9b739954

Contents?: true

Size: 1.6 KB

Versions: 24

Compression:

Stored size: 1.6 KB

Contents

require 'test/test_helper'

class ResetPasswordInstructionsTest < ActionMailer::TestCase

  def setup
    setup_mailer
    DeviseMailer.sender = 'test@example.com'
  end

  def user
    @user ||= begin
      user = create_user
      user.send_reset_password_instructions
      user
    end
  end

  def mail
    @mail ||= begin
      user
      ActionMailer::Base.deliveries.last
    end
  end

  test 'email sent after reseting the user password' 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 confirmation 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 => { :reset_password_instructions => 'Reset instructions' } } do
      assert_equal 'Reset instructions', mail.subject
    end
  end

  test 'subject namespaced by model' do
    store_translations :en, :devise => { :mailer => { :user => { :reset_password_instructions => 'User Reset Instructions' } } } do
      assert_equal 'User Reset 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 confirm the account' do
    host = ActionMailer::Base.default_url_options[:host]
    reset_url_regexp = %r{<a href=\"http://#{host}/users/password/edit\?reset_password_token=#{user.reset_password_token}">}
    assert_match reset_url_regexp, mail.body
  end
end

Version data entries

24 entries across 24 versions & 3 rubygems

Version Path
devise-0.7.5 test/mailers/reset_password_instructions_test.rb
devise-0.7.4 test/mailers/reset_password_instructions_test.rb
devise-0.7.3 test/mailers/reset_password_instructions_test.rb
devise-0.7.2 test/mailers/reset_password_instructions_test.rb
devise-0.7.1 test/mailers/reset_password_instructions_test.rb
devise-0.7.0 test/mailers/reset_password_instructions_test.rb
devise-0.6.3 test/mailers/reset_password_instructions_test.rb
devise-0.6.2 test/mailers/reset_password_instructions_test.rb
devise-0.6.1 test/mailers/reset_password_instructions_test.rb
devise-0.6.0 test/mailers/reset_password_instructions_test.rb
devise-0.5.6 test/mailers/reset_password_instructions_test.rb
devise-0.5.5 test/mailers/reset_password_instructions_test.rb
devise-0.5.4 test/mailers/reset_password_instructions_test.rb
devise-0.5.3 test/mailers/reset_password_instructions_test.rb
devise-0.5.2 test/mailers/reset_password_instructions_test.rb
devise-0.5.1 test/mailers/reset_password_instructions_test.rb
devise-0.5.0 test/mailers/reset_password_instructions_test.rb
shingara-devise-0.4.3.1 test/mailers/reset_password_instructions_test.rb
shingara-devise-0.4.3 test/mailers/reset_password_instructions_test.rb
devise-0.4.3 test/mailers/reset_password_instructions_test.rb