summaryrefslogtreecommitdiff
path: root/tests/unit/utils.py
diff options
context:
space:
mode:
authorPratik Mallya <pratik.mallya@gmail.com>2015-04-12 22:33:57 -0500
committerTim Burke <tim.burke@gmail.com>2016-01-18 10:47:05 -0800
commita175689418208e1c72d8db03d6b59893c73b2445 (patch)
treee1275ec9e6c188e4afec2d37e9618a22bcaac3f1 /tests/unit/utils.py
parente52df5d8a59708130054ef83068e4d516b2b6d01 (diff)
downloadpython-swiftclient-a175689418208e1c72d8db03d6b59893c73b2445.tar.gz
Accept token and tenant_id for authenticating against KS
Allow swiftclient to authenticate against keystone using tenant name/id and token only. Without this patch, the password is required, which may not always be available. Authentication against keystone is required to get the service catalog, which includes the endpoints for swift. Change-Id: I4477af445474c5fa97ff864c4942f1330b59e5d6 Closes-Bug: #1476002
Diffstat (limited to 'tests/unit/utils.py')
-rw-r--r--tests/unit/utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/utils.py b/tests/unit/utils.py
index ac9aefd..6fc68e6 100644
--- a/tests/unit/utils.py
+++ b/tests/unit/utils.py
@@ -504,8 +504,8 @@ class FakeKeystone(object):
self.token = token
class _Client(object):
- def __init__(self, endpoint, token, **kwargs):
- self.auth_token = token
+ def __init__(self, endpoint, auth_token, **kwargs):
+ self.auth_token = auth_token
self.endpoint = endpoint
self.service_catalog = self.ServiceCatalog(endpoint)
@@ -520,8 +520,8 @@ class FakeKeystone(object):
def Client(self, **kwargs):
self.calls.append(kwargs)
- self.client = self._Client(endpoint=self.endpoint, token=self.token,
- **kwargs)
+ self.client = self._Client(
+ endpoint=self.endpoint, auth_token=self.token, **kwargs)
return self.client
class Unauthorized(Exception):