blob: e79308b53097f468e69d4f28cb029eef3bc98ab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
##############################################################################
# Copyright (c) 2015 Orange
# guyrodrigue.koffi@orange.com / koffirodrigue@gmail.com
# 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
# feng.xiaowei@zte.com.cn mv Pod to pod_models.py 5-18-2016
# feng.xiaowei@zte.com.cn add MetaCreateResponse/MetaGetResponse 5-18-2016
# feng.xiaowei@zte.com.cn mv TestProject to project_models.py 5-19-2016
# feng.xiaowei@zte.com.cn delete meta class 5-19-2016
# feng.xiaowei@zte.com.cn add CreateResponse 5-19-2016
# feng.xiaowei@zte.com.cn mv TestCase to testcase_models.py 5-20-2016
# feng.xiaowei@zte.com.cn mv TestResut to result_models.py 5-23-2016
##############################################################################
from opnfv_testapi.tornado_swagger import swagger
@swagger.model()
class CreateResponse(object):
def __init__(self, href=''):
self.href = href
@staticmethod
def from_dict(res_dict):
if res_dict is None:
return None
res = CreateResponse()
res.href = res_dict.get('href')
return res
def format(self):
return {'href': self.href}
@swagger.model()
class Versions(object):
"""
@property versions:
@ptype versions: C{list} of L{Version}
"""
def __init__(self):
self.versions = list()
@staticmethod
def from_dict(res_dict):
if res_dict is None:
return None
res = Versions()
for version in res_dict.get('versions'):
res.versions.append(Version.from_dict(version))
return res
@swagger.model()
class Version(object):
def __init__(self, version=None, description=None):
self.version = version
self.description = description
@staticmethod
def from_dict(a_dict):
if a_dict is None:
return None
ver = Version()
ver.version = a_dict.get('version')
ver.description = str(a_dict.get('description'))
return ver
|