testERP5Security.py 47.2 KB
Newer Older
1
# -*- coding: utf-8 -*-
2 3
##############################################################################
#
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
# Copyright (c) 2004 Nexedi SARL and Contributors. All Rights Reserved.
#                                    Jerome Perrin <jerome@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################

"""Tests ERP5 User Management.
"""

33
import itertools
34
import transaction
35
import unittest
Nicolas Dumazet's avatar
Nicolas Dumazet committed
36
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
37
from Products.ERP5Type.tests.utils import createZODBPythonScript
38
from AccessControl.SecurityManagement import newSecurityManager
39
from AccessControl.SecurityManagement import getSecurityManager
40
from AccessControl import SpecialUsers
41
from Products.PluggableAuthService import PluggableAuthService
42
from zope.interface.verify import verifyClass
43
from DateTime import DateTime
44
from Products import ERP5Security
45
from Products.DCWorkflow.DCWorkflow import ValidationFailed
46

47 48
AUTO_LOGIN = object()

49 50 51
class TestUserManagement(ERP5TypeTestCase):
  """Tests User Management in ERP5Security.
  """
52
  _login_generator = itertools.count().next
53

54 55
  def getTitle(self):
    """Title of the test."""
56
    return "ERP5Security: User Management"
57

58 59
  def getBusinessTemplateList(self):
    """List of BT to install. """
60
    return ('erp5_base', 'erp5_administration',)
61

62 63
  def beforeTearDown(self):
    """Clears person module and invalidate caches when tests are finished."""
64
    transaction.abort()
65 66 67
    self.getPersonModule().manage_delObjects([x for x in
                             self.getPersonModule().objectIds()])
    self.tic()
68

69
  def login(self):
70
    uf = self.getUserFolder()
71 72 73 74
    uf._doAddUser('alex', '', ['Manager', 'Assignee', 'Assignor',
                               'Associate', 'Auditor', 'Author'], [])
    user = uf.getUserById('alex').__of__(uf)
    newSecurityManager(None, user)
75 76 77 78 79

  def getUserFolder(self):
    """Returns the acl_users. """
    return self.getPortal().acl_users

80
  def test_GroupManagerInterfaces(self):
81
    """Tests group manager plugin respects interfaces."""
82
    # XXX move to GroupManager test class
83 84 85 86
    from Products.PluggableAuthService.interfaces.plugins import IGroupsPlugin
    from Products.ERP5Security.ERP5GroupManager import ERP5GroupManager
    verifyClass(IGroupsPlugin, ERP5GroupManager)

87
  def test_UserManagerInterfaces(self):
88
    """Tests user manager plugin respects interfaces."""
89 90 91 92 93 94
    from Products.PluggableAuthService.interfaces.plugins import\
                IAuthenticationPlugin, IUserEnumerationPlugin
    from Products.ERP5Security.ERP5UserManager import ERP5UserManager
    verifyClass(IAuthenticationPlugin, ERP5UserManager)
    verifyClass(IUserEnumerationPlugin, ERP5UserManager)

95
  def test_UserFolder(self):
96
    """Tests user folder has correct meta type."""
97
    self.assertTrue(isinstance(self.getUserFolder(),
98 99
        PluggableAuthService.PluggableAuthService))

100 101 102 103 104
  def loginAsUser(self, username):
    uf = self.portal.acl_users
    user = uf.getUserById(username).__of__(uf)
    newSecurityManager(None, user)

105 106
  def _makePerson(self, login=AUTO_LOGIN, open_assignment=1, assignment_start_date=None,
                  assignment_stop_date=None, tic=True, password='secret', **kw):
107 108
    """Creates a person in person module, and returns the object, after
    indexing is done. """
109 110
    person_module = self.getPersonModule()
    new_person = person_module.newContent(
111
                     portal_type='Person', **kw)
112 113 114
    assignment = new_person.newContent(portal_type = 'Assignment',
                                       start_date=assignment_start_date,
                                       stop_date=assignment_stop_date,)
115 116
    if open_assignment:
      assignment.open()
117 118 119 120 121 122 123 124 125 126 127
    if login is not None:
      if login is AUTO_LOGIN:
        login = 'login_%s' % self._login_generator()
      new_person.newContent(
        portal_type='ERP5 Login',
        reference=login,
        password=password,
      ).validate()
    if tic:
      self.tic()
    return new_person.Person_getUserId(), login, password
128

129 130 131 132 133 134 135
  def _assertUserExists(self, login, password):
    """Checks that a user with login and password exists and can log in to the
    system.
    """
    from Products.PluggableAuthService.interfaces.plugins import\
                                                      IAuthenticationPlugin
    uf = self.getUserFolder()
Vincent Pelletier's avatar
Vincent Pelletier committed
136
    self.assertNotEquals(uf.getUser(login), None)
137 138 139 140 141 142 143 144
    for plugin_name, plugin in uf._getOb('plugins').listPlugins(
                                IAuthenticationPlugin ):
      if plugin.authenticateCredentials(
                  {'login':login, 'password':password}) is not None:
        break
    else:
      self.fail("No plugin could authenticate '%s' with password '%s'" %
              (login, password))
145

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
  def _assertUserDoesNotExists(self, login, password):
    """Checks that a user with login and password does not exists and cannot
    log in to the system.
    """
    from Products.PluggableAuthService.interfaces.plugins import\
                                                        IAuthenticationPlugin
    uf = self.getUserFolder()
    for plugin_name, plugin in uf._getOb('plugins').listPlugins(
                              IAuthenticationPlugin ):
      if plugin.authenticateCredentials(
                {'login':login, 'password':password}) is not None:
        self.fail(
           "Plugin %s should not have authenticated '%s' with password '%s'" %
           (plugin_name, login, password))

161
  def test_PersonWithLoginPasswordAreUsers(self):
162
    """Tests a person with a login & password is a valid user."""
163 164
    _, login, password = self._makePerson()
    self._assertUserExists(login, password)
165

166 167
  def test_PersonLoginCaseSensitive(self):
    """Login/password are case sensitive."""
168 169 170 171
    login = 'case_test_user'
    _, _, password = self._makePerson(login=login)
    self._assertUserExists(login, password)
    self._assertUserDoesNotExists('case_test_User', password)
172

173 174
  def test_PersonLoginIsNotStripped(self):
    """Make sure 'foo ', ' foo' and ' foo ' do not match user 'foo'. """
175 176 177 178 179
    _, login, password = self._makePerson()
    self._assertUserExists(login, password)
    self._assertUserDoesNotExists(login + ' ', password)
    self._assertUserDoesNotExists(' ' + login, password)
    self._assertUserDoesNotExists(' ' + login + ' ', password)
180 181 182

  def test_PersonLoginCannotBeComposed(self):
    """Make sure ZSQLCatalog keywords cannot be used at login time"""
183 184 185 186 187 188
    _, login, password = self._makePerson()
    self._assertUserExists(login, password)
    doest_not_exist = 'bar'
    self._assertUserDoesNotExists(doest_not_exist, password)
    self._assertUserDoesNotExists(login + ' OR ' + doest_not_exist, password)
    self._assertUserDoesNotExists(doest_not_exist + ' OR ' + login, password)
189

190
  def test_PersonLoginQuote(self):
191 192 193 194 195 196
    login = "'"
    _, _, password = self._makePerson(login=login)
    self._assertUserExists(login, password)
    login = '"'
    _, _, password = self._makePerson(login=login)
    self._assertUserExists(login, password)
197 198

  def test_PersonLogin_OR_Keyword(self):
199 200 201 202 203
    base_login = 'foo'
    login = base_login + ' OR bar'
    _, _, password = self._makePerson(login=login)
    self._assertUserExists(login, password)
    self._assertUserDoesNotExists(base_login, password)
204 205 206

  def test_PersonLoginCatalogKeyWord(self):
    # use something that would turn the username in a ZSQLCatalog catalog keyword
207 208 209 210 211 212
    base_login ='foo'
    login = base_login + '%'
    _, _, password = self._makePerson(login=login)
    self._assertUserExists(login, password)
    self._assertUserDoesNotExists(base_login, password)
    self._assertUserDoesNotExists(base_login + "bar", password)
213 214

  def test_PersonLoginNGT(self):
215 216 217 218
    login = '< foo'
    _, _, password = self._makePerson(login=login)
    self._assertUserExists(login, password)
    self._assertUserDoesNotExists('fo', password)
219

220 221
  def test_PersonLoginNonAscii(self):
    """Login can contain non ascii chars."""
222 223 224
    login = 'j\xc3\xa9'
    _, _, password = self._makePerson(login=login)
    self._assertUserExists(login, password)
225 226

  def test_PersonWithLoginWithEmptyPasswordAreNotUsers(self):
227
    """Tests a person with a login but no password is not a valid user."""
228 229 230 231 232 233
    password = None
    _, login, _ = self._makePerson(password=password)
    self._assertUserDoesNotExists(login, password)
    password = ''
    _, login, self._makePerson(password=password)
    self._assertUserDoesNotExists(login, password)
234

235
  def test_PersonWithEmptyLoginAreNotUsers(self):
236 237 238 239 240 241 242 243 244 245
    """Tests a person with empty login & password is not a valid user."""
    _, login, _ = self._makePerson()
    pas_user, = self.portal.acl_users.searchUsers(login=login, exact_match=True)
    pas_login, = pas_user['login_list']
    login_value = self.portal.restrictedTraverse(pas_login['path'])
    login_value.invalidate()
    login_value.setReference('')
    self.commit()
    self.assertRaises(ValidationFailed, login_value.validate)
    self.assertRaises(ValidationFailed, self.portal.portal_workflow.doActionFor, login_value, 'validate_action')
246

247 248
  def test_PersonWithLoginWithNotAssignmentAreNotUsers(self):
    """Tests a person with a login & password and no assignment open is not a valid user."""
249 250
    _, login, password = self._makePerson(open_assignment=0)
    self._assertUserDoesNotExists(login, password)
251

252 253 254 255
  def _testUserNameExistsButCannotLoginAndCannotCreate(self, login):
    self.assertTrue(self.getUserFolder().searchUsers(login=login, exact_match=True))
    self._assertUserDoesNotExists(login, '')
    self.assertRaises(ValidationFailed, self._makePerson, login=login)
256

257
  def test_PersonWithSuperUserLogin(self):
258
    """Tests one cannot use the "super user" special login."""
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
    self._testUserNameExistsButCannotLoginAndCannotCreate(ERP5Security.SUPER_USER)

  def test_PersonWithAnonymousLogin(self):
    """Tests one cannot use the "anonymous user" special login."""
    self._testUserNameExistsButCannotLoginAndCannotCreate(SpecialUsers.nobody.getUserName())

  def test_PersonWithSystemUserLogin(self):
    """Tests one cannot use the "system user" special login."""
    self._testUserNameExistsButCannotLoginAndCannotCreate(SpecialUsers.system.getUserName())

  def test_searchUserId(self):
    substring = 'person_id'
    user_id_set = {substring + '1', '1' + substring}
    for user_id in user_id_set:
      self._makePerson(reference=user_id)
    self.assertEqual(
      user_id_set,
      {x['userid'] for x in self.portal.acl_users.searchUsers(id=substring, exact_match=False)},
    )

  def test_searchLogin(self):
    substring = 'person_login'
    login_set = {substring + '1', '1' + substring}
    for login in login_set:
      self._makePerson(login=login)
    self.assertEqual(
      login_set,
      {x['login'] for x in self.portal.acl_users.searchUsers(login=substring, exact_match=False)},
    )

  def test_searchUsersIdExactMatch(self):
    substring = 'person2_id'
    self._makePerson(reference=substring)
    self._makePerson(reference=substring + '1')
    self._makePerson(reference='1' + substring)
    self.assertEqual(
      [substring],
      [x['userid'] for x in self.portal.acl_users.searchUsers(id=substring, exact_match=True)],
    )

  def test_searchUsersLoginExactMatch(self):
    substring = 'person2_login'
    self._makePerson(login=substring)
    self._makePerson(login=substring + '1')
    self._makePerson(login='1' + substring)
    self.assertEqual(
      [substring],
      [x['login'] for x in self.portal.acl_users.searchUsers(login=substring, exact_match=True)],
    )

  def test_MultipleUsers(self):
    """Tests that it's refused to create two Persons with same user id."""
    user_id, login, _ = self._makePerson()
    self.assertRaises(ValidationFailed, self._makePerson, reference=user_id)
    self.assertRaises(ValidationFailed, self._makePerson, login=login)
314

315 316
  def test_MultiplePersonReferenceWithoutCommit(self):
    """
317
    Tests that it's refused to create two Persons with same user id.
318 319 320 321 322
    Check if both persons are created in the same transaction
    """
    person_module = self.getPersonModule()
    new_person = person_module.newContent(
                     portal_type='Person', reference='new_person')
323
    self.assertRaises(ValidationFailed, person_module.newContent,
324 325 326 327
                     portal_type='Person', reference='new_person')

  def test_MultiplePersonReferenceWithoutTic(self):
    """
328
    Tests that it's refused to create two Persons with same user id.
329 330 331 332 333
    Check if both persons are created in 2 different transactions.
    """
    person_module = self.getPersonModule()
    new_person = person_module.newContent(
                     portal_type='Person', reference='new_person')
334
    self.commit()
335
    self.assertRaises(ValidationFailed, person_module.newContent,
336 337 338 339
                     portal_type='Person', reference='new_person')

  def test_MultiplePersonReferenceConcurrentTransaction(self):
    """
340
    Tests that it's refused to create two Persons with same user id.
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
341
    Check if both persons are created in 2 concurrent transactions.
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
    For now, just verify that serialize is called on person_module.
    """
    class DummyTestException(Exception):
      pass

    def verify_serialize_call(self):
      # Check that serialize is called on person module
      if self.getRelativeUrl() == 'person_module':
        raise DummyTestException
      else:
        return self.serialize_call()

    # Replace serialize by a dummy method
    from Products.ERP5Type.Base import Base
    Base.serialize_call = Base.serialize
    Base.serialize = verify_serialize_call

    person_module = self.getPersonModule()
    try:
      self.assertRaises(DummyTestException, person_module.newContent,
                       portal_type='Person', reference='new_person')
    finally:
      Base.serialize = Base.serialize_call

366
  def test_PersonCopyAndPaste(self):
367
    """If we copy and paste a person, login must not be copyied."""
368 369 370 371 372 373 374 375 376 377 378
    user_id, _, _ = self._makePerson(reference='new_person')
    user, = self.portal.acl_users.searchUsers(id=user_id, exact_match=True)
    user_value = self.portal.restrictedTraverse(user['path'])
    container = user_value.getParentValue()
    changed, = container.manage_pasteObjects(
      container.manage_copyObjects([user_value.getId()]),
    )
    self.assertNotEquals(
      container[changed['new_id']].Person_getUserId(),
      user_id,
    )
379

380 381
  def test_PreferenceTool_setNewPassword(self):
    # Preference Tool has an action to change password
382 383 384 385 386 387 388 389
    user_id, login, password = self._makePerson()
    self._assertUserExists(login, password)
    pas_user, = self.portal.acl_users.searchUsers(id=user_id, exact_match=True)
    pas_login, = pas_user['login_list']
    login_value = self.portal.restrictedTraverse(pas_login['path'])
    new_password = 'new' + password

    self.loginAsUser(user_id)
390 391
    result = self.portal.portal_preferences.PreferenceTool_setNewPassword(
      dialog_id='PreferenceTool_viewChangePasswordDialog',
392 393
      current_password='bad' + password,
      new_password=new_password,
394 395
    )
    self.assertEqual(result, self.portal.absolute_url()+'/portal_preferences/PreferenceTool_viewChangePasswordDialog?portal_status_message=Current%20password%20is%20wrong.')
396 397 398 399 400 401

    self.login()
    self._assertUserExists(login, password)
    self._assertUserDoesNotExists(login, new_password)

    self.loginAsUser(user_id)
402 403
    result = self.portal.portal_preferences.PreferenceTool_setNewPassword(
      dialog_id='PreferenceTool_viewChangePasswordDialog',
404 405
      current_password=password,
      new_password=new_password,
406 407
    )
    self.assertEqual(result, self.portal.absolute_url()+'/logout')
408

409 410 411
    self.login()
    self._assertUserExists(login, new_password)
    self._assertUserDoesNotExists(login, password)
412
    # password is not stored in plain text
413
    self.assertNotEquals(new_password, self.portal.restrictedTraverse(pas_user['path']).getPassword())
414

415 416
  def test_OpenningAssignmentClearCache(self):
    """Openning an assignment for a person clear the cache automatically."""
417 418 419 420
    user_id, login, password = self._makePerson(open_assignment=0)
    self._assertUserDoesNotExists(login, password)
    user, = self.portal.acl_users.searchUsers(id=user_id, exact_match=True)
    pers = self.portal.restrictedTraverse(user['path'])
421 422
    assi = pers.newContent(portal_type='Assignment')
    assi.open()
423
    self.commit()
424
    self._assertUserExists(login, password)
425
    assi.close()
426
    self.commit()
427
    self._assertUserDoesNotExists(login, password)
428 429

  def test_PersonNotIndexedNotCached(self):
430
    user_id, login, password = self._makePerson(tic=False)
431
    # not indexed yet
432
    self._assertUserDoesNotExists(login, password)
433
    self.tic()
434
    self._assertUserExists(login, password)
435 436

  def test_PersonNotValidNotCached(self):
437 438 439 440 441 442 443
    user_id, login, password = self._makePerson()
    password += '2'
    pas_user, = self.portal.acl_users.searchUsers(login=login, exact_match=True)
    pas_login, = pas_user['login_list']
    self._assertUserDoesNotExists(login, password)
    self.portal.restrictedTraverse(pas_login['path']).setPassword(password)
    self._assertUserExists(login, password)
444

445 446 447 448 449 450 451 452 453
  def test_PersonLoginMigration(self):
    self.portal.acl_users.manage_addProduct['ERP5Security'].addERP5UserManager('erp5_users')
    self.portal.acl_users.erp5_users.manage_activateInterfaces([
      'IAuthenticationPlugin',
      'IUserEnumerationPlugin',
    ])
    pers = self.portal.person_module.newContent(
      portal_type='Person',
      reference='the_user',
454
      reference=None,
455 456 457 458 459 460 461 462 463 464 465 466 467
    )
    pers.newContent(
      portal_type='Assignment',
    ).open()
    pers.setPassword('secret')
    self.assertEqual(len(pers.objectValues(portal_type='ERP5 Login')), 0)
    self.tic()
    self._assertUserExists('the_user', 'secret')
    self.portal.portal_templates.fixConsistency(filter={'constraint_type': 'post_upgrade'})
    self.portal.portal_caches.clearAllCache()
    self.tic()
    self._assertUserExists('the_user', 'secret')
    self.assertEqual(pers.getPassword(), None)
468
    self.assertEqual(pers.Person_getUserId(), 'the_user')
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
    login = pers.objectValues(portal_type='ERP5 Login')[0]
    login.setPassword('secret2')
    self.portal.portal_caches.clearAllCache()
    self.tic()
    self._assertUserDoesNotExists('the_user', 'secret')
    self._assertUserExists('the_user', 'secret2')

  def test_ERP5LoginUserManagerMigration(self):
    acl_users= self.portal.acl_users
    acl_users.manage_delObjects(ids=['erp5_login_users'])
    portal_templates = self.portal.portal_templates
    self.assertNotEqual(portal_templates.checkConsistency(filter={'constraint_type': 'pre_upgrade'}) , [])
    # call checkConsistency again to check if FIX does not happen by checkConsistency().
    self.assertNotEqual(portal_templates.checkConsistency(filter={'constraint_type': 'pre_upgrade'}) , [])
    portal_templates.fixConsistency(filter={'constraint_type': 'pre_upgrade'})
    self.assertEqual(portal_templates.checkConsistency(filter={'constraint_type': 'pre_upgrade'}) , [])
    self.assertTrue('erp5_login_users' in acl_users)
486

487 488 489
  def test_AssignmentWithDate(self):
    """Tests a person with an assignment with correct date is a valid user."""
    date = DateTime()
490 491 492 493 494
    _, login, password = self._makePerson(
      assignment_start_date=date - 5,
      assignment_stop_date=date + 5,
    )
    self._assertUserExists(login, password)
495 496 497 498

  def test_AssignmentWithBadStartDate(self):
    """Tests a person with an assignment with bad start date is not a valid user."""
    date = DateTime()
499 500 501 502 503
    _, login, password = self._makePerson(
      assignment_start_date=date + 1,
      assignment_stop_date=date + 5,
    )
    self._assertUserDoesNotExists(login, password)
504 505 506 507

  def test_AssignmentWithBadStopDate(self):
    """Tests a person with an assignment with bad stop date is not a valid user."""
    date = DateTime()
508 509 510 511 512
    _, login, password = self._makePerson(
      assignment_start_date=date - 5,
      assignment_stop_date=date - 1,
    )
    self._assertUserDoesNotExists(login, password)
513

514
  def test_DeletedPersonIsNotUser(self):
515 516 517 518
    user_id, login, password = self._makePerson()
    self._assertUserExists(login, password)
    acl_user, = self.portal.acl_users.searchUsers(id=user_id, exact_match=True)
    self.portal.restrictedTraverse(acl_user['path']).delete()
519
    self.commit()
520
    self._assertUserDoesNotExists(login, password)
521

522
  def test_ReallyDeletedPersonIsNotUser(self):
523 524 525 526
    user_id, login, password = self._makePerson()
    acl_user, = self.portal.acl_users.searchUsers(id=user_id, exact_match=True)
    p = self.portal.restrictedTraverse(acl_user['path'])
    self._assertUserExists(login, password)
527
    p.getParentValue().deleteContent(p.getId())
528
    self.commit()
529
    self._assertUserDoesNotExists(login, password)
530

531
  def test_InvalidatedPersonIsUser(self):
532 533 534 535
    user_id, login, password = self._makePerson()
    acl_user, = self.portal.acl_users.searchUsers(id=user_id, exact_match=True)
    p = self.portal.restrictedTraverse(acl_user['path'])
    self._assertUserExists(login, password)
536 537
    p.validate()
    p.invalidate()
538
    self.commit()
539
    self._assertUserExists(login, password)
540

541 542 543 544 545
  def test_UserIdIsPossibleToUnset(self):
    """Make sure that it is possible to remove user id"""
    user_id, login, password = self._makePerson()
    acl_user, = self.portal.acl_users.searchUsers(id=user_id, exact_match=True)
    person = self.portal.restrictedTraverse(acl_user['path'])
546
    person.setReference(None)
547
    self.tic()
548
    self.assertEqual(None, person.Person_getUserId())
549

550 551 552
  def test_duplicatePersonUserId(self):
    user_id, _, _ = self._makePerson()
    self.assertRaises(ValidationFailed, self._makePerson, reference=user_id)
553 554

  def test_duplicateLoginReference(self):
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
    _, login1, _ = self._makePerson()
    _, login2, _ = self._makePerson()
    pas_user2, = self.portal.acl_users.searchUsers(login=login2, exact_match=True)
    pas_login2, = pas_user2['login_list']
    login2_value = self.portal.restrictedTraverse(pas_login2['path'])
    login2_value.invalidate()
    login2_value.setReference(login1)
    self.commit()
    self.assertRaises(ValidationFailed, login2_value.validate)
    self.assertRaises(ValidationFailed, self.portal.portal_workflow.doActionFor, login2_value, 'validate_action')

  def _duplicateLoginReference(self, commit):
    _, login1, _ = self._makePerson(tic=False)
    user_id2, login2, _ = self._makePerson(tic=False)
    if commit:
      self.commit()
    # Note: cannot rely on catalog, on purpose.
    person_value, = [
      x for x in self.portal.person_module.objectValues()
      if x.Person_getUserId() == user_id2
    ]
    login_value, = [
      x for x in person_value.objectValues(portal_type='ERP5 Login')
      if x.getReference() == login2
    ]
    login_value.invalidate()
    login_value.setReference(login1)
    self.portal.portal_workflow.doActionFor(login_value, 'validate_action')
583 584 585 586 587 588 589
    result = self.portal.portal_alarms.check_duplicate_login_reference.ERP5Site_checkDuplicateLoginReferenceLogin()
    self.assertEqual(result, None)
    self.tic()
    result = self.portal.portal_alarms.check_duplicate_login_reference.ERP5Site_checkDuplicateLoginReferenceLogin()
    self.assertEqual(len(result.getResultList()), 1)
    self.assertEqual(result.getResultList()[0].summary, 'Logins having the same reference exist')

590 591 592
  def test_duplicateLoginReferenceInSameTransaction(self):
    self._duplicateLoginReference(False)

593
  def test_duplicateLoginReferenceInAnotherTransaction(self):
594
    self._duplicateLoginReference(True)
595

596
class TestUserManagementExternalAuthentication(TestUserManagement):
597 598 599 600
  def getTitle(self):
    """Title of the test."""
    return "ERP5Security: User Management with External Authentication plugin"

601 602 603 604 605 606 607 608 609 610 611 612 613
  def afterSetUp(self):
    self.user_id_key = 'openAMid'
    # add key authentication PAS plugin
    uf = self.portal.acl_users
    plugin_id = 'erp5_external_authentication_plugin'
    if plugin_id not in uf.objectIds():
      uf.manage_addProduct['ERP5Security'].addERP5ExternalAuthenticationPlugin(
        id=plugin_id, \
        title='ERP5 External Authentication Plugin',\
        user_id_key=self.user_id_key,)

      getattr(uf, plugin_id).manage_activateInterfaces(
        interfaces=['IExtractionPlugin'])
614
      self.tic()
615 616 617 618 619 620

  def testERP5ExternalAuthenticationPlugin(self):
    """
     Make sure that we can grant security using a ERP5 External Authentication Plugin.
    """

621 622 623
    _, login, _ = self._makePerson()
    pas_user, = self.portal.acl_users.searchUsers(login=login, exact_match=True)
    reference = self.portal.restrictedTraverse(pas_user['path']).getReference()
624 625 626 627 628 629 630 631 632 633 634 635 636

    base_url = self.portal.absolute_url(relative=1)

    # without key we are Anonymous User so we should be redirected with proper HTML
    # status code to login_form
    response = self.publish(base_url)
    self.assertEqual(response.getStatus(), 302)
    # TODO we should not have redirect but output 403 or 404, because
    # login process should be provided by an external application.
    # self.assertTrue('location' in response.headers.keys())
    # self.assertTrue(response.headers['location'].endswith('login_form'))

    # view front page we should be logged in if we use authentication key
637
    response = self.publish(base_url, env={self.user_id_key.replace('-', '_').upper(): login})
638 639 640 641
    self.assertEqual(response.getStatus(), 200)
    self.assertTrue(reference in response.getBody())


642 643 644 645 646 647 648 649 650 651 652 653
class TestLocalRoleManagement(ERP5TypeTestCase):
  """Tests Local Role Management with ERP5Security.

  This test should probably part of ERP5Type ?
  """
  def getTitle(self):
    return "ERP5Security: User Role Management"

  def afterSetUp(self):
    """Called after setup completed.
    """
    self.portal = self.getPortal()
654 655 656 657 658 659 660 661 662 663
    # create a security configuration script
    skin_folder = self.portal.portal_skins.custom
    if 'ERP5Type_getSecurityCategoryMapping' not in skin_folder.objectIds():
      createZODBPythonScript(
        skin_folder, 'ERP5Type_getSecurityCategoryMapping', '',
        """return ((
          'ERP5Type_getSecurityCategoryFromAssignment',
          context.getPortalObject().getPortalAssignmentBaseCategoryList()
          ),)
        """)
664
    # configure group, site, function categories
665
    category_tool = self.getCategoryTool()
666
    for bc in ['group', 'site', 'function']:
667
      base_cat = category_tool[bc]
668
      code = bc[0].upper()
669 670
      if base_cat.get('subcat', None) is not None:
        continue
671 672 673
      base_cat.newContent(portal_type='Category',
                          id='subcat',
                          codification="%s1" % code)
674 675 676
      base_cat.newContent(portal_type='Category',
                          id='another_subcat',
                          codification="%s2" % code)
677 678 679 680 681 682 683
    self.defined_category = "group/subcat\n"\
                            "site/subcat\n"\
                            "function/subcat"
    # any member can add organisations
    self.portal.organisation_module.manage_permission(
            'Add portal content', roles=['Member', 'Manager'], acquire=1)

Romain Courteaud's avatar
Romain Courteaud committed
684
    self.username = 'usérn@me'
685 686
    # create a user and open an assignement
    pers = self.getPersonModule().newContent(portal_type='Person',
687
                                             reference=self.username)
688 689 690 691 692
    assignment = pers.newContent( portal_type='Assignment',
                                  group='subcat',
                                  site='subcat',
                                  function='subcat' )
    assignment.open()
693 694 695
    pers.newContent(portal_type='ERP5 Login',
                    reference=self.username,
                    password=self.username).validate()
696
    self.person = pers
697
    self.tic()
698

699 700 701
  def beforeTearDown(self):
    """Called before teardown."""
    # clear base categories
702
    self.person.getParentValue().manage_delObjects([self.person.getId()])
703 704
    for bc in ['group', 'site', 'function']:
      base_cat = self.getCategoryTool()[bc]
705
      base_cat.manage_delObjects(list(base_cat.objectIds()))
706
    # clear role definitions
707
    for ti in self.getTypesTool().objectValues():
708
      ti.manage_delObjects([x.id for x in ti.getRoleInformationList()])
709
    # clear modules
710 711 712
    for module in self.portal.objectValues():
      if module.getId().endswith('_module'):
        module.manage_delObjects(list(module.objectIds()))
713
    # commit this
714
    self.tic()
715 716 717 718 719

  def loginAsUser(self, username):
    uf = self.portal.acl_users
    user = uf.getUserById(username).__of__(uf)
    newSecurityManager(None, user)
720

721 722
  def _getTypeInfo(self):
    return self.getTypesTool()['Organisation']
723

724 725
  def _getModuleTypeInfo(self):
    return self.getTypesTool()['Organisation Module']
726

727 728
  def _makeOne(self):
    return self.getOrganisationModule().newContent(portal_type='Organisation')
729

730 731
  def getBusinessTemplateList(self):
    """List of BT to install. """
732
    return ('erp5_base', 'erp5_web', 'erp5_ingestion', 'erp5_dms', 'erp5_administration')
733

734 735 736 737 738 739
  def test_RolesManagerInterfaces(self):
    """Tests group manager plugin respects interfaces."""
    from Products.PluggableAuthService.interfaces.plugins import IRolesPlugin
    from Products.ERP5Security.ERP5RoleManager import ERP5RoleManager
    verifyClass(IRolesPlugin, ERP5RoleManager)

740 741 742 743
  def testMemberRole(self):
    """Test users have the Member role.
    """
    self.loginAsUser(self.username)
744
    self.assertTrue('Member' in
745
            getSecurityManager().getUser().getRolesInContext(self.portal))
746
    self.assertTrue('Member' in
747
            getSecurityManager().getUser().getRoles())
748

749 750 751
  def testSimpleLocalRole(self):
    """Test simple case of setting a role.
    """
752 753 754 755
    self._getTypeInfo().newContent(portal_type='Role Information',
      role_name='Assignor',
      description='desc.',
      title='an Assignor role for testing',
756
      role_category=self.defined_category)
757
    self.loginAsUser(self.username)
758 759 760 761 762 763
    user = getSecurityManager().getUser()

    obj = self._makeOne()
    self.assertEqual(['Assignor'], obj.__ac_local_roles__.get('F1_G1_S1'))
    self.assertTrue('Assignor' in user.getRolesInContext(obj))
    self.assertFalse('Assignee' in user.getRolesInContext(obj))
764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787

    # check if assignment change is effective immediately
    self.login()
    res = self.publish(self.portal.absolute_url_path() + \
                       '/Base_viewSecurity?__ac_name=%s&__ac_password=%s' % \
                       (self.username, self.username))
    self.assertEqual([x for x in res.body.splitlines() if x.startswith('-->')],
                     ["--> ['F1_G1_S1']"], res.body)
    assignment = self.person.newContent( portal_type='Assignment',
                                  group='subcat',
                                  site='subcat',
                                  function='another_subcat' )
    assignment.open()
    res = self.publish(self.portal.absolute_url_path() + \
                       '/Base_viewSecurity?__ac_name=%s&__ac_password=%s' % \
                       (self.username, self.username))
    self.assertEqual([x for x in res.body.splitlines() if x.startswith('-->')],
                     ["--> ['F1_G1_S1']", "--> ['F2_G1_S1']"], res.body)
    assignment.setGroup('another_subcat')
    res = self.publish(self.portal.absolute_url_path() + \
                       '/Base_viewSecurity?__ac_name=%s&__ac_password=%s' % \
                       (self.username, self.username))
    self.assertEqual([x for x in res.body.splitlines() if x.startswith('-->')],
                     ["--> ['F1_G1_S1']", "--> ['F2_G2_S1']"], res.body)
788
    self.abort()
789

790 791 792
  def testLocalRolesGroupId(self):
    """Assigning a role with local roles group id.
    """
793
    self.portal.portal_categories.local_role_group.newContent(
794
      portal_type='Category',
795 796
      reference = 'Alternate',
      id = 'Alternate')
797 798
    self._getTypeInfo().newContent(portal_type='Role Information',
      role_name='Assignor',
799
      local_role_group_value=self.portal.portal_categories.local_role_group.Alternate.getRelativeUrl(),
800 801 802 803 804 805 806 807
      role_category=self.defined_category)

    self.loginAsUser(self.username)
    user = getSecurityManager().getUser()

    obj = self._makeOne()
    self.assertEqual(['Assignor'], obj.__ac_local_roles__.get('F1_G1_S1'))
    self.assertTrue('Assignor' in user.getRolesInContext(obj))
808
    self.assertEqual({('F1_G1_S1', 'Assignor')},
809
      obj.__ac_local_roles_group_id_dict__.get('Alternate'))
810
    self.abort()
811 812


813 814 815 816 817
  def testDynamicLocalRole(self):
    """Test simple case of setting a dynamic role.
    The site category is not defined explictly the role, and will have the
    current site of the user.
    """
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
    for role, function in (('Assignee', 'subcat'),
                           ('Assignor', 'another_subcat')):
      self._getTypeInfo().newContent(portal_type='Role Information',
        role_name=role,
        title='an Assignor role for testing',
        role_category_list=('group/subcat', 'function/' + function),
        role_base_category_script_id='ERP5Type_getSecurityCategoryFromAssignment',
        role_base_category='site')
    self.loginAsUser(self.username)
    user = getSecurityManager().getUser()

    obj = self._makeOne()
    self.assertEqual(['Assignee'], obj.__ac_local_roles__.get('F1_G1_S1'))
    self.assertEqual(['Assignor'], obj.__ac_local_roles__.get('F2_G1_S1'))
    self.assertTrue('Assignee' in user.getRolesInContext(obj))
    self.assertFalse('Assignor' in user.getRolesInContext(obj))
834
    self.abort()
835 836 837 838 839

  def testSeveralFunctionsOnASingleAssignment(self):
    """Test dynamic role generation when an assignment defines several functions
    """
    assignment, = self.portal.portal_catalog(portal_type='Assignment',
840
                                             parent_reference=self.person.getReference())
841
    assignment.setFunctionList(('subcat', 'another_subcat'))
842
    self._getTypeInfo().newContent(portal_type='Role Information',
843
      role_name='Assignee',
844
      title='an Assignor role for testing',
845
      role_category_list=('group/subcat', 'site/subcat'),
846
      role_base_category_script_id='ERP5Type_getSecurityCategoryFromAssignment',
847
      role_base_category='function')
848
    self.loginAsUser(self.username)
849 850
    user = getSecurityManager().getUser()

851
    obj = self._makeOne()
852 853 854 855
    self.assertEqual(['Assignee'], obj.__ac_local_roles__.get('F1_G1_S1'))
    self.assertEqual(['Assignee'], obj.__ac_local_roles__.get('F2_G1_S1'))
    self.assertTrue('Assignee' in user.getRolesInContext(obj))
    self.assertFalse('Assignor' in user.getRolesInContext(obj))
856
    self.abort()
857

858
  def testAcquireLocalRoles(self):
859 860 861 862
    """Tests that document does not acquire loal roles from their parents if
    "acquire local roles" is not checked."""
    ti = self._getTypeInfo()
    ti.acquire_local_roles = False
863 864 865 866 867 868
    self._getModuleTypeInfo().newContent(portal_type='Role Information',
      role_name='Assignor',
      description='desc.',
      title='an Assignor role for testing',
      role_category=self.defined_category,
      role_base_category_script_id='ERP5Type_getSecurityCategoryFromAssignment')
869 870 871 872
    obj = self._makeOne()
    module = obj.getParentValue()
    module.updateLocalRolesOnSecurityGroups()
    # we said the we do not want acquire local roles.
873
    self.assertFalse(obj._getAcquireLocalRoles())
874
    # the local role is set on the module
875
    self.assertEqual(['Assignor'], module.__ac_local_roles__.get('F1_G1_S1'))
876
    # but not on the document
877
    self.assertEqual(None, obj.__ac_local_roles__.get('F1_G1_S1'))
878 879
    # same testing with roles in context.
    self.loginAsUser(self.username)
880
    self.assertTrue('Assignor' in
881
            getSecurityManager().getUser().getRolesInContext(module))
882
    self.assertFalse('Assignor' in
883
            getSecurityManager().getUser().getRolesInContext(obj))
884

885 886 887 888
  def testLocalRoleWithTraverser(self):
    """Make sure that local role works correctly when traversing
    """
    self.assert_(not self.portal.portal_types.Person.acquire_local_roles)
889

890 891 892 893 894 895 896 897 898 899
    self.getPersonModule().newContent(portal_type='Person',
                                      id='first_last',
                                      first_name='First',
                                      last_name='Last')
    loginable_person = self.getPersonModule().newContent(portal_type='Person',
                                                         reference='guest',
                                                         password='guest')
    assignment = loginable_person.newContent(portal_type='Assignment',
                                             function='another_subcat')
    assignment.open()
900 901 902
    loginable_person.newContent(portal_type='ERP5 Login',
                                reference='guest',
                                password='guest').validate()
903 904 905
    self.tic()

    person_module_type_information = self.getTypesTool()['Person Module']
906 907
    person_module_type_information.newContent(portal_type='Role Information',
      role_name='Auditor',
908
      description='',
909 910
      title='An Auditor role for testing',
      role_category='function/another_subcat')
911 912 913 914
    person_module_type_information.updateRoleMapping()
    self.tic()

    person_module_path = self.getPersonModule().absolute_url(relative=1)
915
    response = self.publish(person_module_path,
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932
                            basic='guest:guest')
    self.assertEqual(response.getStatus(), 200)
    response = self.publish('/%s/first_last/getFirstName' % person_module_path,
                            basic='guest:guest')
    self.assertEqual(response.getStatus(), 401)

    # Organisation does not have explicitly declared getTitle method in
    # the class definition.
    # Add organisation and make sure guest cannot access to its getTitle.
    self.getOrganisationModule().newContent(portal_type='Organisation',
                                            id='my_company',
                                            title='Nexedi')
    self.tic()
    response = self.publish('/%s/my_company/getTitle' % self.getOrganisationModule().absolute_url(relative=1),
                            basic='guest:guest')
    self.assertEqual(response.getStatus(), 401)

933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
  def testKeyAuthentication(self):
    """
     Make sure that we can grant security using a key.
    """
    # add key authentication PAS plugin
    portal = self.portal
    uf = portal.acl_users
    uf.manage_addProduct['ERP5Security'].addERP5KeyAuthPlugin(
         id="erp5_auth_key", \
         title="ERP5 Auth key",\
         encryption_key='fdgfhkfjhltylutyu',
         cookie_name='__key',\
         default_cookie_name='__ac')

    erp5_auth_key_plugin = getattr(uf, "erp5_auth_key")
    erp5_auth_key_plugin.manage_activateInterfaces(
       interfaces=['IExtractionPlugin',
                   'IAuthenticationPlugin',
                   'ICredentialsUpdatePlugin',
                   'ICredentialsResetPlugin'])
953
    self.tic()
954 955 956

    reference = 'UserReferenceTextWhichShouldBeHardToGeneratedInAnyHumanOrComputerLanguage'
    loginable_person = self.getPersonModule().newContent(portal_type='Person',
957
                                                         reference=reference)
958 959 960
    assignment = loginable_person.newContent(portal_type='Assignment',
                                             function='another_subcat')
    assignment.open()
961 962 963
    loginable_person.newContent(portal_type='ERP5 Login',
                                reference=reference,
                                password='guest').validate()
964 965 966 967 968 969 970 971 972
    portal_types = portal.portal_types
    for portal_type in ('Person Module', 'Person', 'Web Site Module', 'Web Site',
                        'Web Page'):
      type_information = portal_types[portal_type]
      type_information.newContent(
        portal_type='Role Information',
        role_name=('Auditor', 'Assignee'),
        role_category='function/another_subcat')
      type_information.updateRoleMapping()
973
    self.tic()
974

Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
975
    # encrypt & decrypt works
976 977
    key = erp5_auth_key_plugin.encrypt(reference)
    self.assertNotEquals(reference, key)
978
    self.assertEqual(reference, erp5_auth_key_plugin.decrypt(key))
979
    base_url = portal.absolute_url(relative=1)
980 981 982 983 984 985 986

    # without key we are Anonymous User so we should be redirected with proper HTML
    # status code to login_form
    response = self.publish(base_url)
    self.assertEqual(response.getStatus(), 302)
    self.assertTrue('location' in response.headers.keys())
    self.assertTrue(response.headers['location'].endswith('login_form'))
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
987

988 989 990 991
    # view front page we should be logged in if we use authentication key
    response = self.publish('%s?__ac_key=%s' %(base_url, key))
    self.assertEqual(response.getStatus(), 200)
    self.assertTrue(reference in response.getBody())
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005

    # check if key authentication works other page than front page
    person_module = portal.person_module
    base_url = person_module.absolute_url(relative=1)
    response = self.publish(base_url)
    self.assertEqual(response.getStatus(), 302)
    self.assertTrue('location' in response.headers.keys())
    self.assertTrue('%s/login_form?came_from=' % portal.getId(), response.headers['location'])
    response = self.publish('%s?__ac_key=%s' %(base_url, key))
    self.assertEqual(response.getStatus(), 200)
    self.assertTrue(reference in response.getBody())

    # check if key authentication works with web_mode too
    web_site = portal.web_site_module.newContent(portal_type='Web Site')
1006 1007
    web_page = portal.web_page_module.newContent(portal_type='Web Page', reference='ref')
    web_page.release()
1008
    self.tic()
1009 1010 1011 1012 1013
    base_url = web_site.absolute_url(relative=1)
    response = self.publish(base_url)
    self.assertEqual(response.getStatus(), 302)
    self.assertTrue('location' in response.headers.keys())
    self.assertTrue('%s/login_form?came_from=' % portal.getId(), response.headers['location'])
1014
    # web site access
1015 1016
    response = self.publish('%s?__ac_key=%s' %(base_url, key))
    self.assertEqual(response.getStatus(), 200)
1017 1018 1019 1020 1021 1022 1023 1024
    # web page access by path
    response = self.publish('%s/%s?__ac_key=%s' %(base_url, web_page.getRelativeUrl(),
                                                  key))
    self.assertEqual(response.getStatus(), 200)
    # web page access by reference
    response = self.publish('%s/%s?__ac_key=%s' %(base_url, web_page.getReference(),
                                                  key))
    self.assertEqual(response.getStatus(), 200)
1025 1026 1027 1028 1029 1030
    response = self.publish('%s/%s?__ac_name=%s&__ac_password=%s' % (
      base_url, web_page.getReference(), reference, 'guest'))
    self.assertEqual(response.getStatus(), 200)
    response = self.publish('%s/%s?__ac_name=%s&__ac_password=%s' % (
      base_url, web_page.getReference(), 'ERP5TypeTestCase', ''))
    self.assertEqual(response.getStatus(), 200)
1031

1032 1033 1034 1035 1036 1037 1038 1039
  def _createZodbUser(self, login, role_list=None):
    if role_list is None:
      role_list = ['Member', 'Assignee', 'Assignor', 'Author', 'Auditor',
          'Associate']
    uf = self.portal.acl_users
    uf._doAddUser(login, '', role_list, [])

  def test_owner_local_role_on_clone(self):
1040 1041
    # check that tested stuff is ok
    parent_type = 'Person'
1042
    self.assertEqual(self.portal.portal_types[parent_type].acquire_local_roles, 0)
1043 1044 1045 1046 1047

    original_owner_id = 'original_user' + self.id()
    cloning_owner_id = 'cloning_user' + self.id()
    self._createZodbUser(original_owner_id)
    self._createZodbUser(cloning_owner_id)
1048
    self.commit()
1049
    module = self.portal.getDefaultModule(portal_type=parent_type)
1050
    self.loginByUserName(original_owner_id)
1051
    document = module.newContent(portal_type=parent_type)
1052
    self.tic()
1053
    self.loginByUserName(cloning_owner_id)
1054
    cloned_document = document.Base_createCloneDocument(batch_mode=1)
1055
    self.tic()
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
    self.login()
    # real assertions
    # roles on original document
    self.assertEqual(
        document.get_local_roles(),
        (((original_owner_id), ('Owner',)),)
    )

    # roles on cloned document
    self.assertEqual(
        cloned_document.get_local_roles(),
        (((cloning_owner_id), ('Owner',)),)
    )

  def test_owner_local_role_on_clone_with_subobjects(self):
1071 1072 1073
    # check that tested stuff is ok
    parent_type = 'Person'
    acquiring_type = 'Email'
1074 1075
    self.assertEqual(self.portal.portal_types[acquiring_type].acquire_local_roles, 1)
    self.assertEqual(self.portal.portal_types[parent_type].acquire_local_roles, 0)
1076

1077 1078
    original_owner_id = 'original_user' + self.id()
    cloning_owner_id = 'cloning_user' + self.id()
1079 1080
    self._createZodbUser(original_owner_id)
    self._createZodbUser(cloning_owner_id)
1081
    self.commit()
1082
    module = self.portal.getDefaultModule(portal_type=parent_type)
1083
    self.loginByUserName(original_owner_id)
1084 1085
    document = module.newContent(portal_type=parent_type)
    subdocument = document.newContent(portal_type=acquiring_type)
1086
    self.tic()
1087
    self.loginByUserName(cloning_owner_id)
1088
    cloned_document = document.Base_createCloneDocument(batch_mode=1)
1089
    self.tic()
1090 1091 1092 1093 1094
    self.login()
    self.assertEqual(1, len(document.contentValues()))
    self.assertEqual(1, len(cloned_document.contentValues()))
    cloned_subdocument = cloned_document.contentValues()[0]
    # real assertions
1095
    # roles on original documents
1096 1097 1098 1099 1100 1101 1102 1103 1104
    self.assertEqual(
        document.get_local_roles(),
        (((original_owner_id), ('Owner',)),)
    )
    self.assertEqual(
        subdocument.get_local_roles(),
        (((original_owner_id), ('Owner',)),)
    )

1105
    # roles on cloned original documents
1106 1107 1108 1109 1110
    self.assertEqual(
        cloned_document.get_local_roles(),
        (((cloning_owner_id), ('Owner',)),)
    )
    self.assertEqual(
1111
        cloned_subdocument.get_local_roles(),
1112 1113
        (((cloning_owner_id), ('Owner',)),)
    )
1114

1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
  def _checkMessageMethodIdList(self, expected_method_id_list):
    actual_method_id_list = sorted([
        message.method_id
        for message in self.portal.portal_activities.getMessageList()
    ])
    self.assertEqual(expected_method_id_list, actual_method_id_list)

  def test_reindexObjectSecurity_on_modules(self):
    person_module = self.portal.person_module
    portal_activities = self.portal.portal_activities
    check = self._checkMessageMethodIdList

    check([])
    # We need at least one person for this test.
    self.assertTrue(len(person_module.keys()))
    # When we update security of a module...
    person_module.reindexObjectSecurity()
1132
    self.commit()
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
    # we don't want all underlying objects to be recursively
    # reindexed. After all, its contents do not acquire local roles.
    check(['immediateReindexObject'])
    self.tic()
    check([])
    # But non-module objects, with subobjects that acquire local
    # roles, should reindex their security recursively:
    person, = [rec.getObject()
               for rec in person_module.searchFolder(reference=self.username)]
    self.assertTrue(len(person.objectIds()))
    person.reindexObjectSecurity()
1144
    self.commit()
1145 1146 1147
    check(['recursiveImmediateReindexObject'])
    self.tic()

1148 1149 1150
def test_suite():
  suite = unittest.TestSuite()
  suite.addTest(unittest.makeSuite(TestUserManagement))
1151
  suite.addTest(unittest.makeSuite(TestUserManagementExternalAuthentication))
1152 1153
  suite.addTest(unittest.makeSuite(TestLocalRoleManagement))
  return suite