testPerson.py 6.99 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
##############################################################################
#
# Copyright (c) 2005 Nexedi SARL and Contributors. All Rights Reserved.
#                     Ivan Tyagov <ivan@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.
#
##############################################################################

30
import unittest
31

32
from AccessControl.SecurityManagement import newSecurityManager
33 34 35 36
from AccessControl import Unauthorized

from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5Type import Permissions
37

38

39 40 41 42 43 44 45 46 47 48 49 50 51

class TestPerson(ERP5TypeTestCase):

  run_all_test = 1
 
  def getTitle(self):
    return "Person Test"
    
  def getBusinessTemplateList(self):
    """  """
    return ('erp5_base',)
  
  def afterSetUp(self):
52
    self.portal = self.getPortal()
53
    self.login()
54
  
55 56 57 58 59 60
  def login(self, quiet=0, run=run_all_test):
    uf = self.getPortal().acl_users
    uf._doAddUser('seb', '', ['Manager'], [])
    uf._doAddUser('ERP5TypeTestCase', '', ['Manager'], [])
    user = uf.getUserById('seb').__of__(uf)
    newSecurityManager(None, user)
61
  
62 63 64
  def _makeOne(self, **kw):
    module = self.portal.person_module
    return module.newContent(portal_type="Person", **kw)
65 66 67

  def test_01_CopyPastePersonObject(self, quiet=0, run=run_all_test):
    """ Test copy/paste a Person object. """
68
    if not run:
69
      return
70 71 72
    person_module = self.getPersonModule()
    person = person_module.newContent(portal_type='Person')
    person.setReference('ivan')
73

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    ## copy object as if using ERP5/ZMI UI
    person_copy = person_module.manage_copyObjects(ids=(person.getId(),))
    person_copy_id = person_module.manage_pasteObjects(person_copy)[0]['new_id']
    person_copy_obj = person_module[person_copy_id]
    ## because we copy/paste Person object in the same ERP5 
    ## instance its reference must be resetted
    self.assertEquals(person_copy_obj.getReference(), None)
    
    ## set object as if installed from bt5 (simulate it)
    request = self.app.REQUEST
    request.set('is_business_template_installation', 1)
    person_copy = person_module.manage_copyObjects(ids=(person.getId(),))
    person_copy_id = person_module.manage_pasteObjects(person_copy)[0]['new_id']
    person_copy_obj = person_module[person_copy_id]
    ## because we setup Person object from business template 
    ## its reference must NOT be resetted
    self.assertEquals(person_copy_obj.getReference(), person.getReference())
91

92 93
  # title & first_name, last_name
  def testEmptyTitle(self):
94
    p = self._makeOne()
95 96 97
    self.assertEquals('', p.getTitle())
  
  def testSetFirstName(self):
98
    p = self._makeOne()
99 100 101 102
    p.setFirstName('first')
    self.assertEquals('first', p.getFirstName())

  def testSetLastName(self):
103
    p = self._makeOne(id='person')
104 105 106 107
    p.setLastName('last')
    self.assertEquals('last', p.getLastName())

  def testTitleFromFirstLastName(self):
108
    p = self._makeOne(id='person')
109 110 111 112 113 114
    p.setFirstName('first')
    p.setLastName('last')
    self.assertEquals('first last', p.getTitle())

  def testEditFirstNameLastName(self):
    # using 'edit' method
115
    p = self._makeOne(id='person')
116 117 118 119 120 121 122
    p.edit( first_name='first',
            last_name='last' )
    self.assertEquals('first', p.getFirstName())
    self.assertEquals('last', p.getLastName())
    self.assertEquals('first last', p.getTitle())

  def testEditTitleFirstNameLastName(self):
123
    p = self._makeOne(id='person')
124 125 126 127
    p.edit( first_name='first',
            last_name='last',
            title='title' )
    # no infinite loop :) but there's no guarantee on the behaviour
128 129
    
  def testGetTitleOrId(self):
130
    p = self._makeOne(id='person')
131 132 133 134 135 136 137 138
    self.assertEquals('person', p.getTitleOrId())
    self.assertEquals('person', p.title_or_id())

    p.edit( first_name='first',
            last_name='last', )
    self.assertEquals('first last', p.getTitleOrId())
    self.assertEquals('first last', p.title_or_id())
    
139
  def testHasTitle(self):
140
    p = self._makeOne(id='person')
141 142 143 144
    self.assertFalse(p.hasTitle())
    p.setFirstName('bob')
    self.assertTrue(p.hasTitle())

145
  def testSetPasswordSecurity(self):
146
    p = self._makeOne(id='person')
147 148 149 150 151 152 153 154 155
    p.manage_permission(Permissions.SetOwnPassword, [], 0)
    self.assertRaises(Unauthorized, p.setPassword, 'secret')
    self.assertRaises(Unauthorized, p.edit, password='secret')

    # setPassword(None) has no effect, because in the user interface we always
    # show an empty field for password. Note that it also does not require any
    # specific permission.
    p.setPassword(None)
    self.assertFalse(p.getPassword())
156 157 158 159
    # Make sure that edit method cannot call __setPasswordByForce and nothing
    # changes.
    p.edit(password_by_force='waaa')
    self.assertFalse(p.getPassword())
160 161 162 163 164

    p.manage_permission(Permissions.SetOwnPassword, ['Anonymous'], 0)
    p.setPassword('secret')
    self.assertTrue(p.getPassword())

165
  def testPasswordFormat(self):
166
    p = self._makeOne(id='person')
167 168 169 170 171 172 173 174 175 176
    p._setEncodedPassword('pass_A', format='A')
    p._setEncodedPassword('pass_B', format='B')
    self.assertEquals('pass_A', p.getPassword(format='A'))
    self.assertEquals('pass_B', p.getPassword(format='B'))

    self.assertEquals(None, p.getPassword(format='unknown'))
    self.assertEquals('default', p.getPassword('default', format='unknown'))

    self.assertEquals(None, p.getPassword())
    self.assertEquals('default', p.getPassword('default'))
177

Sebastien Robin's avatar
Sebastien Robin committed
178 179 180
  def testPreferenceInteractionWorkflow(self):
    """ when setting reference, a script create preference is
        called by activities, check this behavior. """
181 182 183 184 185 186 187 188 189 190 191
    person_module = self.getPersonModule()
    title = "Séb"
    person = person_module.newContent(portal_type='Person', title=title)
    person.setReference('test_seb')
    self.tic()
    portal = self.getPortal()
    last_id = portal.portal_preferences.getLastId()
    last_preference = portal.portal_preferences[last_id]
    self.assertTrue("Séb" in last_preference.getTitle())
    

192 193 194 195
def test_suite():
  suite = unittest.TestSuite()
  suite.addTest(unittest.makeSuite(TestPerson))
  return suite