summaryrefslogtreecommitdiffstats
path: root/cvp/opnfv_testapi/resources/sut_models.py
diff options
context:
space:
mode:
authorgrakiss <grakiss.wanglei@huawei.com>2017-10-30 07:26:37 +0000
committerLeo wang <grakiss.wanglei@huawei.com>2017-11-01 08:44:36 +0000
commit55bb29b1d7b977b387a74f754b4baea94274141c (patch)
tree74ef8f67b87213ad1eacd9d681c05490c000003a /cvp/opnfv_testapi/resources/sut_models.py
parent62562458e6fd007f4240b669f509f772dd883ca5 (diff)
[cvp-web] Show some SUT hardware info in 'My Results'
[cvp-web] Show SUT endpoint in web page JIRA: DOVETAIL-541 JIRA: DOVETAIL-547 Show some SUT hardware info that dovetail concern in 'My Results' web page. Show the info of all endpoints get from Dovetail tool in the web page. Change-Id: Ibc465396e17b7c22678e3948fa2f659cbff6f323 Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'cvp/opnfv_testapi/resources/sut_models.py')
-rw-r--r--cvp/opnfv_testapi/resources/sut_models.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/cvp/opnfv_testapi/resources/sut_models.py b/cvp/opnfv_testapi/resources/sut_models.py
new file mode 100644
index 00000000..b4a869b6
--- /dev/null
+++ b/cvp/opnfv_testapi/resources/sut_models.py
@@ -0,0 +1,31 @@
+##############################################################################
+# Copyright (c) 2017
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+from opnfv_testapi.resources import models
+from opnfv_testapi.tornado_swagger import swagger
+
+
+@swagger.model()
+class Sut(models.ModelBase):
+ """
+ """
+ def __init__(self):
+ pass
+
+
+@swagger.model()
+class Suts(models.ModelBase):
+ """
+ @property suts:
+ @ptype tests: C{list} of L{Sut}
+ """
+ def __init__(self):
+ self.suts = list()
+
+ @staticmethod
+ def attr_parser():
+ return {'suts': Sut}