/usr/lib/python2.7/dist-packages/mockldap/ldapobject.py is in python-mockldap 0.1.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | from __future__ import absolute_import
from copy import deepcopy
import ldap
import ldap.dn
try:
from passlib.hash import ldap_md5_crypt
except ImportError:
pass
from .recording import SeedRequired, RecordableMethods, recorded
class LDAPObject(RecordableMethods):
"""
:param directory: The initial content of this LDAP connection.
:type directory: ``{dn: {attr: [values]}}``
Our mock replacement for :class:`ldap.LDAPObject`. This exports selected
LDAP operations and allows you to set return values in advance as well as
discover which methods were called after the fact.
All of these methods take the same arguments as their python-ldap
counterparts. Some are self-explanatory; those that are only partially
implemented are documented as such.
Ignore the *static* annotations; that's just a Sphinx artifact.
.. attribute:: options
*dict*: Options that have been set by
:meth:`~mockldap.LDAPObject.set_option`.
.. attribute:: tls_enabled
*bool*: True if :meth:`~mockldap.LDAPObject.start_tls_s` was called.
.. attribute:: bound_as
*string*: DN of the last successful bind. None if unbound.
"""
def __init__(self, directory):
self.directory = ldap.cidict.cidict(deepcopy(directory))
self.async_results = []
self.options = {}
self.tls_enabled = False
self.bound_as = None
def _check_valid_dn(self, dn):
try:
ldap.dn.str2dn(dn)
except ldap.DECODING_ERROR:
raise ldap.INVALID_DN_SYNTAX
#
# Begin LDAP methods
#
@recorded
def initialize(self, *args, **kwargs):
""" This only exists for recording purposes. """
pass
@recorded
def get_option(self, option):
"""
"""
return self.options[option]
@recorded
def set_option(self, option, invalue):
"""
"""
self.options[option] = invalue
@recorded
def simple_bind_s(self, who='', cred=''):
"""
"""
success = False
try:
if(who == '' and cred == ''):
success = True
elif self._compare_s(who, 'userPassword', cred):
success = True
except ldap.NO_SUCH_OBJECT:
pass
if success:
self.bound_as = who
return (97, [])
else:
raise ldap.INVALID_CREDENTIALS('%s:%s' % (who, cred))
@recorded
def search(self, base, scope, filterstr='(objectClass=*)', attrlist=None, attrsonly=0):
"""
See :meth:`~mockldap.LDAPObject.search_s`.
"""
value = self._search_s(base, scope, filterstr, attrlist, attrsonly)
return self._add_async_result(value)
@recorded
def result(self, msgid, all=1, timeout=None):
"""
"""
return ldap.RES_SEARCH_RESULT, self._pop_async_result(msgid)
@recorded
def search_s(self, base, scope, filterstr='(objectClass=*)', attrlist=None, attrsonly=0):
"""
Supports many, but not all, filter strings.
Tests of the form ``'(foo=bar)'`` and ``'(foo=*)'`` are supported, as
are the &, |, and ! operators. attrlist and attrsonly are also
supported. Beyond that, this method must be seeded.
"""
return self._search_s(base, scope, filterstr, attrlist, attrsonly)
@recorded
def start_tls_s(self):
"""
"""
self.tls_enabled = True
@recorded
def compare_s(self, dn, attr, value):
"""
"""
return self._compare_s(dn, attr, value)
@recorded
def modify_s(self, dn, mod_attrs):
"""
"""
return self._modify_s(dn, mod_attrs)
@recorded
def add_s(self, dn, record):
"""
"""
return self._add_s(dn, record)
@recorded
def rename_s(self, dn, newrdn, newsuperior=None):
"""
"""
return self._rename_s(dn, newrdn, newsuperior)
@recorded
def delete_s(self, dn):
"""
"""
return self._delete_s(dn)
@recorded
def unbind(self):
"""
"""
self.bound_as = None
@recorded
def unbind_s(self):
"""
"""
self.bound_as = None
#
# Internal implementations
#
def _compare_s(self, dn, attr, value):
self._check_valid_dn(dn)
try:
if attr not in self.directory[dn]:
raise ldap.UNDEFINED_TYPE
except KeyError:
raise ldap.NO_SUCH_OBJECT
if attr == 'userPassword':
for password in self.directory[dn][attr]:
try:
if ldap_md5_crypt.verify(value, password):
return 1
except (NameError, ValueError):
pass
return (value in self.directory[dn][attr]) and 1 or 0
def _search_s(self, base, scope, filterstr, attrlist, attrsonly):
from .filter import parse, UnsupportedOp
self._check_valid_dn(base)
if base not in self.directory:
raise ldap.NO_SUCH_OBJECT
# Find directory entries within the requested scope
base_parts = ldap.dn.explode_dn(base)
base_len = len(base_parts)
dn_parts = dict((dn, ldap.dn.explode_dn(dn)) for dn in self.directory.iterkeys())
if scope == ldap.SCOPE_BASE:
dns = iter([base])
elif scope == ldap.SCOPE_ONELEVEL:
dns = (dn for dn, parts in dn_parts.iteritems() if parts[1:] == base_parts)
elif scope == ldap.SCOPE_SUBTREE:
dns = (dn for dn, parts in dn_parts.iteritems() if parts[-base_len:] == base_parts)
else:
raise ValueError(u"Unrecognized scope: {0}".format(scope))
# Apply the filter expression
try:
filter_expr = parse(filterstr)
except UnsupportedOp, e:
raise SeedRequired(e)
results = ((dn, self.directory[dn]) for dn in dns
if filter_expr.matches(dn, self.directory[dn]))
# Apply attribute filtering, if any
if attrlist is not None:
results = ((dn, dict((attr, values) for attr, values in attrs.iteritems() if attr in attrlist))
for dn, attrs in results)
if attrsonly:
results = ((dn, dict((attr, []) for attr in attrs.iterkeys()))
for dn, attrs in results)
return list(results)
def _modify_s(self, dn, mod_attrs):
self._check_valid_dn(dn)
for item in mod_attrs:
op, key, value = item
try:
if key not in self.directory[dn]:
raise ldap.UNDEFINED_TYPE
except KeyError:
raise ldap.NO_SUCH_OBJECT
entry = self.directory[dn]
if type(value) is str:
value = [value]
if op is ldap.MOD_ADD:
if not value:
raise ldap.PROTOCOL_ERROR
for subvalue in value:
if subvalue not in entry[key]:
entry[key].append(subvalue)
elif op is ldap.MOD_DELETE:
if not value:
del entry[key]
else:
for subvalue in value:
if subvalue in entry[key]:
entry[key].remove(subvalue)
elif op is ldap.MOD_REPLACE:
if not value:
del entry[key]
else:
entry[key] = value
return (103, [])
def _add_s(self, dn, record):
self._check_valid_dn(dn)
entry = {}
dn = str(dn)
for item in record:
entry[item[0]] = list(item[1])
try:
self.directory[dn]
raise ldap.ALREADY_EXISTS
except KeyError:
self.directory[dn] = entry
return (105, [], len(self.methods_called()), [])
def _rename_s(self, dn, newrdn, newsuperior):
self._check_valid_dn(dn)
self._check_valid_dn(newrdn)
if newsuperior:
self._check_valid_dn(newsuperior)
try:
entry = self.directory[dn]
except KeyError:
raise ldap.NO_SUCH_OBJECT
if newsuperior:
superior = newsuperior
else:
superior = ','.join(dn.split(',')[1:])
newfulldn = '%s,%s' % (newrdn, superior)
oldattr, oldvalue = dn.split(',')[0].split('=')
newattr, newvalue = newrdn.split('=')
try:
if newvalue not in entry[newattr]:
entry[newattr].append(newvalue)
except KeyError:
entry[newattr] = [newvalue]
if oldattr == newattr or len(entry[oldattr]) > 1:
entry[oldattr].remove(oldvalue)
else:
del entry[oldattr]
self.directory[newfulldn] = entry
del self.directory[dn]
return (109, [])
def _delete_s(self, dn):
self._check_valid_dn(dn)
try:
del self.directory[dn]
except KeyError:
raise ldap.NO_SUCH_OBJECT
return (107, [])
#
# Async
#
def _add_async_result(self, value):
self.async_results.append(value)
return len(self.async_results) - 1
def _pop_async_result(self, msgid):
if msgid in xrange(len(self.async_results)):
value = self.async_results[msgid]
self.async_results[msgid] = None
else:
value = None
return value
|