summaryrefslogtreecommitdiffstats
path: root/django/engagementmanager/tests/test_audit_log_and_decision_api.py
blob: 42395aec2450c8b72145bb44a8bb183badc7b4a8 (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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
#  
# ============LICENSE_START========================================== 
# org.onap.vvp/engagementmgr
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
# ===================================================================
#
# Unless otherwise specified, all software contained herein is licensed
# under the Apache License, Version 2.0 (the “License”);
# you may not use this software except in compliance with the License.
# You may obtain a copy of the License at
#
#             http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
#
# Unless otherwise specified, all documentation contained herein is licensed
# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
# you may not use this documentation except in compliance with the License.
# You may obtain a copy of the License at
#
#             https://creativecommons.org/licenses/by/4.0/
#
# Unless required by applicable law or agreed to in writing, documentation
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ============LICENSE_END============================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
import json
from uuid import uuid4
from rest_framework.status import HTTP_200_OK, HTTP_400_BAD_REQUEST,\
    HTTP_401_UNAUTHORIZED, HTTP_500_INTERNAL_SERVER_ERROR,\
    HTTP_405_METHOD_NOT_ALLOWED
from engagementmanager.models import Vendor, Checklist, ChecklistAuditLog, ChecklistDecision, ChecklistLineItem, ChecklistSection
from engagementmanager.tests.test_base_entity import TestBaseEntity
from engagementmanager.utils.constants import CheckListLineType, CheckListDecisionValue, CheckListState, Constants
from engagementmanager.service.logging_service import LoggingServiceFactory

logger = LoggingServiceFactory.get_logger()


class AuditLogAndDecisionAPITest(TestBaseEntity):

    def childSetup(self):

        self.createVendors([Constants.service_provider_company_name, 'Amdocs', 'Other'])
        self.createDefaultRoles()

        # Create a user with role el
        self.el_user = self.creator.createUser(Vendor.objects.get(
            name=Constants.service_provider_company_name), self.randomGenerator("main-vendor-email"), '12323245435', 'el user', self.el, True)
        self.peer_reviewer = self.creator.createUser(Vendor.objects.get(
            name='Other'), self.randomGenerator("main-vendor-email"),
            '55501000199', 'peer-reviewer user', self.el, True)
        # For negative tests
        self.user = self.creator.createUser(
            Vendor.objects.get(name=Constants.service_provider_company_name),
            self.randomGenerator("main-vendor-email"), '12323245435', 'user', self.standard_user, True)

        self.template = self.creator.createDefaultCheckListTemplate()
        self.engagement = self.creator.createEngagement(
            uuid4(), 'Validation', None)
        self.engagement.reviewer = self.el_user
        self.engagement.peer_reviewer = self.peer_reviewer
        self.engagement.save()
        self.engagement.engagement_team.add(self.el_user, self.user)
        self.clbodydata = dict()
        self.initCLBody()
        self.auditdata = dict()
        self.checklist = Checklist.objects.create(uuid=uuid4(), name=self.clbodydata['checkListName'], validation_cycle=1, associated_files=self.clbodydata[
                                                  'checkListAssociatedFiles'], engagement=self.engagement, template=self.template, creator=self.el_user, owner=self.el_user)
        self.section = ChecklistSection.objects.create(uuid=uuid4(), name=self.randomGenerator("randomString"), weight=1.0, description=self.randomGenerator(
            "randomString"), validation_instructions=self.randomGenerator("randomString"), template=self.template)
        self.line_item = ChecklistLineItem.objects.create(uuid=uuid4(), name=self.randomGenerator("randomString"), weight=1.0, description=self.randomGenerator(
            "randomString"), line_type=CheckListLineType.auto.name, validation_instructions=self.randomGenerator("randomString"), template=self.template, section=self.section)  # @UndefinedVariable
        self.decision = ChecklistDecision.objects.create(
            uuid=uuid4(), checklist=self.checklist, template=self.template, lineitem=self.line_item)
        self.section.save()
        self.line_item.save()
        self.decision.save()
        self.checklist.save()
        self.token = self.loginAndCreateSessionToken(self.user)
        self.ELtoken = self.loginAndCreateSessionToken(self.el_user)

    def initCLBody(self):
        self.clbodydata['checkListName'] = "ice-checklist-for-test"
        self.clbodydata['checkListTemplateUuid'] = str(self.template.uuid)
        self.clbodydata[
            'checkListAssociatedFiles'] = "[\"file0/f69f4ce7-51d5-409c-9d0e-ec6b1e79df28\", \"file1/f69f4ce7-51d5-409c-9d0e-ec6b1e79df28\", \"file2/f69f4ce7-51d5-409c-9d0e-ec6b1e79df28\"]"

    def loggerTestFailedOrSucceded(self, bool):
        if bool:
            logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
            logger.debug(" Test Succeeded")
            logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")
        else:
            logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
            logger.debug("Test failed")
            logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

    def testCreateAuditLogViaChecklistPositive(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(" Test started: Create AuditLog Via Checklist")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/@cl_uuid/auditlog/"

        logger.debug("Creating a checklist")
        self.auditdata['description'] = "description text"
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.post(self.urlStr.replace("@cl_uuid", str(self.checklist.uuid)), datajson,
                               content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_200_OK))

        check = True
        try:
            ChecklistAuditLog.objects.get(checklist=self.checklist)
        except ChecklistAuditLog.DoesNotExist:
            check = False

        if (response.status_code == HTTP_200_OK and check):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_200_OK)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_200_OK)

    def testCreateAuditLogViaChecklistNegativeEmptyDescription(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(
            " Negative Test started: Create AuditLog Via Checklist with empty description")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/@cl_uuid/auditlog/"

        logger.debug("Creating a checklist")

        self.auditdata['description'] = ""
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.post(self.urlStr.replace("@cl_uuid", str(self.checklist.uuid)), datajson,
                               content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_400_BAD_REQUEST))

        if (response.status_code == HTTP_400_BAD_REQUEST):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)

    def testCreateAuditLogViaChecklistNegativeBadCLUuid(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(
            " Negative Test started: Create AuditLog Via Checklist with bad CL uuid")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/@cl_uuid/auditlog/"

        logger.debug("Creating a checklist")

        self.auditdata['description'] = "description text"
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.post(self.urlStr.replace("@cl_uuid", str(uuid4())),
                               datajson, content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.token})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_500_INTERNAL_SERVER_ERROR))

        if (response.status_code == HTTP_500_INTERNAL_SERVER_ERROR):
            self.loggerTestFailedOrSucceded(True)
        else:
            self.loggerTestFailedOrSucceded(False)

        self.assertEqual(response.status_code, HTTP_500_INTERNAL_SERVER_ERROR)

    def testCreateAuditLogViaDecisionPositive(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(" Test started: Create AuditLog Via Decision")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/decision/@decision_uuid/auditlog/"

        logger.debug("Creating a checklist")

        self.auditdata['description'] = "description text"
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.post(self.urlStr.replace("@decision_uuid", str(self.decision.uuid)), datajson,
                               content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_200_OK))

        check = ChecklistAuditLog.objects.get(decision=self.decision)
        if (response.status_code == HTTP_200_OK and check):
            self.loggerTestFailedOrSucceded(True)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_200_OK)

    def testCreateAuditLogViaDecisionNegativeEmptyDescription(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(
            " Negative Test started: Create AuditLog Via Decision with empty description")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/decision/@decision_uuid/auditlog/"

        logger.debug("Creating a checklist")

        self.auditdata['description'] = ""
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.post(self.urlStr.replace("@decision_uuid", str(self.decision.uuid)), datajson,
                               content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_400_BAD_REQUEST))

        if (response.status_code == HTTP_400_BAD_REQUEST):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)

    def testCreateAuditLogViaDecisionNegativeBadCLUuid(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(
            " Negative Test started: Create AuditLog Via Decision with bad Decision uuid")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/decision/@decision_uuid/auditlog/"

        logger.debug("Creating a checklist")

        self.auditdata['description'] = "description text"
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.post(self.urlStr.replace("@decision_uuid", str(uuid4())), datajson,
                               content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_400_BAD_REQUEST))

        if (response.status_code == HTTP_400_BAD_REQUEST):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_401_UNAUTHORIZED)

    def testSetDecisionPositive(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(" Test started: Set decision's value to approved")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/decision/@decision_uuid"

        logger.debug("Creating a checklist")

        self.checklist.state = CheckListState.review.name  # @UndefinedVariable
        self.checklist.owner = self.el_user
        self.checklist.save()
        # @UndefinedVariable
        self.auditdata['value'] = CheckListDecisionValue.approved.name
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.put(self.urlStr.replace("@decision_uuid", str(self.decision.uuid)), datajson,
                              content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_200_OK))

        check = ChecklistDecision.objects.get(checklist=self.checklist)
        if (response.status_code == HTTP_200_OK and check.review_value == 'approved'):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_200_OK)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_200_OK)

    def testSetDecisionNegativeOwnerDifferentThanUser(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug(" Negative Test started: Owner Different Than User")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/decision/@decision_uuid"

        logger.debug("Creating a checklist")

        self.checklist.state = CheckListState.review.name  # @UndefinedVariable
        self.checklist.owner = self.user
        self.checklist.save()
        # @UndefinedVariable
        self.auditdata['value'] = CheckListDecisionValue.approved.name
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.put(self.urlStr.replace("@decision_uuid", str(self.decision.uuid)), datajson,
                              content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_401_UNAUTHORIZED))

        if (response.status_code == HTTP_401_UNAUTHORIZED):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_401_UNAUTHORIZED)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_401_UNAUTHORIZED)

    def testSetDecisionNegativeInvalidDecisionValue(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug("Negative Test started: Invalid Decision Value")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/decision/@decision_uuid"

        logger.debug("Creating a checklist")

        self.checklist.state = CheckListState.review.name  # @UndefinedVariable
        self.checklist.owner = self.el_user
        self.checklist.save()
        self.auditdata['value'] = self.randomGenerator("randomString")
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.put(self.urlStr.replace("@decision_uuid", str(self.decision.uuid)), datajson,
                              content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_400_BAD_REQUEST))

        if (response.status_code == HTTP_400_BAD_REQUEST):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)

    def testSetDecisionNegativeInvalidChecklistState(self):
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$")
        logger.debug("Negative Test started: Invalid checklist state")
        logger.debug("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$\n\n")

        self.urlStr = self.urlPrefix + "checklist/decision/@decision_uuid"

        logger.debug("Creating a checklist")

        self.checklist.state = self.randomGenerator(
            "randomString")  # @UndefinedVariable
        self.checklist.owner = self.el_user
        self.checklist.save()
        # @UndefinedVariable
        self.auditdata['value'] = CheckListDecisionValue.approved.name
        datajson = json.dumps(self.auditdata, ensure_ascii=False)

        response = self.c.put(self.urlStr.replace("@decision_uuid", str(self.decision.uuid)), datajson,
                              content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        logger.debug('Got response : ' + str(response.status_code) +
                     " Expecting " + str(HTTP_400_BAD_REQUEST))

        if (response.status_code == HTTP_400_BAD_REQUEST):
            self.loggerTestFailedOrSucceded(True)
            self.assertEqual(response.status_code, HTTP_400_BAD_REQUEST)
        else:
            self.loggerTestFailedOrSucceded(False)
            self.assertEqual(response.status_code, HTTP_405_METHOD_NOT_ALLOWED)