2011-08-27 08:52:39 +04:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2006-07-09 20:30:01 +04: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-08-27 08:52:39 +04:00
|
|
|
#
|
2006-07-09 20:30:01 +04: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-08-27 08:52:39 +04:00
|
|
|
#
|
2006-07-09 20:30:01 +04: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__)
|
2006-07-09 20:30:01 +04:00
|
|
|
|
|
|
|
class AdminTest < ActionController::IntegrationTest
|
2011-09-24 14:10:59 +04:00
|
|
|
fixtures :projects, :trackers, :issue_statuses, :issues,
|
|
|
|
:enumerations, :users, :issue_categories,
|
|
|
|
:projects_trackers,
|
|
|
|
:roles,
|
|
|
|
:member_roles,
|
|
|
|
:members,
|
|
|
|
:enabled_modules,
|
|
|
|
:workflows
|
2006-07-09 20:30:01 +04:00
|
|
|
|
|
|
|
def test_add_user
|
|
|
|
log_user("admin", "admin")
|
2010-09-29 20:00:45 +04:00
|
|
|
get "/users/new"
|
2006-07-09 20:30:01 +04:00
|
|
|
assert_response :success
|
2010-09-29 20:00:45 +04:00
|
|
|
assert_template "users/new"
|
2011-12-10 17:33:01 +04:00
|
|
|
post "/users",
|
2011-09-24 14:11:26 +04:00
|
|
|
:user => { :login => "psmith", :firstname => "Paul",
|
|
|
|
:lastname => "Smith", :mail => "psmith@somenet.foo",
|
|
|
|
:language => "en", :password => "psmith09",
|
|
|
|
:password_confirmation => "psmith09" }
|
2011-08-27 08:52:39 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
user = User.find_by_login("psmith")
|
2006-07-09 20:30:01 +04:00
|
|
|
assert_kind_of User, user
|
2009-09-12 12:36:46 +04:00
|
|
|
assert_redirected_to "/users/#{ user.id }/edit"
|
2011-08-27 08:52:39 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
logged_user = User.try_to_login("psmith", "psmith09")
|
2006-07-09 20:30:01 +04:00
|
|
|
assert_kind_of User, logged_user
|
2006-07-29 13:32:58 +04:00
|
|
|
assert_equal "Paul", logged_user.firstname
|
2011-08-27 08:52:39 +04:00
|
|
|
|
2010-10-04 19:36:16 +04:00
|
|
|
put "users/#{user.id}", :id => user.id, :user => { :status => User::STATUS_LOCKED }
|
2009-09-12 12:36:46 +04:00
|
|
|
assert_redirected_to "/users/#{ user.id }/edit"
|
2006-07-29 13:32:58 +04:00
|
|
|
locked_user = User.try_to_login("psmith", "psmith09")
|
2006-07-09 20:30:01 +04:00
|
|
|
assert_equal nil, locked_user
|
|
|
|
end
|
2009-11-14 22:41:02 +03:00
|
|
|
|
|
|
|
test "Add a user as an anonymous user should fail" do
|
2011-12-10 17:33:01 +04:00
|
|
|
post '/users',
|
2011-09-24 14:11:52 +04:00
|
|
|
:user => { :login => 'psmith', :firstname => 'Paul'},
|
|
|
|
:password => "psmith09", :password_confirmation => "psmith09"
|
2009-11-14 22:41:02 +03:00
|
|
|
assert_response :redirect
|
2010-10-04 19:36:16 +04:00
|
|
|
assert_redirected_to "/login?back_url=http%3A%2F%2Fwww.example.com%2Fusers"
|
2009-11-14 22:41:02 +03:00
|
|
|
end
|
2006-07-09 20:30:01 +04:00
|
|
|
end
|