Skip to content

Commit 1ca67a2

Browse files
committed
fakeldap.py: Don't rely on KeyError exceptions when accessing non-existent keys of MockLDAP.directory.
The implementation of the internal MockLDAP.directory dictionary is defined via self.directory = defaultdict(lambda: {}) This results in a dictionary that always returns an empty dict for any key requested: >>> print (self.directory['some_key']) {} Thus, we cannot rely on the raisal of KeyError exceptions when accessing a non-existing LDAP DNs in the MockLDAP.directory. Instead, we check if MockLDAP.directory['some_key'] returns an empty dict {} value.
1 parent e17f878 commit 1ca67a2

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

fakeldap.py

+6-9
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,8 @@ def _compare_s(self, dn, attr, value):
294294
return found and 1 or 0
295295

296296
def _modify_s(self, dn, mod_attrs):
297-
try:
298-
entry = self.directory[dn]
299-
except KeyError:
297+
entry = self.directory[dn]
298+
if entry == {}:
300299
raise ldap.NO_SUCH_OBJECT
301300

302301
for item in mod_attrs:
@@ -325,9 +324,8 @@ def _modify_s(self, dn, mod_attrs):
325324
return (103, [])
326325

327326
def _rename_s(self, dn, newdn):
328-
try:
329-
entry = self.directory[dn]
330-
except KeyError:
327+
entry = self.directory[dn]
328+
if entry == {}:
331329
raise ldap.NO_SUCH_OBJECT
332330

333331
changes = newdn.split('=')
@@ -384,10 +382,9 @@ def _add_s(self, dn, record):
384382
for item in record:
385383
entry[item[0]] = item[1]
386384
logger.debug("entry: %s".format(entry))
387-
try:
388-
self.directory[dn]
385+
if self.directory[dn] != {}:
389386
raise ldap.ALREADY_EXISTS
390-
except KeyError:
387+
else:
391388
self.directory[dn] = entry
392389
return (105,[], len(self.calls), [])
393390

0 commit comments

Comments
 (0)