summaryrefslogtreecommitdiffstats
path: root/utils/test/result_collection_api/resources/models.py
blob: bb4cb0cf1289db6960444833d8599d77cda9e734 (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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
##############################################################################
# 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
##############################################################################


class Pod:
    """ describes a POD platform """
    def __init__(self):
        self._id = ""
        self.name = ""
        self.creation_date = ""

    @staticmethod
    def pod_from_dict(pod_dict):
        if pod_dict is None:
            return None

        p = Pod()
        p._id = pod_dict.get('_id')
        p.creation_date = pod_dict.get('creation_date')
        p.name = pod_dict.get('name')
        return p

    def format(self):
        return {
            "_id": self._id,
            "name": self.name,
            "creation_date": str(self.creation_date),
        }


class TestProject:
    """ Describes a test project"""

    def __init__(self):
        self._id = None
        self.name = None
        self.description = None
        self.creation_date = None

    @staticmethod
    def testproject_from_dict(testproject_dict):

        if testproject_dict is None:
            return None

        t = TestProject()
        t._id = testproject_dict.get('_id')
        t.creation_date = testproject_dict.get('creation_date')
        t.name = testproject_dict.get('name')
        t.description = testproject_dict.get('description')

        return t

    def format(self):
        return {
            "name": self.name,
            "description": self.description,
            "creation_date": str(self.creation_date)
        }

    def format_http(self, test_cases=0):
        return {
            "_id": str(self._id),
            "name": self.name,
            "description": self.description,
            "creation_date": str(self.creation_date),
            "test_cases": test_cases
        }


class TestCase:
    """ Describes a test case"""

    def __init__(self):
        self._id = None
        self.name = None
        self.project_name = None
        self.description = None
        self.creation_date = None

    @staticmethod
    def test_case_from_dict(testcase_dict):

        if testcase_dict is None:
            return None

        t = TestCase()
        t._id = testcase_dict.get('_id')
        t.project_name = testcase_dict.get('project_name')
        t.creation_date = testcase_dict.get('creation_date')
        t.name = testcase_dict.get('name')
        t.description = testcase_dict.get('description')

        return t

    def format(self):
        return {
            "name": self.name,
            "description": self.description,
            "project_name": self.project_name,
            "creation_date": str(self.creation_date)
        }

    def format_http(self, test_project=None):
        res = {
            "_id": str(self._id),
            "name": self.name,
            "description": self.description,
            "creation_date": str(self.creation_date),
        }
        if not (test_project is None):
            res["test_project"] = test_project

        return res


class TestResult:
    """ Describes a test result"""

    def __init__(self):
        self._id = None
        self.case_name = None
        self.project_name = None
        self.pod_id = None
        self.description = None
        self.creation_date = None
        self.details = 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.project_name = test_result_dict.get('project_name')
        t.pod_id = test_result_dict.get('pod_id')
        t.description = test_result_dict.get('description')
        t.creation_date = str(test_result_dict.get('creation_date'))
        t.details = test_result_dict.get('details')

        return t

    def format(self):
        return {
            "case_name": self.case_name,
            "project_name": self.project_name,
            "pod_id": self.pod_id,
            "description": self.description,
            "creation_date": self.creation_date,
            "details": self.details,
        }

    def format_http(self):
        return {
            "_id": str(self._id),
            "case_name": self.case_name,
            "project_name": self.project_name,
            "pod_id": self.pod_id,
            "description": self.description,
            "creation_date": self.creation_date,
            "details": self.details,
        }