本文整理匯總了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)