summaryrefslogtreecommitdiffstats
path: root/result_collection_api/resources/result_models.py
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2016-05-29 01:12:54 +0800
committerSerenaFeng <feng.xiaowei@zte.com.cn>2016-05-29 01:24:21 +0800
commitda918db679b094948cf95670f0fa74a4528ee336 (patch)
tree95eb8fbea473454d0e4798364ab4b0119fce72f6 /result_collection_api/resources/result_models.py
parent3a03a7efbdaf54fa5789c8d08119c7ac5b8f0a08 (diff)
swagger-ize result-apis of testAPI
JIRA: FUNCTEST-270 Change-Id: I82b1e3acee82d9b4931531c9404e13a663ff32de Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'result_collection_api/resources/result_models.py')
-rw-r--r--result_collection_api/resources/result_models.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/result_collection_api/resources/result_models.py b/result_collection_api/resources/result_models.py
index 15684e2..7faac16 100644
--- a/result_collection_api/resources/result_models.py
+++ b/result_collection_api/resources/result_models.py
@@ -1,4 +1,7 @@
+from tornado_swagger_ui.tornado_swagger import swagger
+
+@swagger.model()
class ResultCreateRequest(object):
def __init__(self,
pod_name=None,
@@ -43,9 +46,8 @@ class ResultCreateRequest(object):
}
-class TestResult:
- """ Describes a test result"""
-
+@swagger.model()
+class TestResult(object):
def __init__(self):
self._id = None
self.case_name = None
@@ -132,7 +134,11 @@ class TestResult:
}
+@swagger.model()
class TestResults(object):
+ """
+ @ptype testcases: C{list} of L{TestResult}
+ """
def __init__(self, results=list()):
self.results = results