53450e29f1
Fixes bug #1157727 Change-Id: I3760469b8000cfc5fb461bb9ede5d0e140413dd7
95 lines
3.3 KiB
Python
95 lines
3.3 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 OpenStack LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import ldap
|
|
import ldap.modlist
|
|
import nose.exc
|
|
import subprocess
|
|
|
|
from keystone import config
|
|
from keystone.identity.backends import ldap as identity_ldap
|
|
from keystone import test
|
|
|
|
import default_fixtures
|
|
import test_backend_ldap
|
|
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
def create_object(dn, attrs):
|
|
conn = ldap.initialize(CONF.ldap.url)
|
|
conn.simple_bind_s(CONF.ldap.user, CONF.ldap.password)
|
|
ldif = ldap.modlist.addModlist(attrs)
|
|
conn.add_s(dn, ldif)
|
|
conn.unbind_s()
|
|
|
|
|
|
class LiveLDAPIdentity(test_backend_ldap.LDAPIdentity):
|
|
|
|
def clear_database(self):
|
|
devnull = open('/dev/null', 'w')
|
|
subprocess.call(['ldapdelete',
|
|
'-x',
|
|
'-D', CONF.ldap.user,
|
|
'-H', CONF.ldap.url,
|
|
'-w', CONF.ldap.password,
|
|
'-r', CONF.ldap.suffix],
|
|
stderr=devnull)
|
|
|
|
if CONF.ldap.suffix.startswith('ou='):
|
|
tree_dn_attrs = {'objectclass': 'organizationalUnit',
|
|
'ou': 'openstack'}
|
|
else:
|
|
tree_dn_attrs = {'objectclass': ['dcObject', 'organizationalUnit'],
|
|
'dc': 'openstack',
|
|
'ou': 'openstack'}
|
|
create_object(CONF.ldap.suffix, tree_dn_attrs)
|
|
create_object(CONF.ldap.user_tree_dn,
|
|
{'objectclass': 'organizationalUnit',
|
|
'ou': 'Users'})
|
|
create_object(CONF.ldap.role_tree_dn,
|
|
{'objectclass': 'organizationalUnit',
|
|
'ou': 'Roles'})
|
|
create_object(CONF.ldap.tenant_tree_dn,
|
|
{'objectclass': 'organizationalUnit',
|
|
'ou': 'Projects'})
|
|
create_object(CONF.ldap.domain_tree_dn,
|
|
{'objectclass': 'organizationalUnit',
|
|
'ou': 'Domains'})
|
|
create_object(CONF.ldap.group_tree_dn,
|
|
{'objectclass': 'organizationalUnit',
|
|
'ou': 'UserGroups'})
|
|
|
|
def _set_config(self):
|
|
self.config([test.etcdir('keystone.conf.sample'),
|
|
test.testsdir('test_overrides.conf'),
|
|
test.testsdir('backend_liveldap.conf')])
|
|
|
|
def test_build_tree(self):
|
|
"""Regression test for building the tree names
|
|
"""
|
|
#logic is different from the fake backend.
|
|
user_api = identity_ldap.UserApi(CONF)
|
|
self.assertTrue(user_api)
|
|
self.assertEquals(user_api.tree_dn, CONF.ldap.user_tree_dn)
|
|
|
|
def tearDown(self):
|
|
test.TestCase.tearDown(self)
|
|
|
|
def test_user_enable_attribute_mask(self):
|
|
raise nose.exc.SkipTest('Test is for Active Directory Only')
|