diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-21 20:46:26 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-21 20:46:26 +0800 |
commit | 428aa649cfaa909733acabd0c8f1ba260022c99f (patch) | |
tree | 0063a276db771d8abc485ec9320a0e8878bf514e /result_collection_api | |
parent | ce6d286ed760c850e623d196e4480d02951ade43 (diff) |
bugfix: correct the post response body of PODS in testAPI
mark CreateResponse as a swagger.model
change response class of post pods to L{CreateResponse}
JIRA: FUNCTEST-326
Change-Id: I031350bb434e26e33d55c92ace548a2ae1c82f3e
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'result_collection_api')
-rw-r--r-- | result_collection_api/opnfv_testapi/resources/models.py | 1 | ||||
-rw-r--r-- | result_collection_api/opnfv_testapi/resources/pod_handlers.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/result_collection_api/opnfv_testapi/resources/models.py b/result_collection_api/opnfv_testapi/resources/models.py index 290a7f3..e79308b 100644 --- a/result_collection_api/opnfv_testapi/resources/models.py +++ b/result_collection_api/opnfv_testapi/resources/models.py @@ -16,6 +16,7 @@ from opnfv_testapi.tornado_swagger import swagger
+@swagger.model()
class CreateResponse(object):
def __init__(self, href=''):
self.href = href
diff --git a/result_collection_api/opnfv_testapi/resources/pod_handlers.py b/result_collection_api/opnfv_testapi/resources/pod_handlers.py index df4112f..8f44439 100644 --- a/result_collection_api/opnfv_testapi/resources/pod_handlers.py +++ b/result_collection_api/opnfv_testapi/resources/pod_handlers.py @@ -36,7 +36,7 @@ class PodCLHandler(GenericPodHandler): @param body: pod to be created @type body: L{PodCreateRequest} @in body: body - @rtype: L{Pod} + @rtype: L{CreateResponse} @return 200: pod is created. @raise 403: pod already exists @raise 400: body or name not provided |