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.
Asked
Active
Viewed 3,715 times
1 Answers
5
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.

psagers
- 859
- 4
- 5
-
Thanks! That project looks interesting, will give it a go. – mynameistechno Jul 25 '13 at 22:03