From: Andrew Bartlett Date: Sun, 29 Jun 2008 23:38:52 +0000 (+1000) Subject: Loosen ldap.py tests on the LDAP backend. X-Git-Tag: samba-4.0.0alpha5~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=daddfae9fd8b7375bd4f469808378edc60a55be0;p=thirdparty%2Fsamba.git 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 --- 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 + "))"