From: Jean-Philippe Lang Date: Sun, 14 Jul 2013 14:39:31 +0000 (+0000) Subject: Additional tests for AccountController. X-Git-Tag: 2.4.0~202 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=085417bdbb340718cd7213f53d56084ef954c3a8;p=redmine.git Additional tests for AccountController. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12022 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/account_controller_test.rb b/test/functional/account_controller_test.rb index b54a306d5..0aae7b596 100644 --- a/test/functional/account_controller_test.rb +++ b/test/functional/account_controller_test.rb @@ -119,6 +119,11 @@ class AccountControllerTest < ActionController::TestCase assert_equal 2, @request.session[:user_id] end + def test_get_logout_with_anonymous_should_redirect + get :logout + assert_redirected_to '/' + end + def test_logout @request.session[:user_id] = 2 post :logout @@ -251,6 +256,15 @@ class AccountControllerTest < ActionController::TestCase end end + def test_lost_password_for_user_who_cannot_change_password_should_fail + User.any_instance.stubs(:change_password_allowed?).returns(false) + + assert_no_difference 'Token.count' do + post :lost_password, :mail => 'JSmith@somenet.foo' + 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) @@ -316,4 +330,15 @@ class AccountControllerTest < ActionController::TestCase end end end + + def test_activation_email_without_session_data_should_fail + User.find(2).update_attribute :status, User::STATUS_REGISTERED + + with_settings :self_registration => '1' do + assert_no_difference 'ActionMailer::Base.deliveries.size' do + get :activation_email + assert_redirected_to '/' + end + end + end end