summaryrefslogtreecommitdiff
path: root/tests/test_service_catalog.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-08-31 00:28:20 +0000
committerGerrit Code Review <review@openstack.org>2012-08-31 00:28:20 +0000
commit0a8c96073c3dd76df346c262898303f6fb7435d6 (patch)
treedfab485739a325d0e062bffd4da578c3de3b9cd6 /tests/test_service_catalog.py
parentde8622cd8e34d658db7fe5e069ee386878549a87 (diff)
parent916d4be6c2b873e9085b12f2c1bbc21ae8f9587c (diff)
downloadpython-keystoneclient-0.1.3.tar.gz
Merge "fixing pep8 formatting for 1.0.1+ pep8"0.1.3
Diffstat (limited to 'tests/test_service_catalog.py')
-rw-r--r--tests/test_service_catalog.py91
1 files changed, 43 insertions, 48 deletions
diff --git a/tests/test_service_catalog.py b/tests/test_service_catalog.py
index 8d89d27..9397405 100644
--- a/tests/test_service_catalog.py
+++ b/tests/test_service_catalog.py
@@ -19,61 +19,56 @@ SERVICE_CATALOG = {
"user": {
"id": "123",
"name": "jqsmith",
- "roles": [{
- "id": "234",
- "name": "compute:admin"
- },
- {
- "id": "235",
- "name": "object-store:admin",
- "tenantId": "1"
- }],
+ "roles": [
+ {"id": "234",
+ "name": "compute:admin"},
+ {"id": "235",
+ "name": "object-store:admin",
+ "tenantId": "1"}
+ ],
"roles_links": []
},
"serviceCatalog": [{
"name": "Cloud Servers",
"type": "compute",
- "endpoints": [{
- "tenantId": "1",
- "publicURL": "https://compute.north.host/v1/1234",
- "internalURL": "https://compute.north.host/v1/1234",
- "region": "North",
- "versionId": "1.0",
- "versionInfo": "https://compute.north.host/v1.0/",
- "versionList": "https://compute.north.host/"
- },
- {
- "tenantId": "2",
- "publicURL": "https://compute.north.host/v1.1/3456",
- "internalURL": "https://compute.north.host/v1.1/3456",
- "region": "North",
- "versionId": "1.1",
- "versionInfo": "https://compute.north.host/v1.1/",
- "versionList": "https://compute.north.host/"
- }],
+ "endpoints": [
+ {"tenantId": "1",
+ "publicURL": "https://compute.north.host/v1/1234",
+ "internalURL": "https://compute.north.host/v1/1234",
+ "region": "North",
+ "versionId": "1.0",
+ "versionInfo": "https://compute.north.host/v1.0/",
+ "versionList": "https://compute.north.host/"},
+ {"tenantId": "2",
+ "publicURL": "https://compute.north.host/v1.1/3456",
+ "internalURL": "https://compute.north.host/v1.1/3456",
+ "region": "North",
+ "versionId": "1.1",
+ "versionInfo": "https://compute.north.host/v1.1/",
+ "versionList": "https://compute.north.host/"}
+ ],
"endpoints_links": []
},
{
"name": "Cloud Files",
"type": "object-store",
- "endpoints": [{
- "tenantId": "11",
- "publicURL": "https://compute.north.host/v1/blah-blah",
- "internalURL": "https://compute.north.host/v1/blah-blah",
- "region": "South",
- "versionId": "1.0",
- "versionInfo": "uri",
- "versionList": "uri"
- },
- {
- "tenantId": "2",
- "publicURL": "https://compute.north.host/v1.1/blah-blah",
- "internalURL": "https://compute.north.host/v1.1/blah-blah",
- "region": "South",
- "versionId": "1.1",
- "versionInfo": "https://compute.north.host/v1.1/",
- "versionList": "https://compute.north.host/"
- }],
+ "endpoints": [
+ {"tenantId": "11",
+ "publicURL": "https://compute.north.host/v1/blah-blah",
+ "internalURL": "https://compute.north.host/v1/blah-blah",
+ "region": "South",
+ "versionId": "1.0",
+ "versionInfo": "uri",
+ "versionList": "uri"},
+ {"tenantId": "2",
+ "publicURL": "https://compute.north.host/v1.1/blah-blah",
+ "internalURL":
+ "https://compute.north.host/v1.1/blah-blah",
+ "region": "South",
+ "versionId": "1.1",
+ "versionInfo": "https://compute.north.host/v1.1/",
+ "versionList": "https://compute.north.host/"}
+ ],
"endpoints_links":[{
"rel":"next",
"href":"https://identity.north.host/v2.0/"
@@ -95,11 +90,11 @@ class ServiceCatalogTest(utils.TestCase):
sc = service_catalog.ServiceCatalog(SERVICE_CATALOG['access'])
self.assertEquals(sc.url_for(service_type='compute'),
- "https://compute.north.host/v1/1234")
+ "https://compute.north.host/v1/1234")
self.assertEquals(sc.url_for('tenantId', '1', service_type='compute'),
- "https://compute.north.host/v1/1234")
+ "https://compute.north.host/v1/1234")
self.assertEquals(sc.url_for('tenantId', '2', service_type='compute'),
- "https://compute.north.host/v1.1/3456")
+ "https://compute.north.host/v1.1/3456")
self.assertRaises(exceptions.EndpointNotFound, sc.url_for, "region",
"South", service_type='compute')