I'm using django-auth-ldap and was wondering what is the easiest way to create a python mock ldap server. The problem arises when I'm developing away from the network the ldap server is located on. Testing is another scenario. I want to avoid creating an instance of an actual ldap server locally.
django-auth-ldap's tests.py includes a simple mock ldap for its own tests. This was spun off by someone else into the fakeldap package, although I haven't been following progress. The right answer is probably to start with fakeldap and contribute if necessary.
UPDATE: A more serious effort to spin off a mock LDAP layer is currently underway.