From 5cb8e1f2e5e12cf7e8c6bce91af53b901f6254a9 Mon Sep 17 00:00:00 2001 From: Sahdev Zala Date: Thu, 21 Feb 2013 16:11:12 -0600 Subject: Support for LDAP groups (bug #1092187) Also covers Domain CRUD. Fixes Bug #1092187 Change-Id: If2266ed382edfedfad3eef450ce58640ca4b4657 --- tests/_ldap_livetest.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tests/_ldap_livetest.py') diff --git a/tests/_ldap_livetest.py b/tests/_ldap_livetest.py index 7eb343e6..5f5f60cd 100644 --- a/tests/_ldap_livetest.py +++ b/tests/_ldap_livetest.py @@ -67,11 +67,12 @@ class LiveLDAPIdentity(test_backend_ldap.LDAPIdentity): create_object(CONF.ldap.tenant_tree_dn, {'objectclass': 'organizationalUnit', 'ou': 'Projects'}) - - # NOTE(crazed): This feature is currently being added - create_object("ou=Groups,%s" % CONF.ldap.suffix, + create_object(CONF.ldap.domain_tree_dn, + {'objectclass': 'organizationalUnit', + 'ou': 'Domain'}) + create_object(CONF.ldap.group_tree_dn, {'objectclass': 'organizationalUnit', - 'ou': 'Groups'}) + 'ou': 'UserGroups'}) def _set_config(self): self.config([test.etcdir('keystone.conf.sample'), -- cgit