2011-06-01 15:05:04 +04:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2007-12-13 21:52:09 +03:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-06-01 15:05:04 +04:00
|
|
|
#
|
2007-12-13 21:52:09 +03:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-06-01 15:05:04 +04:00
|
|
|
#
|
2007-12-13 21:52:09 +03:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2007-12-13 21:52:09 +03:00
|
|
|
require 'account_controller'
|
|
|
|
|
|
|
|
# Re-raise errors caught by the controller.
|
|
|
|
class AccountController; def rescue_action(e) raise e end; end
|
|
|
|
|
2009-09-13 21:14:35 +04:00
|
|
|
class AccountControllerTest < ActionController::TestCase
|
2008-12-28 12:46:16 +03:00
|
|
|
fixtures :users, :roles
|
2011-06-01 15:05:04 +04:00
|
|
|
|
2007-12-13 21:52:09 +03:00
|
|
|
def setup
|
|
|
|
@controller = AccountController.new
|
|
|
|
@request = ActionController::TestRequest.new
|
|
|
|
@response = ActionController::TestResponse.new
|
|
|
|
User.current = nil
|
|
|
|
end
|
2011-06-01 15:05:04 +04:00
|
|
|
|
2008-07-26 12:46:33 +04:00
|
|
|
def test_login_should_redirect_to_back_url_param
|
|
|
|
# request.uri is "test.host" in test environment
|
2008-09-21 16:45:22 +04:00
|
|
|
post :login, :username => 'jsmith', :password => 'jsmith', :back_url => 'http%3A%2F%2Ftest.host%2Fissues%2Fshow%2F1'
|
2008-07-26 12:46:33 +04:00
|
|
|
assert_redirected_to '/issues/show/1'
|
|
|
|
end
|
2011-06-01 15:05:04 +04:00
|
|
|
|
2008-07-26 12:46:33 +04:00
|
|
|
def test_login_should_not_redirect_to_another_host
|
2008-09-21 16:45:22 +04:00
|
|
|
post :login, :username => 'jsmith', :password => 'jsmith', :back_url => 'http%3A%2F%2Ftest.foo%2Ffake'
|
2008-07-26 12:46:33 +04:00
|
|
|
assert_redirected_to '/my/page'
|
|
|
|
end
|
|
|
|
|
2007-12-13 21:52:09 +03:00
|
|
|
def test_login_with_wrong_password
|
2008-03-01 00:18:35 +03:00
|
|
|
post :login, :username => 'admin', :password => 'bad'
|
2007-12-13 21:52:09 +03:00
|
|
|
assert_response :success
|
|
|
|
assert_template 'login'
|
|
|
|
assert_tag 'div',
|
|
|
|
:attributes => { :class => "flash error" },
|
|
|
|
:content => /Invalid user or password/
|
|
|
|
end
|
2011-06-01 15:05:04 +04:00
|
|
|
|
2012-02-19 22:13:46 +04:00
|
|
|
def test_login_should_rescue_auth_source_exception
|
|
|
|
source = AuthSource.create!(:name => 'Test')
|
|
|
|
User.find(2).update_attribute :auth_source_id, source.id
|
|
|
|
AuthSource.any_instance.stubs(:authenticate).raises(AuthSourceException.new("Something wrong"))
|
|
|
|
|
|
|
|
post :login, :username => 'jsmith', :password => 'jsmith'
|
|
|
|
assert_response 500
|
|
|
|
assert_error_tag :content => /Something wrong/
|
|
|
|
end
|
|
|
|
|
2012-02-26 16:00:41 +04:00
|
|
|
def test_login_should_reset_session
|
|
|
|
@controller.expects(:reset_session).once
|
|
|
|
|
|
|
|
post :login, :username => 'jsmith', :password => 'jsmith'
|
|
|
|
assert_response 302
|
|
|
|
end
|
|
|
|
|
2007-12-13 21:52:09 +03:00
|
|
|
def test_logout
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
get :logout
|
2010-11-14 19:45:32 +03:00
|
|
|
assert_redirected_to '/'
|
2007-12-13 21:52:09 +03:00
|
|
|
assert_nil @request.session[:user_id]
|
|
|
|
end
|
2010-08-02 19:42:54 +04:00
|
|
|
|
2012-02-26 16:00:41 +04:00
|
|
|
def test_logout_should_reset_session
|
|
|
|
@controller.expects(:reset_session).once
|
|
|
|
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
get :logout
|
|
|
|
assert_response 302
|
|
|
|
end
|
|
|
|
|
2011-12-17 03:35:05 +04:00
|
|
|
def test_get_register_with_registration_on
|
|
|
|
with_settings :self_registration => '3' do
|
|
|
|
get :register
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'register'
|
|
|
|
assert_not_nil assigns(:user)
|
2012-02-05 16:17:29 +04:00
|
|
|
|
|
|
|
assert_tag 'input', :attributes => {:name => 'user[password]'}
|
|
|
|
assert_tag 'input', :attributes => {:name => 'user[password_confirmation]'}
|
2010-08-02 19:42:54 +04:00
|
|
|
end
|
2011-12-17 03:35:05 +04:00
|
|
|
end
|
2011-06-01 15:05:04 +04:00
|
|
|
|
2011-12-17 03:35:05 +04:00
|
|
|
def test_get_register_with_registration_off_should_redirect
|
|
|
|
with_settings :self_registration => '0' do
|
|
|
|
get :register
|
|
|
|
assert_redirected_to '/'
|
2010-08-02 19:42:54 +04:00
|
|
|
end
|
|
|
|
end
|
2010-08-02 19:42:59 +04:00
|
|
|
|
|
|
|
# See integration/account_test.rb for the full test
|
2011-12-17 03:35:05 +04:00
|
|
|
def test_post_register_with_registration_on
|
|
|
|
with_settings :self_registration => '3' do
|
|
|
|
assert_difference 'User.count' do
|
2010-08-02 19:42:59 +04:00
|
|
|
post :register, :user => {
|
|
|
|
:login => 'register',
|
|
|
|
:password => 'test',
|
|
|
|
:password_confirmation => 'test',
|
|
|
|
:firstname => 'John',
|
|
|
|
:lastname => 'Doe',
|
|
|
|
:mail => 'register@example.com'
|
|
|
|
}
|
2011-12-17 03:35:05 +04:00
|
|
|
assert_redirected_to '/my/account'
|
2010-08-02 19:42:59 +04:00
|
|
|
end
|
2011-12-17 03:35:05 +04:00
|
|
|
user = User.first(:order => 'id DESC')
|
|
|
|
assert_equal 'register', user.login
|
2012-02-05 16:17:29 +04:00
|
|
|
assert_equal 'John', user.firstname
|
|
|
|
assert_equal 'Doe', user.lastname
|
|
|
|
assert_equal 'register@example.com', user.mail
|
|
|
|
assert user.check_password?('test')
|
2011-12-17 03:35:05 +04:00
|
|
|
assert user.active?
|
2010-08-02 19:42:59 +04:00
|
|
|
end
|
2011-12-17 03:35:05 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_post_register_with_registration_off_should_redirect
|
|
|
|
with_settings :self_registration => '0' do
|
|
|
|
assert_no_difference 'User.count' do
|
|
|
|
post :register, :user => {
|
|
|
|
:login => 'register',
|
|
|
|
:password => 'test',
|
|
|
|
:password_confirmation => 'test',
|
|
|
|
:firstname => 'John',
|
|
|
|
:lastname => 'Doe',
|
|
|
|
:mail => 'register@example.com'
|
|
|
|
}
|
|
|
|
assert_redirected_to '/'
|
2010-08-02 19:42:59 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-07-07 22:27:34 +04:00
|
|
|
|
|
|
|
def test_get_lost_password_should_display_lost_password_form
|
|
|
|
get :lost_password
|
|
|
|
assert_response :success
|
|
|
|
assert_select 'input[name=mail]'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_lost_password_for_active_user_should_create_a_token
|
2012-07-08 02:08:10 +04:00
|
|
|
Token.delete_all
|
2012-07-08 11:20:48 +04:00
|
|
|
ActionMailer::Base.deliveries.clear
|
2012-07-07 22:27:34 +04:00
|
|
|
assert_difference 'ActionMailer::Base.deliveries.size' do
|
|
|
|
assert_difference 'Token.count' do
|
|
|
|
with_settings :host_name => 'mydomain.foo', :protocol => 'http' do
|
|
|
|
post :lost_password, :mail => 'JSmith@somenet.foo'
|
|
|
|
assert_redirected_to '/login'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
token = Token.order('id DESC').first
|
|
|
|
assert_equal User.find(2), token.user
|
|
|
|
assert_equal 'recovery', token.action
|
|
|
|
|
|
|
|
assert_select_email do
|
|
|
|
assert_select "a[href=?]", "http://mydomain.foo/account/lost_password?token=#{token.value}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_lost_password_for_unknown_user_should_fail
|
2012-07-08 02:08:10 +04:00
|
|
|
Token.delete_all
|
2012-07-07 22:27:34 +04:00
|
|
|
assert_no_difference 'Token.count' do
|
|
|
|
post :lost_password, :mail => 'invalid@somenet.foo'
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_lost_password_for_non_active_user_should_fail
|
2012-07-08 02:08:10 +04:00
|
|
|
Token.delete_all
|
2012-07-07 22:27:34 +04:00
|
|
|
assert User.find(2).lock!
|
|
|
|
|
|
|
|
assert_no_difference 'Token.count' do
|
|
|
|
post :lost_password, :mail => 'JSmith@somenet.foo'
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
end
|
2012-07-08 11:36:58 +04:00
|
|
|
|
|
|
|
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
|
2007-12-13 21:52:09 +03:00
|
|
|
end
|