summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tests/python/ldap.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-01-11 01:01:36 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-01-11 03:27:27 +0100
commitda56ee66b07c7fcc8acedc8b7950501d7f065481 (patch)
tree770e01b37d7c4ba1b6cc423e00d2802ee2ca6be1 /source4/lib/ldb/tests/python/ldap.py
parent5967746c3102b57bcf245a30d0969c90944305a3 (diff)
downloadsamba-da56ee66b07c7fcc8acedc8b7950501d7f065481.tar.gz
samba-da56ee66b07c7fcc8acedc8b7950501d7f065481.tar.bz2
samba-da56ee66b07c7fcc8acedc8b7950501d7f065481.zip
python/ldap: Get further.
(This used to be commit 0c27eabbc40657493dc72f12b4fbdb07b0a3200f)
Diffstat (limited to 'source4/lib/ldb/tests/python/ldap.py')
-rwxr-xr-xsource4/lib/ldb/tests/python/ldap.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/lib/ldb/tests/python/ldap.py b/source4/lib/ldb/tests/python/ldap.py
index 7e3082fa09..3d69ff63b4 100755
--- a/source4/lib/ldb/tests/python/ldap.py
+++ b/source4/lib/ldb/tests/python/ldap.py
@@ -187,7 +187,7 @@ servicePrincipalName: host/ldaptest2computer29
res = ldb.search(base_dn, expression="(cn=ldaptest2computer))", scope=SCOPE_SUBTREE,
attrs=["servicePrincipalName;range=0-*"])
assert len(res) == 1, "Could not find (cn=ldaptest2computer)"
-# print res[0]["servicePrincipalName;range=0-*"].length
+ #print len(res[0]["servicePrincipalName;range=0-*"])
assertEquals(len(res[0]["servicePrincipalName;range=0-*"]), 30)
attrs = ["servicePrincipalName;range=0-19"]
@@ -886,7 +886,6 @@ def basedn_tests(ldb, gc_ldb):
assertEquals(len(res), 1)
print "Testing for highestCommittedUSN"
-
res = ldb.search(scope=SCOPE_BASE, attrs=["highestCommittedUSN"])
assertEquals(len(res), 1)
assert(res[0]["highestCommittedUSN"] != 0)
@@ -900,17 +899,20 @@ def basedn_tests(ldb, gc_ldb):
attrs=["netlogon", "highestCommittedUSN"])
assertEquals(len(res), 0)
+
def find_basedn(ldb):
res = ldb.search(base="", expression="", scope=SCOPE_BASE,
attrs=["defaultNamingContext"])
assertEquals(len(res), 1)
return res[0]["defaultNamingContext"][0]
+
def find_configurationdn(ldb):
res = ldb.search(base="", expression="", scope=SCOPE_BASE, attrs=["configurationNamingContext"])
assertEquals(len(res), 1)
return res[0]["configurationNamingContext"][0]
+
def find_schemadn(ldb):
res = ldb.search(base="", expression="", scope=SCOPE_BASE, attrs=["schemaNamingContext"])
assertEquals(len(res), 1)