fixing pep8 formatting for 1.0.1+ pep8
Change-Id: I3a4f9d43f3e36dac8f976100587d709736ad34ab
This commit is contained in:
		| @@ -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') | ||||
|   | ||||
| @@ -28,28 +28,24 @@ class DiscoverKeystoneTests(utils.UnauthenticatedTestCase): | ||||
|                     "updated": "2011-11-19T00:00:00Z", | ||||
|                     "links": [ | ||||
|                         {"rel": "self", | ||||
|                          "href": "http://127.0.0.1:5000/v2.0/", | ||||
|                         }, | ||||
|                          "href": "http://127.0.0.1:5000/v2.0/", }, | ||||
|                         {"rel": "describedby", | ||||
|                          "type": "text/html", | ||||
|                          "href": "http://docs.openstack.org/api/" | ||||
|                          "openstack-identity-service/2.0/content/", | ||||
|                         }, { | ||||
|                             "rel": "describedby", | ||||
|                             "type": "application/pdf", | ||||
|                             "href": "http://docs.openstack.org/api/" | ||||
|                                     "openstack-identity-service/2.0/" | ||||
|                                     "identity-dev-guide-2.0.pdf", | ||||
|                         }, { | ||||
|                             "rel": "describedby", | ||||
|                             "type": "application/vnd.sun.wadl+xml", | ||||
|                             "href": "http://127.0.0.1:5000/v2.0/identity.wadl", | ||||
|                         }], | ||||
|                          "openstack-identity-service/2.0/content/", }, | ||||
|                         {"rel": "describedby", | ||||
|                          "type": "application/pdf", | ||||
|                          "href": "http://docs.openstack.org/api/" | ||||
|                                  "openstack-identity-service/2.0/" | ||||
|                                  "identity-dev-guide-2.0.pdf", }, | ||||
|                         {"rel": "describedby", | ||||
|                          "type": "application/vnd.sun.wadl+xml", | ||||
|                          "href": "http://127.0.0.1:5000/v2.0/identity.wadl", } | ||||
|                     ], | ||||
|                     "media-types": [{ | ||||
|                         "base": "application/xml", | ||||
|                         "type": "application/vnd.openstack.identity-v2.0+xml", | ||||
|                     }, | ||||
|                     { | ||||
|                     }, { | ||||
|                         "base": "application/json", | ||||
|                         "type": "application/vnd.openstack.identity-v2.0+json", | ||||
|                     }], | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Joe Heck
					Joe Heck