From 405a20b44f69812b0225cd12370433842b28c2ca Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 28 Dec 2007 16:25:20 -0600 Subject: r26623: python: Allow specifying URL rather than host name on the command-line. (This used to be commit 108f6caffe2bb311495b89659cfd818f0ec410f2) --- source4/lib/ldb/tests/python/ldap.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/ldb/tests/python/ldap.py b/source4/lib/ldb/tests/python/ldap.py index 2b5f43920c..3f70ef9b43 100755 --- a/source4/lib/ldb/tests/python/ldap.py +++ b/source4/lib/ldb/tests/python/ldap.py @@ -955,8 +955,10 @@ def find_schemadn(ldb): assertEquals(len(res), 1) return res[0].schemaNamingContext +if not "://" in host: + host = "ldap://%s" % host -ldb = Ldb("ldap://%s" % host, credentials=creds, session_info=system_session(), +ldb = Ldb(host, credentials=creds, session_info=system_session(), lp=lp) base_dn = find_basedn(ldb) @@ -965,7 +967,7 @@ schema_dn = find_schemadn(ldb) print "baseDN: %s\n" % base_dn -gc_ldb = Ldb("ldap://%s:3268" % host, credentials=creds, +gc_ldb = Ldb("%s:3268" % host, credentials=creds, session_info=system_session(), lp=lp) basic_tests(ldb, gc_ldb, base_dn, configuration_dn, schema_dn) -- cgit