kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
298 lines
9.1 KiB
298 lines
9.1 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2022 the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
require_relative '../legacy_spec_helper'
|
|
|
|
describe User, type: :model do
|
|
include MiniTest::Assertions # refute
|
|
|
|
fixtures :all
|
|
|
|
before do
|
|
@admin = User.find(1)
|
|
@jsmith = User.find(2)
|
|
@dlopper = User.find(3)
|
|
end
|
|
|
|
it 'should create' do
|
|
user = User.new(firstname: 'new', lastname: 'user', mail: 'newuser@somenet.foo')
|
|
|
|
user.login = 'jsmith'
|
|
user.password = 'adminADMIN!'
|
|
user.password_confirmation = 'adminADMIN!'
|
|
# login uniqueness
|
|
assert !user.save
|
|
assert_equal 1, user.errors.count
|
|
|
|
user.login = 'newuser'
|
|
user.password = 'adminADMIN!'
|
|
user.password_confirmation = 'NOTadminADMIN!'
|
|
# password confirmation
|
|
assert !user.save
|
|
assert_equal 1, user.errors.count
|
|
|
|
user.password = 'adminADMIN!'
|
|
user.password_confirmation = 'adminADMIN!'
|
|
assert user.save
|
|
end
|
|
|
|
context 'User.login' do
|
|
it 'should be case-insensitive.' do
|
|
u = User.new(firstname: 'new', lastname: 'user', mail: 'newuser@somenet.foo')
|
|
u.login = 'newuser'
|
|
u.password = 'adminADMIN!'
|
|
u.password_confirmation = 'adminADMIN!'
|
|
assert u.save
|
|
|
|
u = User.new(firstname: 'Similar', lastname: 'User', mail: 'similaruser@somenet.foo')
|
|
u.login = 'NewUser'
|
|
u.password = 'adminADMIN!'
|
|
u.password_confirmation = 'adminADMIN!'
|
|
assert !u.save
|
|
assert_includes u.errors[:login], I18n.translate('activerecord.errors.messages.taken')
|
|
end
|
|
end
|
|
|
|
it 'should mail uniqueness should not be case sensitive' do
|
|
u = User.new(firstname: 'new', lastname: 'user', mail: 'newuser@somenet.foo')
|
|
u.login = 'newuser1'
|
|
u.password = 'adminADMIN!'
|
|
u.password_confirmation = 'adminADMIN!'
|
|
assert u.save
|
|
|
|
u = User.new(firstname: 'new', lastname: 'user', mail: 'newUser@Somenet.foo')
|
|
u.login = 'newuser2'
|
|
u.password = 'adminADMIN!'
|
|
u.password_confirmation = 'adminADMIN!'
|
|
assert !u.save
|
|
assert_includes u.errors[:mail], I18n.translate('activerecord.errors.messages.taken')
|
|
end
|
|
|
|
it 'should validate login presence' do
|
|
@admin.login = ''
|
|
assert !@admin.save
|
|
assert_equal 1, @admin.errors.count
|
|
end
|
|
|
|
context 'User#try_to_login' do
|
|
it 'should fall-back to case-insensitive if user login is not found as-typed.' do
|
|
user = User.try_to_login('AdMin', 'adminADMIN!')
|
|
assert_kind_of User, user
|
|
assert_equal 'admin', user.login
|
|
end
|
|
|
|
it 'should select the exact matching user first' do
|
|
case_sensitive_user = create(:user, login: 'changed', password: 'adminADMIN!',
|
|
password_confirmation: 'adminADMIN!')
|
|
# bypass validations to make it appear like existing data
|
|
case_sensitive_user.update_attribute(:login, 'ADMIN')
|
|
|
|
user = User.try_to_login('ADMIN', 'adminADMIN!')
|
|
assert_kind_of User, user
|
|
assert_equal 'ADMIN', user.login
|
|
end
|
|
end
|
|
|
|
it 'should password' do
|
|
user = User.try_to_login('admin', 'adminADMIN!')
|
|
assert_kind_of User, user
|
|
assert_equal 'admin', user.login
|
|
user.password = 'newpassPASS!'
|
|
assert user.save
|
|
|
|
user = User.try_to_login('admin', 'newpassPASS!')
|
|
assert_kind_of User, user
|
|
assert_equal 'admin', user.login
|
|
end
|
|
|
|
it 'should name format' do
|
|
assert_equal 'Smith, John', @jsmith.name(:lastname_coma_firstname)
|
|
Setting.user_format = :firstname_lastname
|
|
assert_equal 'John Smith', @jsmith.reload.name
|
|
Setting.user_format = :username
|
|
assert_equal 'jsmith', @jsmith.reload.name
|
|
end
|
|
|
|
it 'should lock' do
|
|
user = User.try_to_login('jsmith', 'jsmith')
|
|
assert_equal @jsmith, user
|
|
|
|
@jsmith.status = User.statuses[:locked]
|
|
assert @jsmith.save
|
|
|
|
user = User.try_to_login('jsmith', 'jsmith')
|
|
assert_equal nil, user
|
|
end
|
|
|
|
context '.try_to_login' do
|
|
context 'with good credentials' do
|
|
it 'should return the user' do
|
|
user = User.try_to_login('admin', 'adminADMIN!')
|
|
assert_kind_of User, user
|
|
assert_equal 'admin', user.login
|
|
end
|
|
end
|
|
|
|
context 'with wrong credentials' do
|
|
it 'should return nil' do
|
|
assert_nil User.try_to_login('admin', 'foo')
|
|
end
|
|
end
|
|
end
|
|
|
|
if ldap_configured?
|
|
context '#try_to_login using LDAP' do
|
|
context 'with failed connection to the LDAP server' do
|
|
it 'should return nil' do
|
|
@auth_source = LdapAuthSource.find(1)
|
|
allow_any_instance_of(AuthSource).to receive(:initialize_ldap_con).and_raise(Net::LDAP::Error, 'Cannot connect')
|
|
|
|
assert_equal nil, User.try_to_login('edavis', 'wrong')
|
|
end
|
|
end
|
|
|
|
context 'with an unsuccessful authentication' do
|
|
it 'should return nil' do
|
|
assert_equal nil, User.try_to_login('edavis', 'wrong')
|
|
end
|
|
end
|
|
|
|
context 'on the fly registration' do
|
|
before do
|
|
@auth_source = LdapAuthSource.find(1)
|
|
end
|
|
|
|
context 'with a successful authentication' do
|
|
it "should create a new user account if it doesn't exist" do
|
|
assert_difference('User.count') do
|
|
user = User.try_to_login('edavis', '123456')
|
|
assert !user.admin?
|
|
end
|
|
end
|
|
|
|
it 'should retrieve existing user' do
|
|
user = User.try_to_login('edavis', '123456')
|
|
user.admin = true
|
|
user.save!
|
|
|
|
assert_no_difference('User.count') do
|
|
user = User.try_to_login('edavis', '123456')
|
|
assert user.admin?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
puts 'Skipping LDAP tests.'
|
|
end
|
|
|
|
it 'should return existing or new anonymous' do
|
|
anon = User.anonymous
|
|
assert !anon.new_record?
|
|
assert_kind_of AnonymousUser, anon
|
|
end
|
|
|
|
it { is_expected.to have_one :rss_token }
|
|
|
|
it 'should rss key' do
|
|
assert_nil @jsmith.rss_token
|
|
key = @jsmith.rss_key
|
|
assert_equal 64, key.length
|
|
|
|
@jsmith.reload
|
|
assert_equal key, @jsmith.rss_key
|
|
end
|
|
|
|
it { is_expected.to have_one :api_token }
|
|
|
|
context 'User#find_by_api_key' do
|
|
it 'should return nil if no matching key is found' do
|
|
assert_nil User.find_by_api_key('zzzzzzzzz')
|
|
end
|
|
|
|
it 'should return nil if the key is found for an inactive user' do
|
|
user = create(:user, status: User.statuses[:locked])
|
|
token = build(:api_token, user: user)
|
|
user.api_token = token
|
|
user.save
|
|
|
|
assert_nil User.find_by_api_key(token.value)
|
|
end
|
|
|
|
it 'should return the user if the key is found for an active user' do
|
|
user = create(:user, status: User.statuses[:active])
|
|
token = build(:api_token, user: user)
|
|
user.api_token = token
|
|
user.save
|
|
|
|
assert_equal user, User.find_by_api_key(token.plain_value)
|
|
end
|
|
end
|
|
|
|
it 'should roles for project' do
|
|
# user with a role
|
|
roles = @jsmith.roles_for_project(Project.find(1))
|
|
assert_kind_of Role, roles.first
|
|
assert_equal 'Manager', roles.first.name
|
|
|
|
# user with no role
|
|
assert_nil @dlopper.roles_for_project(Project.find(2)).detect(&:member?)
|
|
end
|
|
|
|
it 'should projects by role for user with role' do
|
|
user = User.find(2)
|
|
assert_kind_of Hash, user.projects_by_role
|
|
assert_equal 2, user.projects_by_role.size
|
|
assert_equal [1, 5], user.projects_by_role[Role.find(1)].map(&:id).sort
|
|
assert_equal [2], user.projects_by_role[Role.find(2)].map(&:id).sort
|
|
end
|
|
|
|
it 'should projects by role for user with no role' do
|
|
user = create(:user)
|
|
assert_equal({}, user.projects_by_role)
|
|
end
|
|
|
|
it 'should projects by role for anonymous' do
|
|
assert_equal({}, User.anonymous.projects_by_role)
|
|
end
|
|
|
|
it 'should comments sorting preference' do
|
|
assert !@jsmith.wants_comments_in_reverse_order?
|
|
@jsmith.pref.comments_sorting = 'asc'
|
|
assert !@jsmith.wants_comments_in_reverse_order?
|
|
@jsmith.pref.comments_sorting = 'desc'
|
|
assert @jsmith.wants_comments_in_reverse_order?
|
|
end
|
|
|
|
it 'should find by mail should be case insensitive' do
|
|
u = User.find_by_mail('JSmith@somenet.foo')
|
|
refute_nil u
|
|
assert_equal 'jsmith@somenet.foo', u.mail
|
|
end
|
|
end
|
|
|