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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
##############################################################################
# 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
##############################################################################
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}
class TestResult:
""" Describes a test result"""
def __init__(self):
self._id = None
self.case_name = None
self.project_name = None
self.pod_name = None
self.installer = None
self.version = None
self.description = None
self.creation_date = None
self.details = None
self.build_tag = None
self.scenario = None
self.criteria = None
self.trust_indicator = None
@staticmethod
def test_result_from_dict(test_result_dict):
if test_result_dict is None:
return None
t = TestResult()
t._id = test_result_dict.get('_id')
t.case_name = test_result_dict.get('case_name')
t.pod_name = test_result_dict.get('pod_name')
t.project_name = test_result_dict.get('project_name')
t.description = test_result_dict.get('description')
t.creation_date = str(test_result_dict.get('creation_date'))
t.details = test_result_dict.get('details')
t.version = test_result_dict.get('version')
t.installer = test_result_dict.get('installer')
t.build_tag = test_result_dict.get('build_tag')
t.scenario = test_result_dict.get('scenario')
t.criteria = test_result_dict.get('criteria')
# 0 < trust indicator < 1
# if bad value => set this indicator to 0
if test_result_dict.get('trust_indicator') is not None:
if isinstance(test_result_dict.get('trust_indicator'),
(int, long, float)):
if test_result_dict.get('trust_indicator') < 0:
t.trust_indicator = 0
elif test_result_dict.get('trust_indicator') > 1:
t.trust_indicator = 1
else:
t.trust_indicator = test_result_dict.get('trust_indicator')
else:
t.trust_indicator = 0
else:
t.trust_indicator = 0
return t
def format(self):
return {
"case_name": self.case_name,
"project_name": self.project_name,
"pod_name": self.pod_name,
"description": self.description,
"creation_date": str(self.creation_date),
"version": self.version,
"installer": self.installer,
"details": self.details,
"build_tag": self.build_tag,
"scenario": self.scenario,
"criteria": self.criteria,
"trust_indicator": self.trust_indicator
}
def format_http(self):
return {
"_id": str(self._id),
"case_name": self.case_name,
"project_name": self.project_name,
"pod_name": self.pod_name,
"description": self.description,
"creation_date": str(self.creation_date),
"version": self.version,
"installer": self.installer,
"details": self.details,
"build_tag": self.build_tag,
"scenario": self.scenario,
"criteria": self.criteria,
"trust_indicator": self.trust_indicator
}
|