summaryrefslogtreecommitdiff
path: root/source/lib/ldb
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-06-30 09:38:52 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-06-30 09:38:52 +1000
commitdaddfae9fd8b7375bd4f469808378edc60a55be0 (patch)
treeeee50101fcc70c5fa7d781dc9e82a4e6dad2679f /source/lib/ldb
parent9c220c0dce31fbe4b2f6433f40a52162d21c03f7 (diff)
downloadsamba-daddfae9fd8b7375bd4f469808378edc60a55be0.tar.gz
Loosen ldap.py tests on the LDAP backend.
Allow LDAP backend to return parts of the DN in a different case, when verifying memberOf. Andrew Bartlett
Diffstat (limited to 'source/lib/ldb')
-rwxr-xr-xsource/lib/ldb/tests/python/ldap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/ldb/tests/python/ldap.py b/source/lib/ldb/tests/python/ldap.py
index 9d334c5e03b..f1c747a817d 100755
--- a/source/lib/ldb/tests/python/ldap.py
+++ b/source/lib/ldb/tests/python/ldap.py
@@ -641,7 +641,7 @@ member: cn=ldaptestuser4,cn=ldaptestcontainer,""" + self.base_dn + """
self.assertEquals(res[0]["objectCategory"], ("CN=Person,CN=Schema,CN=Configuration," + self.base_dn))
self.assertEquals(int(res[0]["sAMAccountType"][0]), 805306368)
self.assertEquals(int(res[0]["userAccountControl"][0]), 546)
- self.assertEquals(res[0]["memberOf"][0], ("CN=ldaptestgroup2,CN=Users," + self.base_dn))
+ self.assertEquals(res[0]["memberOf"][0].upper(), ("CN=ldaptestgroup2,CN=Users," + self.base_dn).upper())
self.assertEquals(len(res[0]["memberOf"]), 1)
print "Testing ldb.search for (&(cn=ldaptestuser)(objectCategory=cn=person,cn=schema,cn=configuration," + self.base_dn + "))"