Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Match DNs in a case-insensitive way, always use the object's DN as found in the mock directory. #19

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Nov 18, 2020

  1. fakeldap.py: Don't rely on KeyError exceptions when accessing non-exi…

    …stent 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.
    sunweaver committed Nov 18, 2020
    Configuration menu
    Copy the full SHA
    1ca67a2 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2020

  1. Match DNs in a case-insensitive way, always use the object's DN as fo…

    …und in the mock directory.
    
     LDAP DNs in LDAP servers are normally matched in a case-insensitive way.
     So for MockLDAP, we search our mock directory and try to find a
     case-insensitive match of the given DN.
    
     Saying this, we always have to return the requested DN with the
     capitalization as stored in our mock LDAP directory. Otherwise, MockLDAP
     would behave differently from live LDAP server.
    sunweaver committed Nov 26, 2020
    Configuration menu
    Copy the full SHA
    8663c7a View commit details
    Browse the repository at this point in the history