63437e9dca
Bug 933852 Merged over the code from the legacy keystone implementation, updated style and streamlined the API a bit. * Unit tests can be run against a live OpenLDAP server * Password hashing done via passlib. Only does salted sha1, which is what simple_bind requires, but is not secure. * Added pip dependencies Change-Id: I5296d94f6b7d0a7c7dbc887cdae872171e34bb5f
36 lines
1020 B
Python
36 lines
1020 B
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
from keystone import config
|
|
from keystone import test
|
|
from keystone.common.ldap import fakeldap
|
|
from keystone.identity.backends import ldap as identity_ldap
|
|
|
|
import default_fixtures
|
|
import test_backend
|
|
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
def clear_database():
|
|
db = fakeldap.FakeShelve().get_instance()
|
|
db.clear()
|
|
|
|
|
|
class LDAPIdentity(test.TestCase, test_backend.IdentityTests):
|
|
def setUp(self):
|
|
super(LDAPIdentity, self).setUp()
|
|
CONF(config_files=[test.etcdir('keystone.conf'),
|
|
test.testsdir('test_overrides.conf'),
|
|
test.testsdir('backend_ldap.conf')])
|
|
clear_database()
|
|
self.identity_api = identity_ldap.Identity()
|
|
self.load_fixtures(default_fixtures)
|
|
self.user_foo = {'id': 'foo',
|
|
'name': 'FOO',
|
|
'password': 'foo2',
|
|
'tenants': ['bar']}
|
|
|
|
def tearDown(self):
|
|
test.TestCase.tearDown(self)
|