當前位置: 首頁>>代碼示例>>Python>>正文


Python DSAdminHarness.getEntry方法代碼示例

本文整理匯總了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)
開發者ID:axdxnco,項目名稱:scripts,代碼行數:33,代碼來源:bug233642-2.py


注:本文中的bug_harness.DSAdminHarness.getEntry方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。