From 1c3e6d13f22a2410ce8406863a22741bd0dc0aeb Mon Sep 17 00:00:00 2001
From: Nicolas Delaby <nicolas@nexedi.com>
Date: Tue, 19 Feb 2008 10:06:38 +0000
Subject: [PATCH] Add Unit Test for Ldap Indexation

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19383 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 .../ERP5Catalog/tests/testERP5LdapCatalog.py  | 150 ++++++++++++++++++
 1 file changed, 150 insertions(+)
 create mode 100644 product/ERP5Catalog/tests/testERP5LdapCatalog.py

diff --git a/product/ERP5Catalog/tests/testERP5LdapCatalog.py b/product/ERP5Catalog/tests/testERP5LdapCatalog.py
new file mode 100644
index 0000000000..8d44fa3f97
--- /dev/null
+++ b/product/ERP5Catalog/tests/testERP5LdapCatalog.py
@@ -0,0 +1,150 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
+
+import unittest
+import sys
+
+from Testing import ZopeTestCase
+from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
+from AccessControl import getSecurityManager
+from AccessControl.SecurityManagement import newSecurityManager
+from zLOG import LOG
+from DateTime import DateTime
+from Products.CMFCore.tests.base.testcase import LogInterceptor
+from Testing.ZopeTestCase.PortalTestCase import PortalTestCase
+import ldap
+
+try:
+  from transaction import get as get_transaction
+except ImportError:
+  pass
+
+class TestERP5LdapCatalog(ERP5TypeTestCase, LogInterceptor):
+  """
+    Tests for ERP5 Ldap Catalog.
+  """
+
+  def getTitle(self):
+    return "ERP5 Ldap Catalog"
+
+  def getBusinessTemplateList(self):
+    return ('erp5_base', 'erp5_ldap_catalog',)
+
+  # Different variables used for this test
+  run_all_test = 1
+  quiet = 0
+  hostport = 'localhost:389'
+  basedn = 'dc=erp5,dc=org'
+  bind_as = 'cn=test,dc=erp5,dc=org'
+  password = 'test'
+
+  def getLdapConnection(self):
+    return self.getPortal().erp5_ldap_connection
+
+  def afterSetUp(self):
+    self.login()
+    self.getLdapConnection().manage_close()
+    self.getLdapConnection().manage_edit(
+            'ERP5 LDAP Test Connection',
+            self.hostport,
+            self.basedn,
+            self.bind_as,
+            self.password,
+            1)
+    get_transaction().commit()
+    # make sure there is no message any more
+    self.tic()
+
+  def beforeTearDown(self):
+    for module in [ self.getPersonModule(),
+                    self.getOrganisationModule(),
+                    self.getCategoryTool().region,
+                    self.getCategoryTool().group ]:
+      module.manage_delObjects(list(module.objectIds()))
+    get_transaction().commit()
+    self.tic()
+
+  def login(self):
+    uf = self.getPortal().acl_users
+    uf._doAddUser('test', '', ['Manager'], [])
+    user = uf.getUserById('test').__of__(uf)
+    newSecurityManager(None, user)
+
+  def test_01_HasEverything(self, quiet=quiet, run=run_all_test):
+    if not run: return
+    if not quiet:
+      ZopeTestCase._print('\nTest Has Everything ')
+      LOG('Testing... ', 0, 'testHasEverything')
+    self.assertTrue(self.getCategoryTool() is not None)
+    self.assertTrue(self.getTypeTool() is not None)
+    self.assertTrue(self.getLdapConnection() is not None)
+    self.assertTrue(self.getCatalogTool() is not None)
+
+  def test_02_person_ldap_cataloging(self, quiet=quiet, run=run_all_test):
+    """
+    Test Ldap Indexation
+    """
+    if not run: return
+    if not quiet:
+      ZopeTestCase._print('\nTest Ldap Indexation ')
+      LOG('Testing... ', 0, 'test_02_person_ldap_cataloging')
+    #Create 3 Persons
+    for i in xrange(3):
+      self.getPersonModule().newContent(portal_type='Person',
+                                        first_name='Foo%s' % i,
+                                        last_name='Bar%s' % i,
+                                        reference='foobar%s' % i,
+                                        password='secret%s' % i,
+                                        default_email_text='foo%s@bar.com' % i)
+    get_transaction().commit()
+    self.tic()
+    #Check Indexation
+    for p in self.getPersonModule().contentValues():
+      uid = p.getUid()
+      result_ldap = self.getPortal().z_ldap_search_person_by_uid(uid=uid)[0]
+      self.assertEqual(str(uid), result_ldap.uidNumber[0])
+      self.assertEqual(p.getReference(), result_ldap.uid[0])
+      #Arbitrary value needed by posixAccount Schema
+      self.assertEqual('9000', result_ldap.gidNumber[0])
+      self.assertEqual(p.getFirstName(), result_ldap.givenName[0])
+      self.assertEqual('/home/%s' % (p.getReference()), result_ldap.homeDirectory[0])
+      self.assertEqual(p.getDefaultEmailText(), result_ldap.mail[0])
+      self.assertEqual(p.getLastName(), result_ldap.sn[0])
+      self.assertEqual(p.getPassword(), result_ldap.userPassword[0])
+    #Clear Catalog
+    self.getPortal().portal_catalog.erp5_mysql_innodb.manage_catalogClear()
+    get_transaction().commit()
+    self.tic()
+    #Check Catalog is cleared
+    self.assertEqual(len(self.getPortal().z_ldap_search_person_list()), 0)
+
+def test_suite():
+  suite = unittest.TestSuite()
+  suite.addTest(unittest.makeSuite(TestERP5LdapCatalog))
+  return suite
+
-- 
2.30.9