forked from DefectDojo/django-DefectDojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_jira_import_and_pushing_api.py
668 lines (543 loc) · 33.8 KB
/
test_jira_import_and_pushing_api.py
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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
from dojo.models import Finding_Group, User, Finding, JIRA_Instance
from dojo.jira_link import helper as jira_helper
from rest_framework.authtoken.models import Token
from rest_framework.test import APIClient
from .dojo_test_case import DojoVCRAPITestCase, get_unit_tests_path
from crum import impersonate
# from unittest import skip
import logging
from vcr import VCR
logger = logging.getLogger(__name__)
# these tests are using vcrpy to record traffic to and from JIRA: https://vcrpy.readthedocs.io/en/latest/usage.html
# after being recorded, the traffic is used for future runs of the tests
# this allows us to locally develop tests, run them, make them work against a real JIRA instance.
# after that we can commit the tests AND the recordings (cassettes).
# the record_mode is set to 'once' by default. this means it will replay responses from the cassette, if there is a cassette.
# otherwise it will create a new cassette and record responses. on the next run the cassette wil be used.
# if changing tests, you can best remove all cassettes before running the tests.
# or you can temporarily set the record_mode to all the make it always go to the real JIRA and record all the traffic.
# when the tests are finished, you'll have to set the assertCassettePlayed method to make it assert
# that all entries in the cassette have been used by the test.
# if you need some credentials for the Defect Dojo JIRA Cloud instance, contact one of the moderators
# some senstive data is filtered out by the filter_headers config option below
# as well as some custom callback functions to filter out cookies.
# please check the recorded files on sensitive data before committing to git
class JIRAImportAndPushTestApi(DojoVCRAPITestCase):
fixtures = ['dojo_testdata.json']
def __init__(self, *args, **kwargs):
# TODO remove __init__ if it does nothing...
DojoVCRAPITestCase.__init__(self, *args, **kwargs)
def assert_cassette_played(self):
if True: # set to True when committing. set to False when recording new test cassettes
self.assertTrue(self.cassette.all_played)
def _get_vcr(self, **kwargs):
my_vcr = super(JIRAImportAndPushTestApi, self)._get_vcr(**kwargs)
my_vcr.record_mode = 'once'
my_vcr.path_transformer = VCR.ensure_suffix('.yaml')
my_vcr.filter_headers = ['Authorization', 'X-Atlassian-Token']
my_vcr.cassette_library_dir = get_unit_tests_path() + '/vcr/jira/'
# filters headers doesn't seem to work for cookies, so use callbacks to filter cookies from being recorded
my_vcr.before_record_request = self.before_record_request
my_vcr.before_record_response = self.before_record_response
return my_vcr
def setUp(self):
super().setUp()
self.system_settings(enable_jira=True)
self.testuser = User.objects.get(username='admin')
self.testuser.usercontactinfo.block_execution = True
self.testuser.usercontactinfo.save()
token = Token.objects.get(user=self.testuser)
self.client = APIClient()
self.client.credentials(HTTP_AUTHORIZATION='Token ' + token.key)
self.scans_path = '/scans/'
self.zap_sample5_filename = self.scans_path + 'zap/5_zap_sample_one.xml'
self.npm_groups_sample_filename = self.scans_path + 'npm_audit/many_vuln_with_groups.json'
def test_import_no_push_to_jira(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
return test_id
def test_import_with_push_to_jira_is_false(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=False, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
return test_id
def test_import_with_push_to_jira(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_groups_push_to_jira(self):
# 7 findings, 5 unique component_name+component_version
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', push_to_jira=True, verified=True)
test_id = import0['test']
# all findings should be in a group, so no JIRA issues for individual findings
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_push_to_jira_epic_as_issue_type(self):
jira_instance = JIRA_Instance.objects.get(id=2)
# we choose issue type Epic and test if it can be created successfully.
# if yes, it means we have successfully populated the Epic Name custom field which is mandatory in JIRA
jira_instance.default_issue_type = "Epic"
jira_instance.save()
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_no_push_to_jira_but_push_all(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_groups_no_push_to_jira_but_push_all(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_push_to_jira_is_false_but_push_all(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=False, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_groups_with_push_to_jira_is_false_but_push_all(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', push_to_jira=False, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_no_push_to_jira_reimport_no_push_to_jira(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
reimport = self.reimport_scan_with_params(test_id, self.zap_sample5_filename, verified=True)
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
return test_id
def test_import_no_push_to_jira_reimport_push_to_jira_false(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
reimport = self.reimport_scan_with_params(test_id, self.zap_sample5_filename, push_to_jira=False, verified=True)
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
return test_id
def test_import_no_push_to_jira_reimport_with_push_to_jira(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
reimport = self.reimport_scan_with_params(test_id, self.zap_sample5_filename, push_to_jira=True, verified=True)
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_groups_no_push_to_jira_reimport_with_push_to_jira(self):
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
reimport = self.reimport_scan_with_params(test_id, self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', push_to_jira=True, verified=True)
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_no_push_to_jira_reimport_no_push_to_jira_but_push_all_issues(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
reimport = self.reimport_scan_with_params(test_id, self.zap_sample5_filename, verified=True)
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_groups_no_push_to_jira_reimport_no_push_to_jira_but_push_all_issues(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
reimport = self.reimport_scan_with_params(test_id, self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', verified=True)
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_no_push_to_jira_reimport_push_to_jira_is_false_but_push_all_issues(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
updated_map = self.get_jira_issue_updated_map(test_id)
reimport = self.reimport_scan_with_params(test_id, self.zap_sample5_filename, push_to_jira=False, verified=True)
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# when sending in identical data to JIRA, JIRA does NOT update the updated timestamp....
# self.assert_jira_updated_map_changed(test_id, updated_map)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_with_groups_no_push_to_jira_reimport_push_to_jira_is_false_but_push_all_issues(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
updated_map = self.get_jira_issue_updated_map(test_id)
reimport = self.reimport_scan_with_params(test_id, self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', push_to_jira=False, verified=True)
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
# when sending in identical data to JIRA, JIRA does NOT update the updated timestamp....
# self.assert_jira_updated_map_changed(test_id, updated_map)
self.assert_jira_updated_map_unchanged(test_id, updated_map)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_push_to_jira_reimport_with_push_to_jira(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# Get one of the findings from the test
finding_id = Finding.objects.filter(test__id=test_id).first().id
pre_jira_status = self.get_jira_issue_updated(finding_id)
# re-import and see status change
reimport = self.reimport_scan_with_params(test_id, self.zap_sample5_filename, push_to_jira=True, verified=True)
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
post_jira_status = self.get_jira_issue_updated(finding_id)
# when sending in identical data to JIRA, JIRA does NOT update the updated timestamp....
# self.assert_jira_updated_change(pre_jira_status, post_jira_status)
# by asserting full cassette is played we know issues have been updated in JIRA
self.assert_cassette_played()
return test_id
def test_import_twice_push_to_jira(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
import1 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id1 = import1['test']
# duplicates shouldn't be sent to JIRA
self.assert_jira_issue_count_in_test(test_id1, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
def test_import_with_groups_twice_push_to_jira(self):
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 3)
import1 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', push_to_jira=True, verified=True)
test_id1 = import1['test']
# duplicates shouldn't be sent to JIRA
self.assert_jira_issue_count_in_test(test_id1, 0)
self.assert_jira_group_issue_count_in_test(test_id1, 0)
def test_import_twice_push_to_jira_push_all_issues(self):
self.set_jira_push_all_issues(self.get_engagement(1))
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
import1 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id1 = import1['test']
# duplicates shouldn't be sent to JIRA
self.assert_jira_issue_count_in_test(test_id1, 0)
self.assert_jira_group_issue_count_in_test(test_id1, 0)
def test_create_edit_update_finding(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
findings = self.get_test_findings_api(test_id)
finding_id = findings['results'][0]['id']
# logger.debug('finding_id: %s', finding_id)
# use existing finding as template, but change some fields to make it not a duplicate
finding_details = self.get_finding_api(finding_id)
del finding_details['id']
del finding_details['push_to_jira']
finding_details['title'] = 'jira api test 1'
self.post_new_finding_api(finding_details)
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
finding_details['title'] = 'jira api test 2'
self.post_new_finding_api(finding_details, push_to_jira=True)
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 0)
finding_details['title'] = 'jira api test 3'
new_finding_json = self.post_new_finding_api(finding_details)
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 0)
self.patch_finding_api(new_finding_json['id'], {"push_to_jira": False})
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 0)
self.patch_finding_api(new_finding_json['id'], {"push_to_jira": True})
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
pre_jira_status = self.get_jira_issue_status(new_finding_json['id'])
self.patch_finding_api(new_finding_json['id'], {"push_to_jira": True,
"is_mitigated": True,
"active": False})
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
post_jira_status = self.get_jira_issue_status(new_finding_json['id'])
self.assertNotEqual(pre_jira_status, post_jira_status)
finding_details['title'] = 'jira api test 4'
new_finding_json = self.post_new_finding_api(finding_details)
new_finding_id = new_finding_json['id']
del new_finding_json['id']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
self.put_finding_api(new_finding_id, new_finding_json, push_to_jira=False)
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
self.put_finding_api(new_finding_id, new_finding_json, push_to_jira=True)
self.assert_jira_issue_count_in_test(test_id, 3)
self.assert_jira_group_issue_count_in_test(test_id, 0)
self.put_finding_api(new_finding_id, new_finding_json, push_to_jira=True)
self.assert_jira_issue_count_in_test(test_id, 3)
self.assert_jira_group_issue_count_in_test(test_id, 0)
self.assert_cassette_played()
def test_groups_create_edit_update_finding(self):
import0 = self.import_scan_with_params(self.npm_groups_sample_filename, scan_type='NPM Audit Scan', group_by='component_name+component_version', verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 0)
findings = self.get_test_findings_api(test_id, component_name='negotiator')
self.assertEqual(len(findings['results']), 2)
finding_details = self.get_finding_api(findings['results'][0]['id'])
finding_group_id = findings['results'][0]['finding_groups'][0]['id']
del finding_details['id']
del finding_details['push_to_jira']
# push a finding should result in pushing the group instead
self.patch_finding_api(findings['results'][0]['id'], {"push_to_jira": True})
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 1)
# push second finding from the same group should not result in a new jira issue
self.patch_finding_api(findings['results'][1]['id'], {"push_to_jira": True})
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 1)
pre_jira_status = self.get_jira_issue_status(findings['results'][0]['id'])
# close both findings
self.patch_finding_api(findings['results'][0]['id'], {"active": False, "is_mitigated": True, "push_to_jira": True})
self.patch_finding_api(findings['results'][1]['id'], {"active": False, "is_mitigated": True, "push_to_jira": True})
post_jira_status = self.get_jira_issue_status(findings['results'][0]['id'])
# both findings inactive -> should update status in JIRA
self.assertNotEqual(pre_jira_status, post_jira_status)
# new finding, not pushed to JIRA
# use existing finding as template, but change some fields to make it not a duplicate
self.get_finding_api(findings['results'][0]['id'])
finding_details['title'] = 'jira api test 1'
self.post_new_finding_api(finding_details)
self.assert_jira_issue_count_in_test(test_id, 0)
self.assert_jira_group_issue_count_in_test(test_id, 1)
# another new finding, pushed to JIRA
# same component_name, but not yet in a group, so finding pushed to JIRA
finding_details['title'] = 'jira api test 2'
new_finding_json = self.post_new_finding_api(finding_details, push_to_jira=True)
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 1)
# print(finding_details)
# no way to set finding group easily via API yet
Finding_Group.objects.get(id=finding_group_id).findings.add(Finding.objects.get(id=new_finding_json['id']))
self.patch_finding_api(new_finding_json['id'], {"push_to_jira": True})
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 1)
# another new finding, pushed to JIRA, different component_name / different group
finding_details['title'] = 'jira api test 3'
finding_details['component_name'] = 'pg'
new_finding_json = self.post_new_finding_api(finding_details)
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 1)
findings = self.get_test_findings_api(test_id, component_name='pg')
finding_group_id = findings['results'][0]['finding_groups'][0]['id']
# no way to set finding group easily via API yet
Finding_Group.objects.get(id=finding_group_id).findings.add(Finding.objects.get(id=new_finding_json['id']))
self.patch_finding_api(new_finding_json['id'], {"push_to_jira": True})
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 2)
self.assert_cassette_played()
def test_import_with_push_to_jira_add_comment(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
findings = self.get_test_findings_api(test_id)
finding_id = findings['results'][0]['id']
response = self.post_finding_notes_api(finding_id, 'testing note. creating it and pushing it to JIRA')
self.patch_finding_api(finding_id, {"push_to_jira": True})
# Make sure the number of comments match
self.assertEqual(len(self.get_jira_comments(finding_id)), 1)
# by asserting full cassette is played we know all calls to JIRA have been made as expected
self.assert_cassette_played()
return test_id
def test_import_add_comments_then_push_to_jira(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=False, verified=True)
test_id = import0['test']
findings = self.get_test_findings_api(test_id)
finding_id = findings['results'][0]['id']
response = self.post_finding_notes_api(finding_id, 'testing note. creating it and pushing it to JIRA')
response = self.post_finding_notes_api(finding_id, 'testing second note. creating it and pushing it to JIRA')
self.patch_finding_api(finding_id, {"push_to_jira": True})
self.assert_jira_issue_count_in_test(test_id, 1)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# Make sure the number of comments match
self.assertEqual(len(self.get_jira_comments(finding_id)), 2)
# by asserting full cassette is played we know all calls to JIRA have been made as expected
self.assert_cassette_played()
return test_id
def test_import_with_push_to_jira_add_tags(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
findings = self.get_test_findings_api(test_id)
finding = Finding.objects.get(id=findings['results'][0]['id'])
tags = ['tag1', 'tag2']
response = self.post_finding_tags_api(finding.id, tags)
self.patch_finding_api(finding.id, {"push_to_jira": True})
# Connect to jira to get the new issue
jira_instance = jira_helper.get_jira_instance(finding)
jira = jira_helper.get_jira_connection(jira_instance)
issue = jira.issue(finding.jira_issue.jira_id)
# Assert that the tags match
self.assertEqual(issue.fields.labels, tags)
# by asserting full cassette is played we know all calls to JIRA have been made as expected
self.assert_cassette_played()
return test_id
def test_import_with_push_to_jira_update_tags(self):
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, verified=True)
test_id = import0['test']
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
findings = self.get_test_findings_api(test_id)
finding = Finding.objects.get(id=findings['results'][0]['id'])
tags = ['tag1', 'tag2']
response = self.post_finding_tags_api(finding.id, tags)
self.patch_finding_api(finding.id, {"push_to_jira": True})
# Connect to jira to get the new issue
jira_instance = jira_helper.get_jira_instance(finding)
jira = jira_helper.get_jira_connection(jira_instance)
issue = jira.issue(finding.jira_issue.jira_id)
# Assert that the tags match
self.assertEqual(issue.fields.labels, tags)
tags_new = tags + ['tag3', 'tag4']
response = self.post_finding_tags_api(finding.id, tags_new)
self.patch_finding_api(finding.id, {"push_to_jira": True})
# Connect to jira to get the new issue
jira_instance = jira_helper.get_jira_instance(finding)
jira = jira_helper.get_jira_connection(jira_instance)
issue = jira.issue(finding.jira_issue.jira_id)
# Assert that the tags match
self.assertEqual(issue.fields.labels, tags_new)
# by asserting full cassette is played we know all calls to JIRA have been made as expected
self.assert_cassette_played()
return test_id
def test_engagement_epic_creation(self):
eng = self.get_engagement(3)
# Set epic_mapping to true
self.toggle_jira_project_epic_mapping(eng, True)
self.create_engagement_epic(eng)
self.assertTrue(eng.has_jira_issue)
self.assert_cassette_played()
def test_engagement_epic_mapping_enabled_create_epic_and_push_findings(self):
eng = self.get_engagement(3)
# Set epic_mapping to true
self.toggle_jira_project_epic_mapping(eng, True)
self.create_engagement_epic(eng)
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, engagement=3, verified=True)
test_id = import0['test']
# Correct number of issues are pushed to jira
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# Correct number of issues are in the epic
self.assert_epic_issue_count(eng, 2)
# Ensure issue are actually in the correct epic
finding = Finding.objects.filter(test__id=test_id).first()
self.assert_jira_issue_in_epic(finding, eng, issue_in_epic=True)
self.assert_cassette_played()
def test_engagement_epic_mapping_enabled_no_epic_and_push_findings(self):
eng = self.get_engagement(3)
# Set epic_mapping to true
self.toggle_jira_project_epic_mapping(eng, True)
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, engagement=3, verified=True)
test_id = import0['test']
# Correct number of issues are pushed to jira
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# Correct number of issues are in the epic
self.assert_epic_issue_count(eng, 0)
# Ensure issue are actually not in the correct epic
finding = Finding.objects.filter(test__id=test_id).first()
self.assert_jira_issue_in_epic(finding, eng, issue_in_epic=False)
self.assert_cassette_played()
def test_engagement_epic_mapping_disabled_create_epic_and_push_findings(self):
eng = self.get_engagement(3)
# Set epic_mapping to true
self.toggle_jira_project_epic_mapping(eng, False)
self.create_engagement_epic(eng)
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, engagement=3, verified=True)
test_id = import0['test']
# Correct number of issues are pushed to jira
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# Correct number of issues are in the epic
self.assert_epic_issue_count(eng, 0)
# Ensure issue are actually in the correct epic
finding = Finding.objects.filter(test__id=test_id).first()
self.assert_jira_issue_in_epic(finding, eng, issue_in_epic=False)
self.assert_cassette_played()
def test_engagement_epic_mapping_disabled_no_epic_and_push_findings(self):
eng = self.get_engagement(3)
# Set epic_mapping to true
self.toggle_jira_project_epic_mapping(eng, False)
import0 = self.import_scan_with_params(self.zap_sample5_filename, push_to_jira=True, engagement=3, verified=True)
test_id = import0['test']
# Correct number of issues are pushed to jira
self.assert_jira_issue_count_in_test(test_id, 2)
self.assert_jira_group_issue_count_in_test(test_id, 0)
# Correct number of issues are in the epic
self.assert_epic_issue_count(eng, 0)
# Ensure issue are actually not in the correct epic
finding = Finding.objects.filter(test__id=test_id).first()
self.assert_jira_issue_in_epic(finding, eng, issue_in_epic=False)
self.assert_cassette_played()
# creation of epic via the UI is already tested in test_jira_config_engagement_epic, so
# we take a shortcut here as creating an engagement with epic mapping via the API is not implemented yet
def create_engagement_epic(self, engagement):
with impersonate(self.testuser):
return jira_helper.add_epic(engagement)
def assert_epic_issue_count(self, engagement, count):
jira_issues = self.get_epic_issues(engagement)
self.assertEqual(count, len(jira_issues))