summaryrefslogtreecommitdiffstats
path: root/django/engagementmanager/tests/test_next_steps_api.py
blob: b0be4685954ce788580d98c5a526f619b3a04a86 (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
#  
# ============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 import status
from rest_framework.status import HTTP_403_FORBIDDEN, HTTP_200_OK, \
    HTTP_204_NO_CONTENT

from engagementmanager.models import Vendor, NextStep
from engagementmanager.service.nextstep_service import NextStepSvc
from engagementmanager.tests.test_base_entity import TestBaseEntity
from engagementmanager.utils.constants import Constants


class TestNextStepsAPI(TestBaseEntity):

    def childSetup(self):
        self.createVendors([Constants.service_provider_company_name, '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"),
            '55501000199', 'el user', self.el, True)
        print('-----------------------------------------------------')
        print('Created User:')
        print('UUID: ' + str(self.el_user.uuid))
        print('Full Name: ' + self.el_user.full_name)
        print('-----------------------------------------------------')

        # Create a user with role standard_user
        self.user = self.creator.createUser(Vendor.objects.get(
            name='Other'), self.randomGenerator("main-vendor-email"),
            '55501000199', 'user', self.standard_user, True)
        print('-----------------------------------------------------')
        print('Created User:')
        print('UUID: ' + str(self.user.uuid))
        print('Full Name: ' + self.user.full_name)
        print('-----------------------------------------------------')

        # Create a user with role standard_user
        self.pruser = self.creator.createUser(Vendor.objects.get(
            name='Other'), self.randomGenerator("main-vendor-email"),
            '55501000199', 'peer-reviewer user', self.el, True)
        print('-----------------------------------------------------')
        print('Created User:')
        print('UUID: ' + str(self.pruser.uuid))
        print('Full Name: ' + self.pruser.full_name)
        print('-----------------------------------------------------')

        # Create a user with role standard_user with SSH key
        self.user_with_ssh = self.creator.createUser(Vendor.objects.get(
            name='Other'), self.randomGenerator("main-vendor-email"),
            '55501000199', 'ssh user', self.standard_user, True, 'just-a-fake-ssh-key')
        print('-----------------------------------------------------')
        print('Created User:')
        print('UUID: ' + str(self.user_with_ssh.uuid))
        print('Full Name: ' + self.user_with_ssh.full_name)
        print('-----------------------------------------------------')

        # Create an Engagement with team
        self.engagement = self.creator.createEngagement('just-a-fake-uuid', 'Validation', None)
        self.engagement.reviewer = self.el_user
        self.engagement.peer_reviewer = self.el_user
        self.engagement.engagement_team.add(self.user, self.el_user)
        self.engagement.save()
        print('-----------------------------------------------------')
        print('Created Engagement:')
        print('UUID: ' + str(self.engagement.uuid))
        print('-----------------------------------------------------')

        # Create another Engagement with team with SSH Key
        self.engagement_ssh = self.creator.createEngagement('just-another-fake-uuid', 'Validation', None)
        self.engagement_ssh.engagement_team.add(self.user_with_ssh, self.el_user)
        self.engagement_ssh.peer_reviewer = self.pruser
        self.engagement_ssh.save()

        print('-----------------------------------------------------')
        print('Created Engagement:')
        print('UUID: ' + str(self.engagement_ssh.uuid))
        print('-----------------------------------------------------')

        # Create another Engagement with Main Contact
        self.engagement_with_contact = self.creator.createEngagement('yet-just-another-fake-uuid', 'Validation', None)
        self.engagement_with_contact.engagement_team.add(self.user, self.el_user)
        self.engagement_with_contact.contact_user = self.user
        self.engagement_with_contact.peer_reviewer = self.pruser
        self.engagement_with_contact.save()

        print('-----------------------------------------------------')
        print('Created Engagement:')
        print('UUID: ' + str(self.engagement_with_contact.uuid))
        print('-----------------------------------------------------')

        # Create another Engagement with Main Contact
        self.engagement_4_createNS = self.creator.createEngagement('yet-just-another-fake-uuid2', 'Validation', None)
        self.engagement_4_createNS.reviewer = self.el_user
        self.engagement_4_createNS.peer_reviewer = self.el_user
        self.engagement_4_createNS.engagement_team.add(self.user_with_ssh, self.el_user)
        self.engagement_4_createNS.contact_user = self.user_with_ssh
        self.engagement_4_createNS.save()

        # Create engagement for order
        self.engagement_4_order = self.creator.createEngagement('yet-just-another-fake-uuid3', 'Validation', None)
        self.engagement_4_order.reviewer = self.el_user
        self.engagement_4_order.peer_reviewer = self.el_user
        self.engagement_4_order.engagement_team.add(self.user_with_ssh, self.el_user)
        self.engagement_4_order.contact_user = self.user_with_ssh
        self.engagement_4_order.save()

        self.deploymentTarget = self.creator.createDeploymentTarget(
            self.randomGenerator("randomString"), self.randomGenerator("randomString"))
        self.vendor = Vendor.objects.get(name='Other')
        self.vf = self.creator.createVF(self.randomGenerator("randomString"),
                                        self.engagement_4_createNS, self.deploymentTarget, False, self.vendor)

        print('-----------------------------------------------------')
        print('Created Engagement:')
        print('UUID: ' + str(self.engagement_4_createNS.uuid))
        print('-----------------------------------------------------')

        self.token = self.loginAndCreateSessionToken(self.user)
        self.sshtoken = self.loginAndCreateSessionToken(self.user_with_ssh)
        self.ELtoken = self.loginAndCreateSessionToken(self.el_user)

    def testCreateDefaultNextStepsAndSetNextStepsState(self):
        urlStr = self.urlPrefix + 'engagements/${uuid}/nextsteps/Intake'
        NextStepSvc().create_default_next_steps(self.user, self.engagement, self.el_user)
        NextStepSvc().create_default_next_steps_for_user(self.user, self.el_user)
        num_of_steps = 3

        response = self.c.get(urlStr.replace('${uuid}', str(self.engagement.uuid)),
                              **{'HTTP_AUTHORIZATION': "token " + self.token})
        print('Got response : ' + str(response.status_code))
        print("DATA After JSON Parse:" + str(response.content))

#         content = response.content

        print('Test that GET nextsteps was successful')
        self.assertEqual(response.status_code, HTTP_200_OK)

        print('Test that GET nextsteps in Intake state returns 3 items ')
        self.assertEqual(len(response.json()), num_of_steps)

        print('Test First item state is Incomplete: ' + response.json()[0]['state'])
        self.assertEqual(response.json()[0]['state'], 'Incomplete')

        step_uuid = response.json()[0]['uuid']
        urlStr = self.urlPrefix + 'nextsteps/' + step_uuid + '/state'

        print('attempt change state of next step Incomplete->COMPLETED by standard_user. This should succeed...')
        response = self.c.put(urlStr, '{ "state" : "Completed" }',
                              content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        print('Got response : ' + str(response.status_code))
        self.assertEqual(response.status_code, HTTP_200_OK)

        print('Negative: attempt change state of next step COMPLETED->Incomplete by EL. This should success')
        response = self.c.put(urlStr, '{ "state" : "Incomplete" }',
                              content_type='application/json', **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        print('Got response : ' + str(response.status_code))
        self.assertEqual(response.status_code, HTTP_200_OK)

    def testCreateDefaultNextStepsForUserWithSSHKey(self):
        urlStr = self.urlPrefix + 'engagements/${uuid}/nextsteps/Intake'
        NextStepSvc().create_default_next_steps(self.user_with_ssh, self.engagement_ssh, self.el_user)
        # Would not create any next step, due to the reason that the user already has an SSH
        NextStepSvc().create_default_next_steps_for_user(self.user_with_ssh, self.el_user)
        num_of_steps = 2

        response = self.c.get(urlStr.replace('${uuid}', str(self.engagement_ssh.uuid)),
                              **{'HTTP_AUTHORIZATION': "token " + self.token})
        print('Got response : ' + str(response.status_code))
        print("DATA After JSON Parse:" + str(response.content))

        print('Test that GET nextsteps was successful')
        self.assertEqual(response.status_code, HTTP_200_OK)

        print('Test that GET nextsteps in Intake state returns 3 items ')
        self.assertEqual(len(response.json()), num_of_steps)

    def testOrderNextSteps(self):

        nsDict = {}
        nsDict["position"] = 4
        nsDict["creator_uuid"] = str(self.el_user.uuid)
        nsDict[
            "description"] = "Please submit the first version of the VF package. If you have any problems or questions please contact your Engagement Lead (EL)"
        nsDict["state"] = "Incomplete"
        nsDict["engagement_stage"] = "Active"

        myjson = json.dumps([nsDict], ensure_ascii=False)

        create_nextsteps_url = self.urlPrefix + "engagements/" + str(self.engagement_4_order.uuid) + "/nextsteps/"
        response = self.c.post(create_nextsteps_url, myjson, content_type='application/json',
                               **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        response = self.c.post(create_nextsteps_url, myjson, content_type='application/json',
                               **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        response = self.c.post(create_nextsteps_url, myjson, content_type='application/json',
                               **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})

        get_nextsteps_url = self.urlPrefix + 'engagements/${uuid}/nextsteps/Intake'
        response = self.c.get(get_nextsteps_url.replace('${uuid}', str(
            self.engagement_4_order.uuid)), **{'HTTP_AUTHORIZATION': "token " + self.sshtoken})

        decoded_ns = json.loads(response.content)
        myjson = json.dumps(decoded_ns, ensure_ascii=False)
        order_nextsteps_url = self.urlPrefix + 'engagements/' + \
            str(self.engagement_4_order.uuid) + '/nextsteps/order_next_steps/'
        response = self.c.put(order_nextsteps_url, myjson, content_type='application/json',
                              **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})

        response = self.c.get(get_nextsteps_url.replace('${uuid}', str(
            self.engagement_4_order.uuid)), **{'HTTP_AUTHORIZATION': "token " + self.sshtoken})

        decoded_ns = json.loads(response.content)
        counter = 0
        for next_step in decoded_ns:
            self.assertEqual(next_step['position'], counter)
            counter += 1

    def testCreateDefaultNextStepsWhenENGContactExist(self):
        urlStr = self.urlPrefix + 'engagements/${uuid}/nextsteps/Intake'
        NextStepSvc().create_default_next_steps(self.user, self.engagement_with_contact, self.el_user)
        NextStepSvc().create_default_next_steps_for_user(self.user, self.el_user)
        num_of_steps = 2

        response = self.c.get(urlStr.replace('${uuid}', str(
            self.engagement_with_contact.uuid)), **{'HTTP_AUTHORIZATION': "token " + self.token})

        print('Got response : ' + str(response.status_code))
        print("DATA After JSON Parse:" + str(response.content))

        print('Test that GET nextsteps was successful')
        self.assertEqual(response.status_code, HTTP_200_OK)

        print('Test that GET nextsteps in Intake state returns 3 items ')
        self.assertEqual(len(response.json()), num_of_steps)

    def testAddNextStepToEng(self):
        urlStr = self.urlPrefix + "engagements/" + str(self.engagement_4_createNS.uuid) + "/nextsteps/"

        NextStepSvc().create_default_next_steps(self.user_with_ssh, self.engagement_4_createNS, self.el_user)
        # Would not create any next step, due to the reason that the user already has an SSH
        NextStepSvc().create_default_next_steps_for_user(self.user_with_ssh, self.el_user)

        nsDict = {}
        nsDict["position"] = "4"
        nsDict["creator_uuid"] = str(self.el_user.uuid)
        nsDict[
            "description"] = "Please submit the first version of the VF package. If you have any problems or questions please contact your Engagement Lead (EL)"
        nsDict["state"] = "Incomplete"
        nsDict["engagement_stage"] = "Active"

        myjson = json.dumps([nsDict], ensure_ascii=False)
        print(myjson)

        response = self.c.post(urlStr, myjson, content_type='application/json',
                               **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        print('Got response : ' + str(response.status_code))
        print("DATA After JSON Parse:" + str(response.content))

        self.assertEqual(response.status_code, HTTP_200_OK)

    def testDelNextStepToEng(self):
        nsObj = NextStep.objects.create(uuid=uuid4(), creator=self.el_user, position=2, description="testDelNextStepToEng",
                                        state='Incomplete', engagement_stage="Intake", engagement=self.engagement)
        urlStr = self.urlPrefix + "nextsteps/" + str(nsObj.uuid)

        response = self.c.delete(urlStr, **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        print('Got response : ' + str(response.status_code))
        print("DATA After JSON Parse:" + str(response.content))

        self.assertEqual(response.status_code, HTTP_204_NO_CONTENT)

    def testNegativeDelNextStepToEngNoHeader(self):
        nsObj = NextStep.objects.create(uuid=uuid4(), creator=self.el_user, position=2, description="testDelNextStepToEng",
                                        state='Incomplete', engagement_stage="Intake", engagement=self.engagement)
        urlStr = self.urlPrefix + "nextsteps/" + str(nsObj.uuid)

        response = self.c.delete(urlStr)
        print('Negative: Expecting response 403, got: ' + str(response.status_code))
        print("DATA After JSON Parse:" + str(response.content))

        self.assertEqual(response.status_code, HTTP_403_FORBIDDEN)

    def testEditNextSteps(self):
        print(
            '---------------------------------- testEditNextSteps, Expecting 200 ------------------------------------')
        print('---------------------------------- Creating a next step ------------------------------------')
        step = NextStep.objects.create(position="4", creator=self.el_user, engagement=self.engagement,
                                       description="Please submit the first version of the VF package. If you have any problems or questions please contact your Engagement Lead (EL)",
                                       state="TODO", engagement_stage="Active",
                                       uuid=uuid4())
        print('---------------------------------- Editing the next step ------------------------------------')
        urlStr = self.urlPrefix + "nextsteps/" + str(step.uuid)
        body = {}
        files = []
        for i in range(4):
            files.append(self.randomGenerator('randomString'))
        body['files'] = files
        body['duedate'] = "2012-01-03"
        body['description'] = self.randomGenerator('randomString')
        body['assigneesUuids'] = [str(self.user.uuid), str(self.el_user.uuid)]
        myjson = json.dumps(body, ensure_ascii=False)
        print(myjson)
        response = self.c.put(urlStr, myjson, content_type='application/json',
                              **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        print(urlStr)
        print('Got response : ' + str(response.status_code))
        self.assertEqual(response.status_code, status.HTTP_200_OK)

    def testUserNextSteps(self):
        NextStepSvc().create_default_next_steps(self.user_with_ssh, self.engagement_4_createNS, self.el_user)
        # Needs to return 0 elements for regular user which is not the assignee:
        urlStr = self.urlPrefix + 'engagements/user/nextsteps/'
        response = self.c.get(urlStr, **{'HTTP_AUTHORIZATION': "token " + self.sshtoken})
        print('Got response : ' + str(response.status_code))
        self.assertEqual(response.status_code, HTTP_200_OK)

        data = json.loads(response.content)
        self.assertEqual(data["data"], [])
        self.assertEqual(data["count"], 0)

        # Needs to return 3 elements to el user which is the assignee:
        response = self.c.get(urlStr, **{'HTTP_AUTHORIZATION': "token " + self.ELtoken})
        print('Got response : ' + str(response.status_code))
        self.assertEqual(response.status_code, HTTP_200_OK)
        data = json.loads(response.content)
        self.assertEqual(data["count"], 3)