1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
"""
Automatic tests for python-ldap's module ldapurl
See https://www.python-ldap.org/ for details.
"""
import os
import unittest
from urllib.parse import quote
# Switch off processing .ldaprc or ldap.conf before importing _ldap
os.environ['LDAPNOINIT'] = '1'
import ldapurl
from ldapurl import LDAPUrl
class MyLDAPUrl(LDAPUrl):
attr2extype = {
'who':'bindname',
'cred':'X-BINDPW',
'start_tls':'startTLS',
'trace_level':'trace',
}
class TestIsLDAPUrl(unittest.TestCase):
is_ldap_url_tests = {
# Examples from RFC2255
'ldap:///o=University%20of%20Michigan,c=US':1,
'ldap://ldap.itd.umich.edu/o=University%20of%20Michigan,c=US':1,
'ldap://ldap.itd.umich.edu/o=University%20of%20Michigan,':1,
'ldap://host.com:6666/o=University%20of%20Michigan,':1,
'ldap://ldap.itd.umich.edu/c=GB?objectClass?one':1,
'ldap://ldap.question.com/o=Question%3f,c=US?mail':1,
'ldap://ldap.netscape.com/o=Babsco,c=US???(int=%5c00%5c00%5c00%5c04)':1,
'ldap:///??sub??bindname=cn=Manager%2co=Foo':1,
'ldap:///??sub??!bindname=cn=Manager%2co=Foo':1,
# More examples from various sources
'ldap://ldap.nameflow.net:1389/c%3dDE':1,
'ldap://root.openldap.org/dc=openldap,dc=org':1,
'ldaps://root.openldap.org/dc=openldap,dc=org':1,
'ldap://x500.mh.se/o=Mitthogskolan,c=se????1.2.752.58.10.2=T.61':1,
'ldp://root.openldap.org/dc=openldap,dc=org':0,
'ldap://localhost:1389/ou%3DUnstructured%20testing%20tree%2Cdc%3Dstroeder%2Cdc%3Dcom??one':1,
'ldaps://ldap.example.com/c%3dDE':1,
'ldapi:///dc=stroeder,dc=de????x-saslmech=EXTERNAL':1,
'LDAP://localhost': True,
'LDAPS://localhost': True,
'LDAPI://%2Frun%2Fldap.sock': True,
' ldap://space.example': False,
'ldap ://space.example': False,
}
def test_isLDAPUrl(self):
for ldap_url, expected in self.is_ldap_url_tests.items():
result = ldapurl.isLDAPUrl(ldap_url)
self.assertEqual(
result, expected,
'isLDAPUrl("%s") returns %d instead of %d.' % (
ldap_url, result, expected,
)
)
if expected:
LDAPUrl(ldapUrl=ldap_url)
else:
with self.assertRaises(ValueError):
LDAPUrl(ldapUrl=ldap_url)
class TestParseLDAPUrl(unittest.TestCase):
parse_ldap_url_tests = [
(
'ldap://root.openldap.org/dc=openldap,dc=org',
LDAPUrl(
hostport='root.openldap.org',
dn='dc=openldap,dc=org'
)
),
(
'ldap://root.openldap.org/dc%3dboolean%2cdc%3dnet???%28objectClass%3d%2a%29',
LDAPUrl(
hostport='root.openldap.org',
dn='dc=boolean,dc=net',
filterstr='(objectClass=*)'
)
),
(
'ldap://root.openldap.org/dc=openldap,dc=org??sub?',
LDAPUrl(
hostport='root.openldap.org',
dn='dc=openldap,dc=org',
scope=ldapurl.LDAP_SCOPE_SUBTREE
)
),
(
'ldap://root.openldap.org/dc=openldap,dc=org??one?',
LDAPUrl(
hostport='root.openldap.org',
dn='dc=openldap,dc=org',
scope=ldapurl.LDAP_SCOPE_ONELEVEL
)
),
(
'ldap://root.openldap.org/dc=openldap,dc=org??base?',
LDAPUrl(
hostport='root.openldap.org',
dn='dc=openldap,dc=org',
scope=ldapurl.LDAP_SCOPE_BASE
)
),
(
'ldap://x500.mh.se/o=Mitthogskolan,c=se????1.2.752.58.10.2=T.61',
LDAPUrl(
hostport='x500.mh.se',
dn='o=Mitthogskolan,c=se',
extensions=ldapurl.LDAPUrlExtensions({
'1.2.752.58.10.2':ldapurl.LDAPUrlExtension(
critical=0,extype='1.2.752.58.10.2',exvalue='T.61'
)
})
)
),
(
'ldap://localhost:12345/dc=stroeder,dc=com????!bindname=cn=Michael%2Cdc=stroeder%2Cdc=com,!X-BINDPW=secretpassword',
LDAPUrl(
hostport='localhost:12345',
dn='dc=stroeder,dc=com',
extensions=ldapurl.LDAPUrlExtensions({
'bindname':ldapurl.LDAPUrlExtension(
critical=1,extype='bindname',exvalue='cn=Michael,dc=stroeder,dc=com'
),
'X-BINDPW':ldapurl.LDAPUrlExtension(
critical=1,extype='X-BINDPW',exvalue='secretpassword'
),
}),
)
),
(
'ldap://localhost:54321/dc=stroeder,dc=com????bindname=cn=Michael%2Cdc=stroeder%2Cdc=com,X-BINDPW=secretpassword',
LDAPUrl(
hostport='localhost:54321',
dn='dc=stroeder,dc=com',
who='cn=Michael,dc=stroeder,dc=com',
cred='secretpassword'
)
),
(
'ldaps://localhost:12345/dc=stroeder,dc=com',
LDAPUrl(
urlscheme='ldaps',
hostport='localhost:12345',
dn='dc=stroeder,dc=com',
),
),
(
'LDAPS://localhost:12345/dc=stroeder,dc=com',
LDAPUrl(
urlscheme='ldaps',
hostport='localhost:12345',
dn='dc=stroeder,dc=com',
),
),
(
'ldaps://localhost:12345/dc=stroeder,dc=com',
LDAPUrl(
urlscheme='LDAPS',
hostport='localhost:12345',
dn='dc=stroeder,dc=com',
),
),
(
'ldapi://%2ftmp%2fopenldap2-1389/dc=stroeder,dc=com',
LDAPUrl(
urlscheme='ldapi',
hostport='/tmp/openldap2-1389',
dn='dc=stroeder,dc=com',
),
),
]
def test_ldapurl(self):
for ldap_url_str,test_ldap_url_obj in self.parse_ldap_url_tests:
ldap_url_obj = LDAPUrl(ldapUrl=ldap_url_str)
self.assertEqual(
ldap_url_obj, test_ldap_url_obj,
'Attributes of LDAPUrl({}) are:\n{}\ninstead of:\n{}'.format(
repr(ldap_url_str),
repr(ldap_url_obj),
repr(test_ldap_url_obj),
)
)
unparsed_ldap_url_str = test_ldap_url_obj.unparse()
unparsed_ldap_url_obj = LDAPUrl(ldapUrl=unparsed_ldap_url_str)
self.assertEqual(
unparsed_ldap_url_obj, test_ldap_url_obj,
'Attributes of LDAPUrl({}) are:\n{}\ninstead of:\n{}'.format(
repr(unparsed_ldap_url_str),
repr(unparsed_ldap_url_obj),
repr(test_ldap_url_obj),
)
)
class TestLDAPUrl(unittest.TestCase):
def test_combo(self):
u = MyLDAPUrl(
"ldap://127.0.0.1:1234/dc=example,dc=com"
+ "?attr1,attr2,attr3"
+ "?sub"
+ "?" + quote("(objectClass=*)")
+ "?bindname=" + quote("cn=d,c=au")
+ ",X-BINDPW=" + quote("???")
+ ",trace=8"
)
self.assertEqual(u.urlscheme, "ldap")
self.assertEqual(u.hostport, "127.0.0.1:1234")
self.assertEqual(u.dn, "dc=example,dc=com")
self.assertEqual(u.attrs, ["attr1","attr2","attr3"])
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_SUBTREE)
self.assertEqual(u.filterstr, "(objectClass=*)")
self.assertEqual(len(u.extensions), 3)
self.assertEqual(u.who, "cn=d,c=au")
self.assertEqual(u.cred, "???")
self.assertEqual(u.trace_level, "8")
def test_parse_default_hostport(self):
u = LDAPUrl("ldap://")
self.assertEqual(u.urlscheme, "ldap")
self.assertEqual(u.hostport, "")
def test_parse_empty_dn(self):
u = LDAPUrl("ldap://")
self.assertEqual(u.dn, "")
u = LDAPUrl("ldap:///")
self.assertEqual(u.dn, "")
u = LDAPUrl("ldap:///?")
self.assertEqual(u.dn, "")
def test_parse_default_attrs(self):
u = LDAPUrl("ldap://")
self.assertIsNone(u.attrs)
def test_parse_default_scope(self):
u = LDAPUrl("ldap://")
self.assertIsNone(u.scope) # RFC4516 s3
def test_parse_default_filter(self):
u = LDAPUrl("ldap://")
self.assertIsNone(u.filterstr) # RFC4516 s3
def test_parse_default_extensions(self):
u = LDAPUrl("ldap://")
self.assertEqual(len(u.extensions), 0)
def test_parse_schemes(self):
u = LDAPUrl("ldap://")
self.assertEqual(u.urlscheme, "ldap")
u = LDAPUrl("ldapi://")
self.assertEqual(u.urlscheme, "ldapi")
u = LDAPUrl("ldaps://")
self.assertEqual(u.urlscheme, "ldaps")
def test_parse_hostport(self):
u = LDAPUrl("ldap://a")
self.assertEqual(u.hostport, "a")
u = LDAPUrl("ldap://a.b")
self.assertEqual(u.hostport, "a.b")
u = LDAPUrl("ldap://a.")
self.assertEqual(u.hostport, "a.")
u = LDAPUrl("ldap://%61%62:%32/")
self.assertEqual(u.hostport, "ab:2")
u = LDAPUrl("ldap://[::1]/")
self.assertEqual(u.hostport, "[::1]")
u = LDAPUrl("ldap://[::1]")
self.assertEqual(u.hostport, "[::1]")
u = LDAPUrl("ldap://[::1]:123/")
self.assertEqual(u.hostport, "[::1]:123")
u = LDAPUrl("ldap://[::1]:123")
self.assertEqual(u.hostport, "[::1]:123")
def test_parse_dn(self):
u = LDAPUrl("ldap:///")
self.assertEqual(u.dn, "")
u = LDAPUrl("ldap:///dn=foo")
self.assertEqual(u.dn, "dn=foo")
u = LDAPUrl("ldap:///dn=foo%2cdc=bar")
self.assertEqual(u.dn, "dn=foo,dc=bar")
u = LDAPUrl("ldap:///dn=foo%20bar")
self.assertEqual(u.dn, "dn=foo bar")
u = LDAPUrl("ldap:///dn=foo%2fbar")
self.assertEqual(u.dn, "dn=foo/bar")
u = LDAPUrl("ldap:///dn=foo%2fbar?")
self.assertEqual(u.dn, "dn=foo/bar")
u = LDAPUrl("ldap:///dn=foo%3f?")
self.assertEqual(u.dn, "dn=foo?")
u = LDAPUrl("ldap:///dn=foo%3f")
self.assertEqual(u.dn, "dn=foo?")
u = LDAPUrl("ldap:///dn=str%c3%b6der.com")
self.assertEqual(u.dn, "dn=str\xf6der.com")
def test_parse_attrs(self):
u = LDAPUrl("ldap:///?")
self.assertIsNone(u.attrs)
u = LDAPUrl("ldap:///??")
self.assertIsNone(u.attrs)
u = LDAPUrl("ldap:///?*?")
self.assertEqual(u.attrs, ['*'])
u = LDAPUrl("ldap:///?*,*?")
self.assertEqual(u.attrs, ['*','*'])
u = LDAPUrl("ldap:///?a")
self.assertEqual(u.attrs, ['a'])
u = LDAPUrl("ldap:///?%61")
self.assertEqual(u.attrs, ['a'])
u = LDAPUrl("ldap:///?a,b")
self.assertEqual(u.attrs, ['a','b'])
u = LDAPUrl("ldap:///?a%3fb")
self.assertEqual(u.attrs, ['a?b'])
def test_parse_scope_default(self):
u = LDAPUrl("ldap:///??")
self.assertIsNone(u.scope) # on opposite to RFC4516 s3 for referral chasing
u = LDAPUrl("ldap:///???")
self.assertIsNone(u.scope) # on opposite to RFC4516 s3 for referral chasing
def test_parse_scope(self):
u = LDAPUrl("ldap:///??sub")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_SUBTREE)
u = LDAPUrl("ldap:///??sub?")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_SUBTREE)
u = LDAPUrl("ldap:///??base")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_BASE)
u = LDAPUrl("ldap:///??base?")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_BASE)
u = LDAPUrl("ldap:///??one")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_ONELEVEL)
u = LDAPUrl("ldap:///??one?")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_ONELEVEL)
u = LDAPUrl("ldap:///??subordinates")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_SUBORDINATES)
u = LDAPUrl("ldap:///??subordinates?")
self.assertEqual(u.scope, ldapurl.LDAP_SCOPE_SUBORDINATES)
def test_parse_filter(self):
u = LDAPUrl("ldap:///???(cn=Bob)")
self.assertEqual(u.filterstr, "(cn=Bob)")
u = LDAPUrl("ldap:///???(cn=Bob)?")
self.assertEqual(u.filterstr, "(cn=Bob)")
u = LDAPUrl("ldap:///???(cn=Bob%20Smith)?")
self.assertEqual(u.filterstr, "(cn=Bob Smith)")
u = LDAPUrl("ldap:///???(cn=Bob/Smith)?")
self.assertEqual(u.filterstr, "(cn=Bob/Smith)")
u = LDAPUrl("ldap:///???(cn=Bob:Smith)?")
self.assertEqual(u.filterstr, "(cn=Bob:Smith)")
u = LDAPUrl("ldap:///???&(cn=Bob)(objectClass=user)?")
self.assertEqual(u.filterstr, "&(cn=Bob)(objectClass=user)")
u = LDAPUrl("ldap:///???|(cn=Bob)(objectClass=user)?")
self.assertEqual(u.filterstr, "|(cn=Bob)(objectClass=user)")
u = LDAPUrl("ldap:///???(cn=Q%3f)?")
self.assertEqual(u.filterstr, "(cn=Q?)")
u = LDAPUrl("ldap:///???(cn=Q%3f)")
self.assertEqual(u.filterstr, "(cn=Q?)")
u = LDAPUrl("ldap:///???(sn=Str%c3%b6der)") # (possibly bad?)
self.assertEqual(u.filterstr, "(sn=Str\xf6der)")
u = LDAPUrl("ldap:///???(sn=Str\\c3\\b6der)")
self.assertEqual(u.filterstr, "(sn=Str\\c3\\b6der)") # (recommended)
u = LDAPUrl("ldap:///???(cn=*\\2a*)")
self.assertEqual(u.filterstr, "(cn=*\\2a*)")
u = LDAPUrl("ldap:///???(cn=*%5c2a*)")
self.assertEqual(u.filterstr, "(cn=*\\2a*)")
def test_parse_extensions(self):
u = LDAPUrl("ldap:///????")
self.assertIsNone(u.extensions)
self.assertIsNone(u.who)
u = LDAPUrl("ldap:///????bindname=cn=root")
self.assertEqual(len(u.extensions), 1)
self.assertEqual(u.who, "cn=root")
u = LDAPUrl("ldap:///????!bindname=cn=root")
self.assertEqual(len(u.extensions), 1)
self.assertEqual(u.who, "cn=root")
u = LDAPUrl("ldap:///????bindname=%3f,X-BINDPW=%2c")
self.assertEqual(len(u.extensions), 2)
self.assertEqual(u.who, "?")
self.assertEqual(u.cred, ",")
def test_parse_extensions_nulls(self):
u = LDAPUrl("ldap:///????bindname=%00name")
self.assertEqual(u.who, "\0name")
def test_parse_extensions_5questions(self):
u = LDAPUrl("ldap:///????bindname=?")
self.assertEqual(len(u.extensions), 1)
self.assertEqual(u.who, "?")
def test_parse_extensions_novalue(self):
u = LDAPUrl("ldap:///????bindname")
self.assertEqual(len(u.extensions), 1)
self.assertIsNone(u.who)
@unittest.expectedFailure
def test_bad_urls(self):
failed_urls = []
for bad in (
"",
"ldap:",
"ldap:/",
":///",
"://",
"///",
"//",
"/",
"ldap:///?????", # extension can't start with '?'
"LDAP://",
"invalid://",
"ldap:///??invalid",
#XXX-- the following should raise exceptions!
"ldap://:389/", # [host [COLON port]]
"ldap://a:/", # [host [COLON port]]
r"ldap://%%%/", # invalid URL encoding
"ldap:///?,", # attrdesc *(COMMA attrdesc)
"ldap:///?a,", # attrdesc *(COMMA attrdesc)
"ldap:///?,a", # attrdesc *(COMMA attrdesc)
"ldap:///?a,,b", # attrdesc *(COMMA attrdesc)
r"ldap://%00/", # RFC4516 2.1
r"ldap:///%00", # RFC4516 2.1
r"ldap:///?%00", # RFC4516 2.1
r"ldap:///??%00", # RFC4516 2.1
"ldap:///????0=0", # extype must start with Alpha
"ldap:///????a_b=0", # extype contains only [-a-zA-Z0-9]
"ldap:///????!!a=0", # only one exclamation allowed
):
try:
LDAPUrl(bad)
except ValueError:
pass
else:
failed_urls.append(bad)
if failed_urls:
self.fail("These LDAP URLs should have raised ValueError: %r" % failed_urls)
if __name__ == '__main__':
unittest.main()
|