本文整理汇总了Python中bug_harness.DSAdminHarness.getEntry方法的典型用法代码示例。如果您正苦于以下问题:Python DSAdminHarness.getEntry方法的具体用法?Python DSAdminHarness.getEntry怎么用?Python DSAdminHarness.getEntry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bug_harness.DSAdminHarness
的用法示例。
在下文中一共展示了DSAdminHarness.getEntry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Entry
# 需要导入模块: from bug_harness import DSAdminHarness [as 别名]
# 或者: from bug_harness.DSAdminHarness import getEntry [as 别名]
for ii in myiter:
dn = "cn=%d, %s" % (ii, basedn)
svr = (m1,m2)[ii % 2]
ent = Entry(dn)
ent.setValues('objectclass', 'person')
ent.setValues('sn', 'testuser')
ent.setValues('description', 'added description')
svr.add_s(ent)
print "Added", dn
print "Sleep for 20 seconds to let changes propagate . . ."
time.sleep(20)
print "Verify all entries are present in both servers . . ."
for ii in myiter:
dn = "cn=%d, %s" % (ii, basedn)
ent = m1.getEntry(dn, ldap.SCOPE_BASE)
if not ent: raise "Entry %s not found in %s" % (dn, m1)
ent = m2.getEntry(dn, ldap.SCOPE_BASE)
if not ent: raise "Entry %s not found in %s" % (dn, m2)
print "Delete description attr in all entries . . ."
for ii in myiter:
dn = "cn=%d, %s" % (ii, basedn)
jj = ii + 1
svr = (m1,m2)[jj % 2]
delit = [(ldap.MOD_DELETE, 'description', None)]
svr.modify_s(dn, delit)
print "Modified", dn
print "Sleep for 20 seconds to let changes propagate . . ."
time.sleep(20)