Commit d5b0573f authored by Sebastien Robin's avatar Sebastien Robin

Added test when we rename an object


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2794 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b905e711
##############################################################################
#
# Copyright (c) 2004 Nexedi SARL and Contributors. All Rights Reserved.
# Sebastien Robin <seb@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.
#
##############################################################################
#
# Skeleton ZopeTestCase
#
from random import randint
import os, sys
if __name__ == '__main__':
execfile(os.path.join(sys.path[0], 'framework.py'))
# Needed in order to have a log file inside the current folder
os.environ['EVENT_LOG_FILE'] = os.path.join(os.getcwd(), 'zLOG.log')
os.environ['EVENT_LOG_SEVERITY'] = '-300'
from Testing import ZopeTestCase
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5Type.Base import _aq_reset
from Products.ERP5.Document.Organisation import Organisation
from Products.ERP5Type.Tool.ClassTool import _aq_reset
from DateTime import DateTime
from Products.ERP5.Document.Person import Person
from AccessControl.SecurityManagement import newSecurityManager, noSecurityManager
from zLOG import LOG
import time
class Test(ERP5TypeTestCase):
# Different variables used for this test
run_all_test = 1
portal_type = 'Organisation'
base_cat = 'abc'
cat_list = [base_cat + '/1',base_cat + '/2']
new_cat_list = [base_cat + '/3',base_cat + '/2']
deep_cat_list = [base_cat + '/1/1',base_cat + '/2/1']
new_deep_cat_list = [base_cat + '/3/1',base_cat + '/2/1']
def getTitle(self):
"""
"""
return "ERP5 Categories"
def getBusinessTemplateList(self):
"""
Return the list of business templates.
"""
return ()
def enableActivityTool(self):
"""
You can override this. Return if we should create (1) or not (0) an activity tool
"""
return 0
def getPortalId(self):
return self.getPortal().getId()
def logMessage(self,message):
ZopeTestCase._print('\n%s ' % message)
LOG('Testing... ',0,message)
def getOrderLine(self):
return self.getSaleOrderModule()['1']['1']
def getPredicate(self):
return self.getSalePackingListModule()['1']
def afterSetUp(self):
self.login()
# This add the base category size
portal_categories = self.getCategoryTool()
bc = self.base_cat
portal_categories.newContent(portal_type='Base Category',id=bc)
self.cat1 = portal_categories[bc].newContent(id='1',portal_type='Category')
self.deep_cat1 = self.cat1.newContent(id='1',portal_type='Category')
self.cat2 = portal_categories[bc].newContent(id='2',portal_type='Category')
self.deep_cat2 = self.cat2.newContent(id='1',portal_type='Category')
portal_categories[self.base_cat].recursiveImmediateReindexObject()
portal_type = self.getTypeTool()[self.portal_type]
portal_type.base_category_list = [self.base_cat]
organisation_module = self.getOrganisationModule()
self.organisation = organisation_module.newContent(id='1',portal_type=self.portal_type)
self.organisation.immediateReindexObject()
self.telephone = self.organisation.newContent(id='1',portal_type='Telephone')
self.organisation2 = organisation_module.newContent(id='2',portal_type=self.portal_type)
self.organisation2.immediateReindexObject()
self.telephone2 = self.organisation2.newContent(id='1',portal_type='Telephone')
# We have no place to put a Predicate, we will put it in the
# Organisation Module
portal = self.getPortal()
type_tool = self.getTypeTool()
module_type = type_tool['%s Module' % self.portal_type]
module_type.allowed_content_types += ('Predicate Group',)
module = self.getOrganisationModule()
predicate = module.newContent(id='predicate',portal_type='Predicate Group')
predicate.setCriterion('quantity',identity=None,min=None,max=None)
predicate.immediateReindexObject()
self.predicate = predicate
get_transaction().commit(1) # If we don't commit, then we can't rename
def login(self, quiet=0):
uf = self.getPortal().acl_users
uf._doAddUser('seb', '', ['Manager'], [])
user = uf.getUserById('seb').__of__(uf)
newSecurityManager(None, user)
def test_01(self, quiet=0, run=run_all_test):
if not run: return
if not quiet:
self.logMessage('Rename Category')
organisation = self.organisation
organisation.setCategoryList(self.cat_list)
self.failIfDifferentSet(organisation.getCategoryList(),self.cat_list)
portal_categories = self.getCategoryTool()
portal_categories[self.base_cat]['1'].edit(id='3')
self.failIfDifferentSet(organisation.getCategoryList(),self.new_cat_list)
def test_02(self, quiet=0, run=run_all_test):
if not run: return
if not quiet:
self.logMessage('Rename Category Tree')
organisation = self.organisation
organisation.setCategoryList(self.deep_cat_list)
self.failIfDifferentSet(organisation.getCategoryList(),self.deep_cat_list)
portal_categories = self.getCategoryTool()
portal_categories[self.base_cat]['1'].edit(id='3')
self.failIfDifferentSet(organisation.getCategoryList(),self.new_deep_cat_list)
def test_03(self, quiet=0, run=run_all_test):
if not run: return
if not quiet:
self.logMessage('Rename Related Object')
organisation = self.organisation
organisation2 = self.organisation2
organisation.setAbcValueList([organisation2])
self.assertEquals(organisation.getAbcValueList(),[organisation2])
self.assertEquals(organisation.getAbcIdList(),['2'])
organisation2.edit(id='new_id')
self.assertEquals(organisation.getAbcValueList(),[organisation2])
self.assertEquals(organisation.getAbcIdList(),['new_id'])
def test_04(self, quiet=0, run=run_all_test):
if not run: return
if not quiet:
self.logMessage('Rename Object With a related Sub Object')
telephone2 = self.telephone2
organisation = self.organisation
organisation2 = self.organisation2
organisation.setAbcValueList([telephone2])
self.assertEquals(organisation.getAbcValueList(),[telephone2])
self.assertEquals(organisation.getAbcList(),['organisation/2/1'])
organisation2.edit(id='new_id')
self.assertEquals(organisation.getAbcValueList(),[telephone2])
self.assertEquals(organisation.getAbcList(),['organisation/new_id/1'])
def test_05(self, quiet=0, run=run_all_test):
if not run: return
if not quiet:
self.logMessage('Rename Membership Criterion Category')
predicate = self.predicate
predicate.setMembershipCriterionBaseCategoryList(self.base_cat)
predicate.setMembershipCriterionCategoryList(self.cat_list)
self.failIfDifferentSet(predicate.getMembershipCriterionCategoryList(),self.cat_list)
portal_categories = self.getCategoryTool()
portal_categories[self.base_cat]['1'].edit(id='3')
get_transaction().commit()
self.failIfDifferentSet(predicate.getMembershipCriterionCategoryList(),self.new_cat_list)
if __name__ == '__main__':
framework()
else:
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(Test))
return suite
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment