2009-10-10 17:07:25 -04:00
|
|
|
require 'test/test_helper'
|
2009-09-17 10:06:46 -04:00
|
|
|
|
|
|
|
class ConfirmableTest < ActiveSupport::TestCase
|
|
|
|
|
2009-09-17 19:03:38 -04:00
|
|
|
def setup
|
2009-09-17 20:29:13 -04:00
|
|
|
setup_mailer
|
2009-09-17 19:03:38 -04:00
|
|
|
end
|
|
|
|
|
2009-10-18 07:14:52 -04:00
|
|
|
test 'should generate confirmation token after creating a record' do
|
|
|
|
assert_nil new_user.confirmation_token
|
|
|
|
assert_not_nil create_user.confirmation_token
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should regenerate confirmation token each time' do
|
|
|
|
user = create_user
|
|
|
|
3.times do
|
|
|
|
token = user.confirmation_token
|
|
|
|
user.reset_confirmation!
|
|
|
|
assert_not_equal token, user.confirmation_token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should never generate the same confirmation token for different users' do
|
|
|
|
confirmation_tokens = []
|
|
|
|
10.times do
|
|
|
|
token = create_user.confirmation_token
|
|
|
|
assert !confirmation_tokens.include?(token)
|
|
|
|
confirmation_tokens << token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-17 10:06:46 -04:00
|
|
|
test 'should confirm a user updating confirmed at' do
|
|
|
|
user = create_user
|
|
|
|
assert_nil user.confirmed_at
|
|
|
|
assert user.confirm!
|
|
|
|
assert_not_nil user.confirmed_at
|
|
|
|
end
|
|
|
|
|
2009-10-18 07:14:52 -04:00
|
|
|
test 'should clear confirmation token while confirming a user' do
|
2009-10-15 16:36:44 -04:00
|
|
|
user = create_user
|
2009-10-18 07:14:52 -04:00
|
|
|
assert_present user.confirmation_token
|
2009-10-15 16:36:44 -04:00
|
|
|
user.confirm!
|
2009-10-18 07:14:52 -04:00
|
|
|
assert_nil user.confirmation_token
|
2009-10-15 16:36:44 -04:00
|
|
|
end
|
|
|
|
|
2009-09-17 10:06:46 -04:00
|
|
|
test 'should verify whether a user is confirmed or not' do
|
|
|
|
assert_not new_user.confirmed?
|
|
|
|
user = create_user
|
|
|
|
assert_not user.confirmed?
|
|
|
|
user.confirm!
|
|
|
|
assert user.confirmed?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should not confirm a user already confirmed and add an error to email' do
|
|
|
|
user = create_user
|
|
|
|
assert user.confirm!
|
|
|
|
assert_nil user.errors[:email]
|
|
|
|
assert_not user.confirm!
|
|
|
|
assert_not_nil user.errors[:email]
|
|
|
|
assert_equal 'already confirmed', user.errors[:email]
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should find and confirm an user automatically' do
|
|
|
|
user = create_user
|
2009-10-18 07:14:52 -04:00
|
|
|
confirmed_user = User.confirm!(:confirmation_token => user.confirmation_token)
|
2009-09-17 10:06:46 -04:00
|
|
|
assert_not_nil confirmed_user
|
|
|
|
assert_equal confirmed_user, user
|
|
|
|
assert user.reload.confirmed?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should return a new user with errors if no user exists while trying to confirm' do
|
2009-10-18 07:14:52 -04:00
|
|
|
confirmed_user = User.confirm!(:confirmation_token => 'invalid_confirmation_token')
|
2009-09-17 10:06:46 -04:00
|
|
|
assert confirmed_user.new_record?
|
2009-09-18 09:20:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'should return errors for a new user when trying to confirm' do
|
2009-10-18 07:14:52 -04:00
|
|
|
confirmed_user = User.confirm!(:confirmation_token => 'invalid_confirmation_token')
|
|
|
|
assert_not_nil confirmed_user.errors[:confirmation_token]
|
|
|
|
assert_equal 'is invalid', confirmed_user.errors[:confirmation_token]
|
2009-09-17 10:06:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'should generate errors for a user email if user is already confirmed' do
|
|
|
|
user = create_user
|
|
|
|
user.confirm!
|
2009-10-18 07:14:52 -04:00
|
|
|
confirmed_user = User.confirm!(:confirmation_token => user.confirmation_token)
|
2009-09-17 10:06:46 -04:00
|
|
|
assert confirmed_user.confirmed?
|
|
|
|
assert confirmed_user.errors[:email]
|
|
|
|
end
|
2009-09-17 18:54:19 -04:00
|
|
|
|
2009-09-17 19:03:38 -04:00
|
|
|
test 'should authenticate a confirmed user' do
|
|
|
|
user = create_user
|
|
|
|
user.confirm!
|
2009-10-10 15:20:23 -04:00
|
|
|
authenticated_user = User.authenticate(:email => user.email, :password => user.password)
|
2009-09-17 19:03:38 -04:00
|
|
|
assert_not_nil authenticated_user
|
|
|
|
assert_equal authenticated_user, user
|
2009-09-17 18:54:19 -04:00
|
|
|
end
|
2009-09-17 19:03:38 -04:00
|
|
|
|
2009-09-17 20:29:13 -04:00
|
|
|
test 'should send confirmation instructions by email' do
|
2009-09-18 09:20:45 -04:00
|
|
|
assert_email_sent do
|
2009-09-17 20:29:13 -04:00
|
|
|
create_user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should not send confirmation when trying to save an invalid user' do
|
2009-09-18 09:20:45 -04:00
|
|
|
assert_email_not_sent do
|
2009-09-17 20:29:13 -04:00
|
|
|
user = new_user
|
|
|
|
user.stubs(:valid?).returns(false)
|
|
|
|
user.save
|
|
|
|
end
|
|
|
|
end
|
2009-10-07 23:53:04 -04:00
|
|
|
|
|
|
|
test 'should find a user to send confirmation instructions' do
|
|
|
|
user = create_user
|
|
|
|
confirmation_user = User.send_confirmation_instructions(:email => user.email)
|
|
|
|
assert_not_nil confirmation_user
|
|
|
|
assert_equal confirmation_user, user
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should return a new user if no email was found' do
|
|
|
|
confirmation_user = User.send_confirmation_instructions(:email => "invalid@email.com")
|
|
|
|
assert_not_nil confirmation_user
|
|
|
|
assert confirmation_user.new_record?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should add error to new user email if no email was found' do
|
|
|
|
confirmation_user = User.send_confirmation_instructions(:email => "invalid@email.com")
|
|
|
|
assert confirmation_user.errors[:email]
|
|
|
|
assert_equal 'not found', confirmation_user.errors[:email]
|
|
|
|
end
|
|
|
|
|
2009-10-18 07:14:52 -04:00
|
|
|
test 'should reset confirmation token before send the confirmation instructions email' do
|
2009-10-07 23:53:04 -04:00
|
|
|
user = create_user
|
2009-10-18 07:14:52 -04:00
|
|
|
token = user.confirmation_token
|
2009-10-07 23:53:04 -04:00
|
|
|
confirmation_user = User.send_confirmation_instructions(:email => user.email)
|
2009-10-18 07:14:52 -04:00
|
|
|
assert_not_equal token, user.reload.confirmation_token
|
2009-10-07 23:53:04 -04:00
|
|
|
end
|
|
|
|
|
2009-10-08 18:50:46 -04:00
|
|
|
test 'should reset confirmation status when sending the confirmation instructions' do
|
|
|
|
user = create_user
|
|
|
|
assert_not user.confirmed?
|
|
|
|
confirmation_user = User.send_confirmation_instructions(:email => user.email)
|
|
|
|
assert_not user.reload.confirmed?
|
|
|
|
end
|
|
|
|
|
2009-10-07 23:53:04 -04:00
|
|
|
test 'should send email instructions for the user confirm it\'s email' do
|
|
|
|
user = create_user
|
|
|
|
assert_email_sent do
|
|
|
|
User.send_confirmation_instructions(:email => user.email)
|
|
|
|
end
|
|
|
|
end
|
2009-10-08 18:50:46 -04:00
|
|
|
|
2009-10-30 05:49:18 -04:00
|
|
|
test 'should not resend email instructions if the user change his email' do
|
2009-10-08 18:50:46 -04:00
|
|
|
user = create_user
|
|
|
|
user.email = 'new_test@example.com'
|
|
|
|
assert_email_not_sent do
|
|
|
|
user.save!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-30 05:49:18 -04:00
|
|
|
test 'should not reset confirmation status or token when updating email' do
|
2009-10-08 18:50:46 -04:00
|
|
|
user = create_user
|
|
|
|
user.confirm!
|
|
|
|
user.email = 'new_test@example.com'
|
|
|
|
user.save!
|
2009-10-15 15:54:04 -04:00
|
|
|
|
2009-10-30 05:49:18 -04:00
|
|
|
user.reload
|
|
|
|
assert user.confirmed?
|
|
|
|
assert_nil user.confirmation_token
|
2009-10-15 16:05:46 -04:00
|
|
|
end
|
|
|
|
|
2009-10-15 15:54:04 -04:00
|
|
|
test 'should not be able to send instructions if the user is already confirmed' do
|
|
|
|
user = create_user
|
|
|
|
user.confirm!
|
|
|
|
assert_not user.reset_confirmation!
|
|
|
|
assert user.confirmed?
|
|
|
|
assert user.errors[:email].present?
|
|
|
|
assert_equal 'already confirmed', user.errors[:email]
|
|
|
|
end
|
2009-10-20 19:32:30 -04:00
|
|
|
|
|
|
|
test 'confirm time should fallback to devise confirm in default configuration' do
|
|
|
|
begin
|
2009-10-30 19:51:50 -04:00
|
|
|
confirm_within = Devise::Models.confirm_within
|
|
|
|
Devise::Models.confirm_within = 1.day
|
2009-10-20 19:32:30 -04:00
|
|
|
user = new_user
|
2009-10-22 07:09:34 -04:00
|
|
|
user.confirmation_sent_at = 2.days.ago
|
2009-10-20 19:32:30 -04:00
|
|
|
assert_not user.active?
|
2009-10-30 19:51:50 -04:00
|
|
|
Devise::Models.confirm_within = 3.days
|
2009-10-20 19:32:30 -04:00
|
|
|
assert user.active?
|
|
|
|
ensure
|
2009-10-30 19:51:50 -04:00
|
|
|
Devise::Models.confirm_within = confirm_within
|
2009-10-20 19:32:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should be active when confirmation sent at is not overpast' do
|
2009-10-30 19:51:50 -04:00
|
|
|
Devise::Models.confirm_within = 5.days
|
2009-10-20 19:32:30 -04:00
|
|
|
user = create_user
|
|
|
|
user.confirmation_sent_at = 4.days.ago
|
|
|
|
assert user.active?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should be active when already confirmed' do
|
|
|
|
user = create_user
|
|
|
|
assert_not user.confirmed?
|
|
|
|
assert_not user.active?
|
|
|
|
user.confirm!
|
|
|
|
assert user.confirmed?
|
|
|
|
assert user.active?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should not be active when confirmation was sent within the limit' do
|
2009-10-30 19:51:50 -04:00
|
|
|
Devise::Models.confirm_within = 5.days
|
2009-10-20 19:32:30 -04:00
|
|
|
user = create_user
|
|
|
|
user.confirmation_sent_at = 5.days.ago
|
|
|
|
assert_not user.active?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should be active when confirm in is zero' do
|
2009-10-30 19:51:50 -04:00
|
|
|
Devise::Models.confirm_within = 0.days
|
2009-10-20 19:32:30 -04:00
|
|
|
user = create_user
|
|
|
|
user.confirmation_sent_at = Date.today
|
|
|
|
assert_not user.active?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should not be active when confirmation was sent before confirm in time' do
|
2009-10-30 19:51:50 -04:00
|
|
|
Devise::Models.confirm_within = 4.days
|
2009-10-20 19:32:30 -04:00
|
|
|
user = create_user
|
|
|
|
user.confirmation_sent_at = 5.days.ago
|
|
|
|
assert_not user.active?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'should not be active without confirmation' do
|
|
|
|
user = create_user
|
|
|
|
user.update_attribute(:confirmation_sent_at, nil)
|
|
|
|
assert_not user.reload.active?
|
|
|
|
end
|
|
|
|
|
2009-09-17 10:06:46 -04:00
|
|
|
end
|