-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReportTFS.py
More file actions
578 lines (533 loc) · 31.7 KB
/
Copy pathReportTFS.py
File metadata and controls
578 lines (533 loc) · 31.7 KB
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
import requests
from requests_ntlm import HttpNtlmAuth
import base64
import os
#-------------------------------------------------------------------------------------------
# A convenience class provides methods to set fields values of TFS item and method to
# report TFS item
#
# bsiclass Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
class TFS:
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def __init__(self):
self.dict_field={}
self.list_field=[]
self.dict_field['op']="add"
self.dict_field['path']="/fields/System.AreaPath"
self.dict_field['value']="Platform Technology\DgnDb Platform (2249)\iModel Tools"
self.check_attribute_exists("/fields/Target Release")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Target Release"
self.dict_field['value']="DgnClientSdk"
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# Use this method when want to report tfs using account credentials
# bsimethod Ridha.Malik 12/2017
#-------------------------------------------------------------------------------------------
def set_credentials(self,username,password):
self.username=username
self.password=password
#-------------------------------------------------------------------------------------------
# Get account username
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_username(self):
return self.username
#-------------------------------------------------------------------------------------------
# Get account password
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_password(self):
return self.password
#-------------------------------------------------------------------------------------------
# Use this method when want to report tfs using personal access token
# bsimethod Ridha.Malik 12/2017
#-------------------------------------------------------------------------------------------
def set_accesstoken(self,accesstoken):
accesstoken=":"+accesstoken
self.accesstoken=base64.b64encode(accesstoken.encode('utf-8'))
#-------------------------------------------------------------------------------------------
# get accesstoken
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_accesstoken(self):
return self.accesstoken
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_title(self,title):
self.check_attribute_exists("/fields/System.Title")
self.dict_field['op']="add"
self.dict_field['path']="/fields/System.Title"
self.dict_field['value']=title
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get title
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_title(self):
value=self.getvaluefromlist("/fields/System.Title")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_areapath(self,areapath):
self.check_attribute_exists("/fields/System.AreaPath")
self.dict_field['op']="add"
self.dict_field['path']="/fields/System.AreaPath"
self.dict_field['value']=areapath
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get area path
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_areapath(self):
value=self.getvaluefromlist("/fields/System.AreaPath")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_iterationpath(self,iterationpath):
self.check_attribute_exists("/fields/System.IterationPath")
self.dict_field['op']="add"
self.dict_field['path']="/fields/System.IterationPath"
self.dict_field['value']=iterationpath
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get iterationpath
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_iterationpath(self):
value=self.getvaluefromlist("/fields/System.IterationPath")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_foundin(self,foundin):
self.check_attribute_exists("/fields/Found In")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Found In"
self.dict_field['value']=foundin
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get foundin
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_foundin(self):
value=self.getvaluefromlist("/fields/Found In")
return value
#-------------------------------------------------------------------------------------------
# Provide requestor name is sperated by space e.g Ridha Malik insted of Ridha.Malik
#
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_requestor(self,requestor):
self.check_attribute_exists("/fields/Requestor")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Requestor"
self.dict_field['value']=requestor
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get requestor
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_requestor(self):
value=self.getvaluefromlist("/fields/Requestor")
return value
#-------------------------------------------------------------------------------------------
# Provide approver name is sperated by space e.g Ridha Malik insted of Ridha.Malik
#
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_approver(self,approver):
self.check_attribute_exists("/fields/Approver")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Approver"
self.dict_field['value']=approver
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get approver
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_approver(self):
value=self.getvaluefromlist("/fields/Approver")
return value
#-------------------------------------------------------------------------------------------
# Provide developer name is sperated by space e.g Ridha Malik insted of Ridha.Malik
#
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_developer(self,developer):
self.check_attribute_exists("/fields/Developer")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Developer"
self.dict_field['value']=developer
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get developer
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_developer(self):
value=self.getvaluefromlist("/fields/Developer")
return value
#-------------------------------------------------------------------------------------------
# Provide tester name is sperated by space e.g Ridha Malik insted of Ridha.Malik
#
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_tester(self,tester):
self.check_attribute_exists("/fields/Tester")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Tester"
self.dict_field['value']=tester
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get tester
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_tester(self):
value=self.getvaluefromlist("/fields/Tester")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_team(self,team):
self.check_attribute_exists("/fields/Team")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Team"
self.dict_field['value']=team
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get team
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_team(self):
value=self.getvaluefromlist("/fields/Team")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_steps_to_reproduce(self,steps):
self.check_attribute_exists("/fields/Microsoft.VSTS.TCM.ReproSteps")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Microsoft.VSTS.TCM.ReproSteps"
self.dict_field['value']=steps
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get steps to reproduce
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_steps_to_reproduce(self):
value=self.getvaluefromlist("/fields/Microsoft.VSTS.TCM.ReproSteps")
return value
#-------------------------------------------------------------------------------------------
# To set Multiple Tags on TFS item pass tag value comma separated
#
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_tag(self,tag):
self.check_attribute_exists("/fields/Tags")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Tags"
self.dict_field['value']=tag
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get Tag
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_tag(self):
value=self.getvaluefromlist("/fields/Tags")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def set_targetrelease(self,targetrelease):
self.check_attribute_exists("/fields/Target Release")
self.dict_field['op']="add"
self.dict_field['path']="/fields/Target Release"
self.dict_field['value']=targetrelease
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get targetrelease
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_targetrelease(self):
value=self.getvaluefromlist("/fields/Target Release")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 05/2018
#-------------------------------------------------------------------------------------------
def set_history(self,history):
self.dict_field['op']="add"
self.dict_field['path']="/fields/System.History"
self.dict_field['value']=history
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get history
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_history(self):
value=self.getvaluefromlist("/fields/System.History")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 05/2018
#-------------------------------------------------------------------------------------------
def set_hyperlink(self,hyperlink):
self.checkvalue_exits_inrelations("Hyperlink")
self.dict_field['op']="add"
self.dict_field['path']="/relations/-"
value={}
value["rel"]="Hyperlink"
value["url"]=str(hyperlink)
self.dict_field['value']=value
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get hyperlink
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_hyperlink(self):
value=self.getvaluefromrelations("Hyperlink")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 05/2018
#-------------------------------------------------------------------------------------------
def set_link(self,link):
self.checkvalue_exits_inrelations("/relations/-")
self.dict_field['op']="add"
self.dict_field['path']="/relations/-"
value={}
value["rel"]="System.LinkTypes.Dependency-forward"
value["url"]=str(link)
self.dict_field['value']=value
self.list_field.append(self.dict_field.copy())
#-------------------------------------------------------------------------------------------
# get link
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def get_link(self):
value=self.getvaluefromrelations("System.LinkTypes.Dependency-forward")
return value
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 12/2017
#-------------------------------------------------------------------------------------------
def checkcredentials(self):
if not ((hasattr(self,"username") and hasattr(self,"password"))or hasattr(self,"accesstoken")):
print "set username and password or personal access token these are compulsory for file tfs item "
return False
return True
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 12/2017
#-------------------------------------------------------------------------------------------
def checkrequiredattributes(self):
if not ((hasattr(self,"username") and hasattr(self,"password"))or hasattr(self,"accesstoken")):
print "set username and password or personal access token these are compulsory for file tfs item "
return False
if not(any( "System.Title" in d['path'] and bool(d['value']) for d in self.list_field) and any( "Found In" in d['path'] and bool(d['value']) for d in self.list_field) and any( "System.AreaPath" in d['path'] and bool(d['value']) for d in self.list_field)):
print "set title, found in and areapath attribute these are compulsory for file tfs item "
return False
return True
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def check_attribute_exists(self,attribute):
i=0
for d in self.list_field:
if (attribute in d['path']):
self.list_field.pop(i)
i=i+1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def getvaluefromlist(self,attribute):
i=0
for d in self.list_field:
if (attribute in d['path']):
return self.list_field[i]['value']
i=i+1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def getvaluefromrelations(self,rel):
i=0
for d in self.list_field:
if ("/relations/-" in d['path'] and d['value']['rel']==rel):
return self.list_field[i]['value']
i=i+1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def checkvalue_exits_inrelations(self,rel):
i=0
for d in self.list_field:
if ("/relations/-" in d['path'] and d['value']['rel']==rel):
self.list_field.pop(i)
i=i+1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 11/2017
#-------------------------------------------------------------------------------------------
def report_tfsitem(self):
status=self.checkrequiredattributes()
if status:
self.checkvalue_exits_inrelations("AttachedFile")
tfsApi = 'http://tfs.bentley.com:8080/tfs/ProductLine/Platform%20Technology/_apis/wit/workitems/$Defect?api-version=1.0'
if hasattr(self,"username") and hasattr(self,"password"):
headers = {'Content-Type': 'application/json-patch+json'}
tfsResponse = requests.patch(tfsApi,auth=HttpNtlmAuth(self.username,self.password),json=self.list_field,headers=headers)
elif hasattr(self,"accesstoken"):
print self.list_field
headers = {'Content-Type': 'application/json-patch+json',
'Authorization': 'Basic '+self.accesstoken
}
tfsResponse = requests.patch(tfsApi,json=self.list_field,headers=headers)
else :
print "Set required parameters"
return -1
if(tfsResponse.ok):
tfsResponse = tfsResponse.json()
print "### Tfs id",tfsResponse.get('id')
return tfsResponse.get("id")
else:
print "Fail to report tfs status code:",tfsResponse.status_code
return -1
else:
print "Fail to report tfs"
return -1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 05/2018
#-------------------------------------------------------------------------------------------
def UploadAttachment(self,filename,uploadedfilemane):
status=self.checkcredentials()
if status:
if os.path.exists(filename):
uploadapi ='http://tfs.bentley.com:8080/tfs/ProductLine/_apis/wit/attachments?fileName='+uploadfilemane+'&api-version=1.0'
print uploadapi
if hasattr(self,"username") and hasattr(self,"password"):
headers = {'Content-Type': 'application/json'}
auth="ntlm"
else:
headers = {'Content-Type': 'application/json',
'Authorization': 'Basic '+self.accesstoken
}
auth="accesstoken"
if filename.endswith(".7z")or filename.endswith(".zip"):
fileobj = open(filename, 'rb')
if auth=="ntlm":
tfsResponse = requests.post(uploadapi,auth=HttpNtlmAuth(self.username,self.password),headers=headers,data={"mysubmit":"Go"},files={"archive": (filename, fileobj)})
else:
tfsResponse = requests.post(uploadapi,headers=headers,data={"mysubmit":"Go"},files={"archive": (filename, fileobj)})
else:
data = open(filename, 'rb').read()
if auth=="ntlm":
tfsResponse = requests.post(uploadapi,auth=HttpNtlmAuth(self.username,self.password),data=data,headers=headers)
else:
tfsResponse = requests.post(uploadapi,data=data,headers=headers)
if(tfsResponse.ok):
tfsResponse = tfsResponse.json()
return tfsResponse.get("url")
else:
print "Fail to upload attachment on tfs status code:",tfsResponse.status_code
return -1
else:
print "Filepath is not exists"
return -1
else:
return -1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 05/2018
#-------------------------------------------------------------------------------------------
def GetWorkItem(self,workitemno):
status=self.checkcredentials()
if status:
tfsapi ='http://tfs.bentley.com:8080/tfs/ProductLine/_apis/wit/workitems/'+str(workitemno)+"?api-version=1.0"
if hasattr(self,"username") and hasattr(self,"password"):
tfsResponse = requests.get(tfsapi,auth=HttpNtlmAuth(self.username,self.password))
else:
headers = {'Authorization': 'Basic '+self.accesstoken}
tfsResponse = requests.get(tfsapi,headers=headers)
if(tfsResponse.ok):
tfsResponse = tfsResponse.json()
return tfsResponse
else:
print "Fail to get workitem from tfs and its status code:",tfsResponse.status_code
return -1
else:
return -1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 05/2018
#-------------------------------------------------------------------------------------------
def AddAttachmentToWorkItem(self,attachmenturl,workitemno):
status=self.checkcredentials()
result=self.checkvalue_exits_inrelations("AttachedFile")
self.dict_field['op']="add"
self.dict_field['path']="/relations/-"
value={}
value["rel"]="AttachedFile"
value["url"]=str(attachmenturl)
self.dict_field['value']=value
self.list_field.append(self.dict_field.copy())
if status:
uploadapi ="http://tfs.bentley.com:8080/tfs/ProductLine/_apis/wit/workitems/"+str(workitemno)+"?api-version=1.0"
print uploadapi
if hasattr(self,"username") and hasattr(self,"password"):
headers = {'Content-Type':'application/json-patch+json'}
tfsResponse = requests.patch(uploadapi,auth=HttpNtlmAuth(self.username,self.password),json=self.list_field,headers=headers)
else :
headers = {'Content-Type': 'application/json-patch+json',
'Authorization': 'Basic '+self.accesstoken
}
tfsResponse = requests.patch(uploadapi,json=self.list_field,headers=headers)
if(tfsResponse.ok):
tfsResponse = tfsResponse.json()
return tfsResponse.get("id")
else:
print "Fail to report tfs status code:",tfsResponse.status_code
return -1
else:
return -1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 05/2018
#-------------------------------------------------------------------------------------------
def UpdateWorkItem(self,workitemno):
status=self.checkcredentials()
if status:
uploadapi ="http://tfs.bentley.com:8080/tfs/ProductLine/_apis/wit/workitems/"+str(workitemno)+"?api-version=1.0"
print uploadapi
if hasattr(self,"username") and hasattr(self,"password"):
headers = {'Content-Type':'application/json-patch+json'}
tfsResponse = requests.patch(uploadapi,auth=HttpNtlmAuth(self.username,self.password),json=self.list_field,headers=headers)
else :
headers = {'Content-Type': 'application/json-patch+json',
'Authorization': 'Basic '+self.accesstoken
}
tfsResponse = requests.patch(uploadapi,json=self.list_field,headers=headers)
if(tfsResponse.ok):
tfsResponse = tfsResponse.json()
return tfsResponse.get("id")
else:
print "Fail to report tfs status code:",tfsResponse.status_code
return -1
else:
return -1
#-------------------------------------------------------------------------------------------
# bsimethod Ridha.Malik 06/2018
#-------------------------------------------------------------------------------------------
def GetWorkItemStatus(self,workitemno):
status=self.checkcredentials()
if status:
tfsapi ='http://tfs.bentley.com:8080/tfs/ProductLine/_apis/wit/workitems/'+str(workitemno)+"?fields=System.State&api-version=1.0"
if hasattr(self,"username") and hasattr(self,"password"):
tfsResponse = requests.get(tfsapi,auth=HttpNtlmAuth(self.username,self.password))
else:
headers = {'Authorization': 'Basic '+self.accesstoken}
tfsResponse = requests.get(tfsapi,headers=headers)
if(tfsResponse.ok):
tfsResponse = tfsResponse.json()
return tfsResponse['fields']['System.State']
else:
print "Fail to get workitem status from tfs and its status code:",tfsResponse.status_code
return -1
else:
return -1