summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-08 07:36:58 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-08 07:36:58 +0000
commitc11f5a23fee248fe12236585c6638d104e8fd80d (patch)
tree5fbac8a27ddd6a0b0d3ef2c52d584ec9d9ecbe8f /test
parentab96a29460c650540c6bb66b5463c3c6599f9c2c (diff)
downloadredmine-c11f5a23fee248fe12236585c6638d104e8fd80d.tar.gz
redmine-c11f5a23fee248fe12236585c6638d104e8fd80d.zip
Code cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9946 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/functional/account_controller_test.rb54
1 files changed, 54 insertions, 0 deletions
diff --git a/test/functional/account_controller_test.rb b/test/functional/account_controller_test.rb
index 2c1310695..f48e4b3a6 100644
--- a/test/functional/account_controller_test.rb
+++ b/test/functional/account_controller_test.rb
@@ -186,4 +186,58 @@ class AccountControllerTest < ActionController::TestCase
assert_response :success
end
end
+
+ def test_get_lost_password_with_token_should_display_the_password_recovery_form
+ user = User.find(2)
+ token = Token.create!(:action => 'recovery', :user => user)
+
+ get :lost_password, :token => token.value
+ assert_response :success
+ assert_template 'password_recovery'
+
+ assert_select 'input[type=hidden][name=token][value=?]', token.value
+ end
+
+ def test_get_lost_password_with_invalid_token_should_redirect
+ get :lost_password, :token => "abcdef"
+ assert_redirected_to '/'
+ end
+
+ def test_post_lost_password_with_token_should_change_the_user_password
+ user = User.find(2)
+ token = Token.create!(:action => 'recovery', :user => user)
+
+ post :lost_password, :token => token.value, :new_password => 'newpass', :new_password_confirmation => 'newpass'
+ assert_redirected_to '/login'
+ user.reload
+ assert user.check_password?('newpass')
+ assert_nil Token.find_by_id(token.id), "Token was not deleted"
+ end
+
+ def test_post_lost_password_with_token_for_non_active_user_should_fail
+ user = User.find(2)
+ token = Token.create!(:action => 'recovery', :user => user)
+ user.lock!
+
+ post :lost_password, :token => token.value, :new_password => 'newpass', :new_password_confirmation => 'newpass'
+ assert_redirected_to '/'
+ assert ! user.check_password?('newpass')
+ end
+
+ def test_post_lost_password_with_token_and_password_confirmation_failure_should_redisplay_the_form
+ user = User.find(2)
+ token = Token.create!(:action => 'recovery', :user => user)
+
+ post :lost_password, :token => token.value, :new_password => 'newpass', :new_password_confirmation => 'wrongpass'
+ assert_response :success
+ assert_template 'password_recovery'
+ assert_not_nil Token.find_by_id(token.id), "Token was deleted"
+
+ assert_select 'input[type=hidden][name=token][value=?]', token.value
+ end
+
+ def test_post_lost_password_with_invalid_token_should_redirect
+ post :lost_password, :token => "abcdef", :new_password => 'newpass', :new_password_confirmation => 'newpass'
+ assert_redirected_to '/'
+ end
end