heartcombo--devise/test/integration/confirmable_test.rb

105 lines
3.4 KiB
Ruby
Raw Normal View History

require 'test_helper'
2009-10-12 11:37:42 +00:00
class ConfirmationTest < ActionController::IntegrationTest
2009-10-12 11:37:42 +00:00
def visit_user_confirmation_with_token(confirmation_token)
visit user_confirmation_path(:confirmation_token => confirmation_token)
end
2009-10-12 12:56:12 +00:00
test 'user should be able to request a new confirmation' do
user = create_user(:confirm => false)
2009-10-12 11:37:42 +00:00
ActionMailer::Base.deliveries.clear
2009-10-12 12:56:12 +00:00
visit new_user_session_path
click_link "Didn't receive confirmation instructions?"
2009-10-12 11:37:42 +00:00
2009-10-12 12:56:12 +00:00
fill_in 'email', :with => user.email
2009-10-12 11:37:42 +00:00
click_button 'Resend confirmation instructions'
assert_current_url '/users/sign_in'
2009-10-12 11:37:42 +00:00
assert_contain 'You will receive an email with instructions about how to confirm your account in a few minutes'
assert_equal 1, ActionMailer::Base.deliveries.size
end
test 'user with invalid confirmation token should not be able to confirm an account' do
visit_user_confirmation_with_token('invalid_confirmation')
2010-04-13 21:28:13 +00:00
assert_have_selector '#error_explanation'
assert_contain /Confirmation token(.*)invalid/
2009-10-12 11:37:42 +00:00
end
test 'user with valid confirmation token should be able to confirm an account' do
2009-10-12 12:56:12 +00:00
user = create_user(:confirm => false)
assert_not user.confirmed?
visit_user_confirmation_with_token(user.confirmation_token)
2009-10-12 11:37:42 +00:00
assert_contain 'Your account was successfully confirmed.'
assert_current_url '/'
2009-10-12 12:56:12 +00:00
assert user.reload.confirmed?
2009-10-12 11:37:42 +00:00
end
test 'already confirmed user should not be able to confirm the account again' do
2009-11-24 20:02:36 +00:00
user = create_user(:confirm => false)
user.confirmed_at = Time.now
user.save
visit_user_confirmation_with_token(user.confirmation_token)
2009-10-12 11:37:42 +00:00
2010-04-13 21:28:13 +00:00
assert_have_selector '#error_explanation'
2009-10-12 11:37:42 +00:00
assert_contain 'already confirmed'
end
test 'already confirmed user should not be able to confirm the account again neither request confirmation' do
user = create_user(:confirm => false)
user.confirmed_at = Time.now
user.save
visit_user_confirmation_with_token(user.confirmation_token)
assert_contain 'already confirmed'
fill_in 'email', :with => user.email
click_button 'Resend confirmation instructions'
assert_contain 'already confirmed'
end
test 'sign in user automatically after confirming it\'s email' do
user = create_user(:confirm => false)
visit_user_confirmation_with_token(user.confirmation_token)
assert warden.authenticated?(:user)
end
test 'increases sign count when signed in through confirmation' do
user = create_user(:confirm => false)
visit_user_confirmation_with_token(user.confirmation_token)
user.reload
assert_equal 1, user.sign_in_count
end
test 'not confirmed user with setup to block without confirmation should not be able to sign in' do
swap Devise, :confirm_within => 0.days do
sign_in_as_user(:confirm => false)
assert_contain 'You have to confirm your account before continuing'
assert_not warden.authenticated?(:user)
end
end
test 'not confirmed user but configured with some days to confirm should be able to sign in' do
swap Devise, :confirm_within => 1.day do
sign_in_as_user(:confirm => false)
assert_response :success
assert warden.authenticated?(:user)
end
end
test 'error message is configurable by resource name' do
2009-11-23 00:46:57 +00:00
store_translations :en, :devise => {
:failure => { :user => { :unconfirmed => "Not confirmed user" } }
2009-11-23 00:46:57 +00:00
} do
sign_in_as_user(:confirm => false)
assert_contain 'Not confirmed user'
end
end
2009-10-12 11:37:42 +00:00
end