summaryrefslogtreecommitdiffstats
path: root/tests/test_backend_pam.py
diff options
context:
space:
mode:
authorHenry Nash <henryn@linux.vnet.ibm.com>2013-01-16 16:10:24 +0000
committerHenry Nash <henryn@linux.vnet.ibm.com>2013-02-12 16:09:15 +0000
commit8a89464d62e9c81a1ba15c0a3aa695456fc6fd33 (patch)
tree46c61fe10c2859fdeddd80379d15bc839d37cd3d /tests/test_backend_pam.py
parentf1defe8f624e006a7562bc07cd471bdd176e303e (diff)
downloadkeystone-8a89464d62e9c81a1ba15c0a3aa695456fc6fd33.tar.gz
keystone-8a89464d62e9c81a1ba15c0a3aa695456fc6fd33.tar.xz
keystone-8a89464d62e9c81a1ba15c0a3aa695456fc6fd33.zip
Keystone backend preparation for domain-scoping
These changes lay the ground work for the implmentation of domain-scoping, but are benign in that they don't change the token. They include making domain_id a first-class attribute in the user and project entity (i.e. move it out of the 'extra' attribute), filling in domain grant and project support for the kvs backend and fixing a series of issues in the mirgation to make it work for both MySQL, Postgresql and sqlite. A further, separate, commit will actually provide the code to update the actual tokens once the v3 token support has been added. blueprint domain-scoping blueprint default-domain Change-Id: I55ab7947a6a1efbab003bd234856bd3805bb4a63
Diffstat (limited to 'tests/test_backend_pam.py')
-rw-r--r--tests/test_backend_pam.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/test_backend_pam.py b/tests/test_backend_pam.py
index a5384d43..a8f4e575 100644
--- a/tests/test_backend_pam.py
+++ b/tests/test_backend_pam.py
@@ -22,6 +22,7 @@ from keystone import test
CONF = config.CONF
+DEFAULT_DOMAIN_ID = CONF.identity.default_domain_id
class PamIdentity(test.TestCase):
@@ -41,7 +42,8 @@ class PamIdentity(test.TestCase):
def test_get_project_by_name(self):
tenant_in_name = self.tenant_in['name']
- tenant_out = self.identity_api.get_project_by_name(tenant_in_name)
+ tenant_out = self.identity_api.get_project_by_name(
+ tenant_in_name, DEFAULT_DOMAIN_ID)
self.assertDictEqual(self.tenant_in, tenant_out)
def test_get_user(self):
@@ -49,7 +51,8 @@ class PamIdentity(test.TestCase):
self.assertDictEqual(self.user_in, user_out)
def test_get_user_by_name(self):
- user_out = self.identity_api.get_user_by_name(self.user_in['name'])
+ user_out = self.identity_api.get_user_by_name(
+ self.user_in['name'], DEFAULT_DOMAIN_ID)
self.assertDictEqual(self.user_in, user_out)
def test_get_metadata_for_non_root(self):