Merge "Add GET method to show flavor details"

This commit is contained in:
Jenkins 2017-04-11 03:49:57 +00:00 committed by Gerrit Code Review
commit c22314be7f
3 changed files with 9 additions and 1 deletions

View File

@ -89,7 +89,7 @@ api.add_resource(v1_systems.Systems, '/v1/systems/<string:systemid>',
# Flavor(s) operations
api.add_resource(v1_flavors.Flavors, '/v1/flavors', endpoint='flavors')
api.add_resource(v1_flavors.Flavors, '/v1/flavors/<string:flavorid>',
api.add_resource(v1_flavors.Flavor, '/v1/flavors/<string:flavorid>',
endpoint='flavor')
# Storage(s) operations

View File

@ -35,6 +35,13 @@ class Flavors(Resource):
return utils.make_response(http_client.OK,
flavors.create_flavor(request.get_json()))
class Flavor(Resource):
def get(self, flavorid):
return utils.make_response(http_client.OK,
flavors.get_flavor(flavorid))
def delete(self, flavorid):
return utils.make_response(http_client.OK,
flavors.delete_flavor(flavorid))

View File

@ -45,6 +45,7 @@ class TestRoute(unittest.TestCase):
self.assertEqual(self.api.owns_endpoint('systems'), True)
self.assertEqual(self.api.owns_endpoint('system'), True)
self.assertEqual(self.api.owns_endpoint('flavors'), True)
self.assertEqual(self.api.owns_endpoint('flavor'), True)
self.assertEqual(self.api.owns_endpoint('storages'), True)
self.assertEqual(self.api.owns_endpoint('storage'), True)
self.assertEqual(self.api.owns_endpoint('podmproxy'), True)