mirror of
https://github.com/samba-team/samba.git
synced 2025-01-24 02:04:21 +03:00
s4:ldb/tests: do a "schemaUpdateNow" after creating a new attribute in ldap_schema.py
It seems that windows doesn't need that. And we should think about a check for reloading the schema at the start of each "write" operation. metze
This commit is contained in:
parent
92b87eb474
commit
7d41afece7
@ -139,6 +139,16 @@ systemOnly: FALSE
|
||||
self.assertEquals(res[0]["lDAPDisplayName"][0], attr_ldap_display_name)
|
||||
self.assertTrue("schemaIDGUID" in res[0])
|
||||
|
||||
# Samba requires a "schemaUpdateNow" here.
|
||||
# TODO: remove this when Samba is fixed
|
||||
ldif = """
|
||||
dn:
|
||||
changetype: modify
|
||||
add: schemaUpdateNow
|
||||
schemaUpdateNow: 1
|
||||
"""
|
||||
self.ldb.modify_ldif(ldif)
|
||||
|
||||
class_name = "test-Class" + time.strftime("%s", time.gmtime())
|
||||
class_ldap_display_name = class_name.replace("-", "")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user