summaryrefslogtreecommitdiffstats
path: root/test/functional/swift_test_client.py
diff options
context:
space:
mode:
authorLuis Pabon <lpabon@redhat.com>2013-10-31 12:51:51 -0400
committerLuis Pabon <lpabon@redhat.com>2013-11-05 14:31:53 -0800
commit9e8e2275e2d502b0bc6a6028053ba973b3b25f2d (patch)
tree582ce2fe15e92d2a6d06105d01972069c1c1a2c8 /test/functional/swift_test_client.py
parent621c8b232710c5d827cb56ac776e07fad8d1bee0 (diff)
Keystone Functional Tests
Functional tests using OpenStack Keystone Authentication. Tests require the following: 1. Keystone server is running locally 2. Keystone server has been setup according to the test.conf 3. /mnt/gluster-object has the directories setup Change-Id: I460471e549da91366cb817916ed5293c7e7adda4 Signed-off-by: Luis Pabon <lpabon@redhat.com> Reviewed-on: http://review.gluster.org/6218 Reviewed-by: Peter Portante <pportant@redhat.com> Tested-by: Peter Portante <pportant@redhat.com> Reviewed-on: http://review.gluster.org/6224
Diffstat (limited to 'test/functional/swift_test_client.py')
-rw-r--r--test/functional/swift_test_client.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/functional/swift_test_client.py b/test/functional/swift_test_client.py
index 2a161ac..9c4766e 100644
--- a/test/functional/swift_test_client.py
+++ b/test/functional/swift_test_client.py
@@ -1,4 +1,3 @@
-# Copyright (c) 2010-2012 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -155,13 +154,13 @@ class Connection(object):
self.storage_host = x[2].split(':')[0]
if ':' in x[2]:
self.storage_port = int(x[2].split(':')[1])
- # Make sure storage_url is a string and not unicode, since
+ # Make sure storage_url and the storage_token are
+ # strings and not unicode, since
# keystoneclient (called by swiftclient) returns them in
# unicode and this would cause troubles when doing
# no_safe_quote query.
self.storage_url = str('/%s/%s' % (x[3], x[4]))
-
- self.storage_token = storage_token
+ self.storage_token = str(storage_token)
self.http_connect()
return self.storage_url, self.storage_token