The branch, master has been updated
via 81c4668... s4:ldap.py - Add a check for the generated "schemaIDGUID"
from 664bc88... s3-winbind: In _wbint_CheckMachineAccount, there is only
one child domain ever
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 81c46686db36eaffd25c013f19094b01a8406c6a
Author: Matthias Dieter Wallnöfer <[email protected]>
Date: Mon Nov 23 16:20:07 2009 +0100
s4:ldap.py - Add a check for the generated "schemaIDGUID"
I've forgotten to add this when checking in the reworked SAMLDB module
-----------------------------------------------------------------------
Summary of changes:
source4/lib/ldb/tests/python/ldap.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source4/lib/ldb/tests/python/ldap.py
b/source4/lib/ldb/tests/python/ldap.py
index f9801e2..94bdf7e 100755
--- a/source4/lib/ldb/tests/python/ldap.py
+++ b/source4/lib/ldb/tests/python/ldap.py
@@ -1990,6 +1990,7 @@ name: """ + object_name + """
res = self.ldb.search("cn=%s,%s" % (attr_name, self.schema_dn),
scope=SCOPE_BASE, attrs=["*"])
self.assertEquals(len(res), 1)
self.assertEquals(res[0]["lDAPDisplayName"][0], attr_ldap_display_name)
+ self.assertTrue("schemaIDGUID" in res[0])
# Search for created objectclass
res = []
@@ -1997,6 +1998,7 @@ name: """ + object_name + """
self.assertEquals(len(res), 1)
self.assertEquals(res[0]["lDAPDisplayName"][0],
class_ldap_display_name)
self.assertEquals(res[0]["defaultObjectCategory"][0],
res[0]["distinguishedName"][0])
+ self.assertTrue("schemaIDGUID" in res[0])
# Search for created object
res = []
--
Samba Shared Repository