Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create mock LDAP server for Django project?

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.

like image 979
mynameistechno Avatar asked Apr 17 '13 00:04

mynameistechno


1 Answers

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.

like image 57
psagers Avatar answered Oct 22 '22 01:10

psagers