forked from DefectDojo/django-DefectDojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdojo_test_case.py
769 lines (603 loc) · 32.3 KB
/
dojo_test_case.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
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
import copy
import json
import logging
import os
import pprint
from itertools import chain
from django.test import TestCase
from django.urls import reverse
from django.utils import timezone
from django.utils.http import urlencode
from rest_framework.authtoken.models import Token
from rest_framework.test import APIClient, APITestCase
from vcr_unittest import VCRTestCase
from dojo.jira_link import helper as jira_helper
from dojo.jira_link.views import get_custom_field
from dojo.models import (SEVERITIES, DojoMeta, Endpoint, Endpoint_Status,
Engagement, Finding, JIRA_Issue, JIRA_Project, Notes,
Product, Product_Type, System_Settings, Test,
Test_Type, User)
logger = logging.getLogger(__name__)
def get_unit_tests_path():
return os.path.dirname(os.path.realpath(__file__))
class DojoTestUtilsMixin(object):
def get_test_admin(self, *args, **kwargs):
return User.objects.get(username='admin')
def system_settings(
self,
enable_jira=False,
enable_jira_web_hook=False,
disable_jira_webhook_secret=False,
jira_webhook_secret=None,
enable_product_tag_inehritance=False,
):
ss = System_Settings.objects.get()
ss.enable_jira = enable_jira
ss.enable_jira_web_hook = enable_jira_web_hook
ss.disable_jira_webhook_secret = disable_jira_webhook_secret
ss.jira_webhook_secret = jira_webhook_secret
ss.enable_product_tag_inheritance = enable_product_tag_inehritance
ss.save()
def create_product_type(self, name, *args, description='dummy description', **kwargs):
product_type = Product_Type(name=name, description=description)
product_type.save()
return product_type
def create_product(self, name, *args, description='dummy description', prod_type=None, tags=[], **kwargs):
if not prod_type:
prod_type = Product_Type.objects.first()
product = Product(name=name, description=description, prod_type=prod_type, tags=tags)
product.save()
return product
def patch_product_api(self, product_id, product_details):
payload = copy.deepcopy(product_details)
response = self.client.patch(reverse('product-list') + '%s/' % product_id, payload, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
return response.data
def patch_endpoint_api(self, endpoint_id, endpoint_details):
payload = copy.deepcopy(endpoint_details)
response = self.client.patch(reverse('endpoint-list') + '%s/' % endpoint_id, payload, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
return response.data
def create_engagement(self, name, product, *args, description=None, **kwargs):
engagement = Engagement(name=name, description=description, product=product, target_start=timezone.now(), target_end=timezone.now())
engagement.save()
return engagement
def create_test(self, engagement=None, scan_type=None, title=None, *args, description=None, **kwargs):
test = Test(title=title, scan_type=scan_type, engagement=engagement, test_type=Test_Type.objects.get(name=scan_type), target_start=timezone.now(), target_end=timezone.now())
test.save()
return test
def get_test(self, id):
return Test.objects.get(id=id)
def get_test_api(self, test_id):
response = self.client.patch(reverse('engagement-list') + '%s/' % test_id)
self.assertEqual(200, response.status_code, response.content[:1000])
return response.data
def get_engagement(self, id):
return Engagement.objects.get(id=id)
def get_engagement_api(self, engagement_id):
response = self.client.patch(reverse('engagement-list') + '%s/' % engagement_id)
self.assertEqual(200, response.status_code, response.content[:1000])
return response.data
def assert_jira_issue_count_in_test(self, test_id, count):
test = self.get_test(test_id)
jira_issues = JIRA_Issue.objects.filter(finding__in=test.finding_set.all())
self.assertEqual(count, len(jira_issues))
def assert_jira_group_issue_count_in_test(self, test_id, count):
test = self.get_test(test_id)
jira_issues = JIRA_Issue.objects.filter(finding_group__test=test)
self.assertEqual(count, len(jira_issues))
def model_to_dict(self, instance):
opts = instance._meta
data = {}
for f in chain(opts.concrete_fields, opts.private_fields):
data[f.name] = f.value_from_object(instance)
for f in opts.many_to_many:
data[f.name] = [i.id for i in f.value_from_object(instance)]
return data
def log_model_instance(self, instance):
logger.debug('model instance: %s', pprint.pprint(self.model_to_dict(instance)))
def log_model_instances(self, instances):
for instance in instances:
self.log_model_instance(instance)
def db_finding_count(self):
return Finding.objects.all().count()
def db_endpoint_count(self):
return Endpoint.objects.all().count()
def db_endpoint_status_count(self, mitigated=None):
eps = Endpoint_Status.objects.all()
if mitigated is not None:
eps = eps.filter(mitigated=mitigated)
return eps.count()
def db_endpoint_tag_count(self):
return Endpoint.tags.tag_model.objects.all().count()
def db_notes_count(self):
return Notes.objects.all().count()
def db_dojo_meta_count(self):
return DojoMeta.objects.all().count()
def get_new_product_with_jira_project_data(self):
return {
'name': 'new product',
'description': 'new description',
'prod_type': 1,
'jira-project-form-project_key': 'IFFFNEW',
'jira-project-form-jira_instance': 2,
'jira-project-form-enable_engagement_epic_mapping': 'on',
'jira-project-form-push_notes': 'on',
'jira-project-form-product_jira_sla_notification': 'on',
'jira-project-form-custom_fields': 'null',
'sla_configuration': 1
}
def get_new_product_without_jira_project_data(self):
return {
'name': 'new product',
'description': 'new description',
'prod_type': 1,
'sla_configuration': 1
# 'project_key': 'IFFF',
# 'jira_instance': 2,
# 'enable_engagement_epic_mapping': 'on',
# 'push_notes': 'on',
# 'jira-project-form-product_jira_sla_notification': 'on'
}
def get_product_with_jira_project_data(self, product):
return {
'name': product.name,
'description': product.description,
'prod_type': product.prod_type.id,
'jira-project-form-project_key': 'IFFF',
'jira-project-form-jira_instance': 2,
'jira-project-form-enable_engagement_epic_mapping': 'on',
'jira-project-form-push_notes': 'on',
'jira-project-form-product_jira_sla_notification': 'on',
'jira-project-form-custom_fields': 'null',
'sla_configuration': 1
}
def get_product_with_jira_project_data2(self, product):
return {
'name': product.name,
'description': product.description,
'prod_type': product.prod_type.id,
'jira-project-form-project_key': 'IFFF2',
'jira-project-form-jira_instance': 2,
'jira-project-form-enable_engagement_epic_mapping': 'on',
'jira-project-form-push_notes': 'on',
'jira-project-form-product_jira_sla_notification': 'on',
'jira-project-form-custom_fields': 'null',
'sla_configuration': 1
}
def get_product_with_empty_jira_project_data(self, product):
return {
'name': product.name,
'description': product.description,
'prod_type': product.prod_type.id,
'sla_configuration': 1,
'jira-project-form-custom_fields': 'null',
# 'project_key': 'IFFF',
# 'jira_instance': 2,
# 'enable_engagement_epic_mapping': 'on',
# 'push_notes': 'on',
# 'jira-project-form-product_jira_sla_notification': 'on'
}
def get_expected_redirect_product(self, product):
return '/product/%i' % product.id
def add_product_jira(self, data, expect_redirect_to=None, expect_200=False):
response = self.client.get(reverse('new_product'))
# logger.debug('before: JIRA_Project last')
# self.log_model_instance(JIRA_Project.objects.last())
if not expect_redirect_to and not expect_200:
expect_redirect_to = '/product/%i'
response = self.client.post(reverse('new_product'), urlencode(data), content_type='application/x-www-form-urlencoded')
# logger.debug('after: JIRA_Project last')
# self.log_model_instance(JIRA_Project.objects.last())
product = None
if expect_200:
self.assertEqual(response.status_code, 200)
elif expect_redirect_to:
self.assertEqual(response.status_code, 302)
# print('url: ' + response.url)
try:
product = Product.objects.get(id=response.url.split('/')[-1])
except:
try:
product = Product.objects.get(id=response.url.split('/')[-2])
except:
raise ValueError('error parsing id from redirect uri: ' + response.url)
self.assertTrue(response.url == (expect_redirect_to % product.id))
else:
self.assertEqual(response.status_code, 200)
return product
def db_jira_project_count(self):
return JIRA_Project.objects.all().count()
def set_jira_push_all_issues(self, engagement_or_product):
jira_project = jira_helper.get_jira_project(engagement_or_product)
jira_project.push_all_issues = True
jira_project.save()
def add_product_jira_with_data(self, data, expected_delta_jira_project_db, expect_redirect_to=None, expect_200=False):
jira_project_count_before = self.db_jira_project_count()
response = self.add_product_jira(data, expect_redirect_to=expect_redirect_to, expect_200=expect_200)
self.assertEqual(self.db_jira_project_count(), jira_project_count_before + expected_delta_jira_project_db)
return response
def add_product_with_jira_project(self, expected_delta_jira_project_db=0, expect_redirect_to=None, expect_200=False):
return self.add_product_jira_with_data(self.get_new_product_with_jira_project_data(), expected_delta_jira_project_db, expect_redirect_to=expect_redirect_to, expect_200=expect_200)
def add_product_without_jira_project(self, expected_delta_jira_project_db=0, expect_redirect_to=None, expect_200=False):
logger.debug('adding product without jira project')
return self.add_product_jira_with_data(self.get_new_product_without_jira_project_data(), expected_delta_jira_project_db, expect_redirect_to=expect_redirect_to, expect_200=expect_200)
def edit_product_jira(self, product, data, expect_redirect_to=None, expect_200=False):
response = self.client.get(reverse('edit_product', args=(product.id, )))
# logger.debug('before: JIRA_Project last')
# self.log_model_instance(JIRA_Project.objects.last())
response = self.client.post(reverse('edit_product', args=(product.id, )), urlencode(data), content_type='application/x-www-form-urlencoded')
# self.log_model_instance(product)
# logger.debug('after: JIRA_Project last')
# self.log_model_instance(JIRA_Project.objects.last())
if expect_200:
self.assertEqual(response.status_code, 200)
elif expect_redirect_to:
self.assertRedirects(response, expect_redirect_to)
else:
self.assertEqual(response.status_code, 200)
return response
def edit_jira_project_for_product_with_data(self, product, data, expected_delta_jira_project_db=0, expect_redirect_to=None, expect_200=None):
jira_project_count_before = self.db_jira_project_count()
# print('before: ' + str(jira_project_count_before))
if not expect_redirect_to and not expect_200:
expect_redirect_to = self.get_expected_redirect_product(product)
response = self.edit_product_jira(product, data, expect_redirect_to=expect_redirect_to, expect_200=expect_200)
# print('after: ' + str(self.db_jira_project_count()))
self.assertEqual(self.db_jira_project_count(), jira_project_count_before + expected_delta_jira_project_db)
return response
def edit_jira_project_for_product(self, product, expected_delta_jira_project_db=0, expect_redirect_to=None, expect_200=False):
return self.edit_jira_project_for_product_with_data(product, self.get_product_with_jira_project_data(product), expected_delta_jira_project_db, expect_redirect_to=expect_redirect_to, expect_200=expect_200)
def edit_jira_project_for_product2(self, product, expected_delta_jira_project_db=0, expect_redirect_to=None, expect_200=False):
return self.edit_jira_project_for_product_with_data(product, self.get_product_with_jira_project_data2(product), expected_delta_jira_project_db, expect_redirect_to=expect_redirect_to, expect_200=expect_200)
def empty_jira_project_for_product(self, product, expected_delta_jira_project_db=0, expect_redirect_to=None, expect_200=False):
logger.debug('empty jira project for product')
jira_project_count_before = self.db_jira_project_count()
# print('before: ' + str(jira_project_count_before))
if not expect_redirect_to and not expect_200:
expect_redirect_to = self.get_expected_redirect_product(product)
response = self.edit_product_jira(product, self.get_product_with_empty_jira_project_data(product), expect_redirect_to=expect_redirect_to, expect_200=expect_200)
# print('after: ' + str(self.db_jira_project_count()))
self.assertEqual(self.db_jira_project_count(), jira_project_count_before + expected_delta_jira_project_db)
return response
def get_jira_issue_status(self, finding_id):
finding = Finding.objects.get(id=finding_id)
updated = jira_helper.get_jira_status(finding)
return updated
def get_jira_issue_updated(self, finding_id):
finding = Finding.objects.get(id=finding_id)
updated = jira_helper.get_jira_updated(finding)
return updated
def get_jira_comments(self, finding_id):
finding = Finding.objects.get(id=finding_id)
comments = jira_helper.get_jira_comments(finding)
return comments
def get_jira_issue_updated_map(self, test_id):
findings = Test.objects.get(id=test_id).finding_set.all()
updated_map = {}
for finding in findings:
logger.debug('finding!!!')
updated = jira_helper.get_jira_updated(finding)
updated_map[finding.id] = updated
return updated_map
def assert_jira_updated_map_unchanged(self, test_id, updated_map):
findings = Test.objects.get(id=test_id).finding_set.all()
for finding in findings:
logger.debug('finding!')
self.assertEqual(jira_helper.get_jira_updated(finding), updated_map[finding.id])
def assert_jira_updated_map_changed(self, test_id, updated_map):
findings = Test.objects.get(id=test_id).finding_set.all()
for finding in findings:
logger.debug('finding!')
self.assertNotEquals(jira_helper.get_jira_updated(finding), updated_map[finding.id])
# Toggle epic mapping on jira product
def toggle_jira_project_epic_mapping(self, obj, value):
project = jira_helper.get_jira_project(obj)
project.enable_engagement_epic_mapping = value
project.save()
# Return a list of jira issue in json format.
def get_epic_issues(self, engagement):
instance = jira_helper.get_jira_instance(engagement)
jira = jira_helper.get_jira_connection(instance)
epic_id = jira_helper.get_jira_issue_key(engagement)
response = {}
if epic_id:
url = instance.url.strip('/') + '/rest/agile/1.0/epic/' + epic_id + '/issue'
response = jira._session.get(url).json()
return response.get('issues', [])
# Determine whether an issue is in an epic
def assert_jira_issue_in_epic(self, finding, engagement, issue_in_epic=True):
instance = jira_helper.get_jira_instance(engagement)
jira = jira_helper.get_jira_connection(instance)
epic_id = jira_helper.get_jira_issue_key(engagement)
issue_id = jira_helper.get_jira_issue_key(finding)
epic_link_field = 'customfield_' + str(get_custom_field(jira, 'Epic Link'))
url = instance.url.strip('/') + '/rest/api/latest/issue/' + issue_id
response = jira._session.get(url).json().get('fields', {})
epic_link = response.get(epic_link_field, None)
if epic_id is None and epic_link is None or issue_in_epic:
self.assertTrue(epic_id == epic_link)
else:
self.assertTrue(epic_id != epic_link)
def assert_jira_updated_change(self, old, new):
self.assertTrue(old != new)
def get_latest_model(self, model):
return model.objects.order_by('id').last()
class DojoTestCase(TestCase, DojoTestUtilsMixin):
def __init__(self, *args, **kwargs):
TestCase.__init__(self, *args, **kwargs)
def common_check_finding(self, finding):
self.assertIn(finding.severity, SEVERITIES)
finding.clean()
class DojoAPITestCase(APITestCase, DojoTestUtilsMixin):
def __init__(self, *args, **kwargs):
APITestCase.__init__(self, *args, **kwargs)
def login_as_admin(self):
testuser = self.get_test_admin()
token = Token.objects.get(user=testuser)
self.client = APIClient()
self.client.credentials(HTTP_AUTHORIZATION='Token ' + token.key)
def import_scan(self, payload, expected_http_status_code):
logger.debug('import_scan payload %s', payload)
response = self.client.post(reverse('importscan-list'), payload)
print(response.content)
self.assertEqual(expected_http_status_code, response.status_code, response.content[:1000])
return json.loads(response.content)
def reimport_scan(self, payload, expected_http_status_code):
logger.debug('reimport_scan payload %s', payload)
response = self.client.post(reverse('reimportscan-list'), payload)
print(response.content)
self.assertEqual(expected_http_status_code, response.status_code, response.content[:1000])
return json.loads(response.content)
def endpoint_meta_import_scan(self, payload, expected_http_status_code):
logger.debug('endpoint_meta_import_scan payload %s', payload)
response = self.client.post(reverse('endpointmetaimport-list'), payload)
print(response.content)
self.assertEqual(expected_http_status_code, response.status_code, response.content[:1000])
return json.loads(response.content)
def get_test_api(self, test_id):
response = self.client.get(reverse('test-list') + '%s/' % test_id, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
# print('test.content: ', response.content)
return json.loads(response.content)
def import_scan_with_params(self, filename, scan_type='ZAP Scan', engagement=1, minimum_severity='Low', active=True, verified=False,
push_to_jira=None, endpoint_to_add=None, tags=None, close_old_findings=False, group_by=None, engagement_name=None,
product_name=None, product_type_name=None, auto_create_context=None, expected_http_status_code=201, test_title=None,
scan_date=None, service=None, forceActive=True, forceVerified=True):
payload = {
"minimum_severity": minimum_severity,
"active": active,
"verified": verified,
"scan_type": scan_type,
"file": open(get_unit_tests_path() + '/' + filename),
"version": "1.0.1",
"close_old_findings": close_old_findings,
}
if engagement:
payload['engagement'] = engagement
if engagement_name:
payload['engagement_name'] = engagement_name
if product_name:
payload['product_name'] = product_name
if product_type_name:
payload['product_type_name'] = product_type_name
if auto_create_context:
payload['auto_create_context'] = auto_create_context
if push_to_jira is not None:
payload['push_to_jira'] = push_to_jira
if endpoint_to_add is not None:
payload['endpoint_to_add'] = endpoint_to_add
if tags is not None:
payload['tags'] = tags
if group_by is not None:
payload['group_by'] = group_by
if test_title is not None:
payload['test_title'] = test_title
if scan_date is not None:
payload['scan_date'] = scan_date
if service is not None:
payload['service'] = service
return self.import_scan(payload, expected_http_status_code)
def reimport_scan_with_params(self, test_id, filename, scan_type='ZAP Scan', engagement=1, minimum_severity='Low', active=True, verified=False, push_to_jira=None,
tags=None, close_old_findings=True, group_by=None, engagement_name=None, scan_date=None,
product_name=None, product_type_name=None, auto_create_context=None, expected_http_status_code=201, test_title=None):
payload = {
"minimum_severity": minimum_severity,
"active": active,
"verified": verified,
"scan_type": scan_type,
"file": open(get_unit_tests_path() + '/' + filename),
"version": "1.0.1",
"close_old_findings": close_old_findings,
}
if test_id is not None:
payload['test'] = test_id
if engagement:
payload['engagement'] = engagement
if engagement_name:
payload['engagement_name'] = engagement_name
if product_name:
payload['product_name'] = product_name
if product_type_name:
payload['product_type_name'] = product_type_name
if auto_create_context:
payload['auto_create_context'] = auto_create_context
if push_to_jira is not None:
payload['push_to_jira'] = push_to_jira
if tags is not None:
payload['tags'] = tags
if group_by is not None:
payload['group_by'] = group_by
if test_title is not None:
payload['test_title'] = test_title
if scan_date is not None:
payload['scan_date'] = scan_date
return self.reimport_scan(payload, expected_http_status_code=expected_http_status_code)
def endpoint_meta_import_scan_with_params(self, filename, product=1, product_name=None,
create_endpoints=True, create_tags=True, create_dojo_meta=True,
expected_http_status_code=201):
payload = {
"create_endpoints": create_endpoints,
"create_tags": create_tags,
"create_dojo_meta": create_dojo_meta,
"file": open(get_unit_tests_path() + '/' + filename),
}
if product:
payload['product'] = product
if product_name:
payload['product_name'] = product_name
return self.endpoint_meta_import_scan(payload, expected_http_status_code)
def get_finding_api(self, finding_id):
response = self.client.get(reverse('finding-list') + '%s/' % finding_id, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
return response.data
def post_new_finding_api(self, finding_details, push_to_jira=None):
payload = copy.deepcopy(finding_details)
if push_to_jira is not None:
payload['push_to_jira'] = push_to_jira
# logger.debug('posting new finding push_to_jira: %s', payload.get('push_to_jira', None))
response = self.client.post(reverse('finding-list'), payload, format='json')
self.assertEqual(201, response.status_code, response.content[:1000])
return response.data
def put_finding_api(self, finding_id, finding_details, push_to_jira=None):
payload = copy.deepcopy(finding_details)
if push_to_jira is not None:
payload['push_to_jira'] = push_to_jira
response = self.client.put(reverse('finding-list') + '%s/' % finding_id, payload, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
return response.data
def delete_finding_api(self, finding_id):
response = self.client.delete(reverse('finding-list') + '%s/' % finding_id)
self.assertEqual(204, response.status_code, response.content[:1000])
return response.data
def patch_finding_api(self, finding_id, finding_details, push_to_jira=None):
payload = copy.deepcopy(finding_details)
if push_to_jira is not None:
payload['push_to_jira'] = push_to_jira
response = self.client.patch(reverse('finding-list') + '%s/' % finding_id, payload, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
return response.data
def assert_finding_count_json(self, count, findings_content_json):
self.assertEqual(findings_content_json['count'], count)
def get_test_findings_api(self, test_id, active=None, verified=None, is_mitigated=None, component_name=None, component_version=None):
payload = {'test': test_id}
if active is not None:
payload['active'] = active
if verified is not None:
payload['verified'] = verified
if is_mitigated is not None:
payload['is_mitigated'] = is_mitigated
if component_name is not None:
payload['component_name'] = component_name
if component_version is not None:
payload['component_version'] = component_version
response = self.client.get(reverse('finding-list'), payload, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
# print('findings.content: ', response.content)
return json.loads(response.content)
def get_product_endpoints_api(self, product_id, host=None):
payload = {'product': product_id}
if host is not None:
payload['host'] = host
response = self.client.get(reverse('endpoint-list'), payload, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
return json.loads(response.content)
def get_endpoints_meta_api(self, endpoint_id, name=None):
payload = {'endpoint': endpoint_id}
if name is not None:
payload['name'] = name
response = self.client.get(reverse('metadata-list'), payload, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
return json.loads(response.content)
def do_finding_tags_api(self, http_method, finding_id, tags=None):
data = None
if tags:
data = {'tags': tags}
# print('data:' + str(data))
response = http_method(reverse('finding-tags', args=(finding_id,)), data, format='json')
# print(vars(response))
# print(response.content)
self.assertEqual(200, response.status_code, response.content[:1000])
return response
def get_finding_tags_api(self, finding_id):
response = self.do_finding_tags_api(self.client.get, finding_id)
# print(response.data)
return response.data
def get_finding_api_filter_tags(self, tags):
response = self.client.get(reverse('finding-list') + '?tags=%s' % tags, format='json')
self.assertEqual(200, response.status_code, response.content[:1000])
# print(response.data)
return response.data
def post_finding_tags_api(self, finding_id, tags):
response = self.do_finding_tags_api(self.client.post, finding_id, tags)
return response.data
def do_finding_remove_tags_api(self, http_method, finding_id, tags=None, expected_response_status_code=204):
data = None
if tags:
data = {'tags': tags}
response = http_method(reverse('finding-remove-tags', args=(finding_id,)), data, format='json')
# print(response)
# print(response.content)
self.assertEqual(expected_response_status_code, response.status_code, response.content[:1000])
return response.data
def put_finding_remove_tags_api(self, finding_id, tags, *args, **kwargs):
response = self.do_finding_remove_tags_api(self.client.put, finding_id, tags, *args, **kwargs)
return response
def patch_finding_remove_tags_api(self, finding_id, tags, *args, **kwargs):
response = self.do_finding_remove_tags_api(self.client.patch, finding_id, tags, *args, **kwargs)
return response
def do_finding_notes_api(self, http_method, finding_id, note=None):
data = None
if note:
data = {'entry': note}
# print('data:' + str(data))
response = http_method(reverse('finding-notes', args=(finding_id,)), data, format='json')
# print(vars(response))
# print(response.content)
self.assertEqual(201, response.status_code, response.content[:1000])
return response
def post_finding_notes_api(self, finding_id, note):
response = self.do_finding_notes_api(self.client.post, finding_id, note)
return response.data
def log_finding_summary_json_api(self, findings_content_json=None):
print('summary')
print(findings_content_json)
print(findings_content_json['count'])
if not findings_content_json or findings_content_json['count'] == 0:
logger.debug('no findings')
else:
for finding in findings_content_json['results']:
print(str(finding['id']) + ': ' + finding['title'][:5] + ':' + finding['severity'] + ': active: ' + str(finding['active']) + ': verified: ' + str(finding['verified']) +
': is_mitigated: ' + str(finding['is_mitigated']) + ": notes: " + str([n['id'] for n in finding['notes']]) +
": endpoints: " + str(finding['endpoints']))
logger.debug(str(finding['id']) + ': ' + finding['title'][:5] + ':' + finding['severity'] + ': active: ' + str(finding['active']) + ': verified: ' + str(finding['verified']) +
': is_mitigated: ' + str(finding['is_mitigated']) + ": notes: " + str([n['id'] for n in finding['notes']]) +
": endpoints: " + str(finding['endpoints']))
logger.debug('endpoints')
for ep in Endpoint.objects.all():
logger.debug(str(ep.id) + ': ' + str(ep))
logger.debug('endpoint statuses')
for eps in Endpoint_Status.objects.all():
logger.debug(str(eps.id) + ': ' + str(eps.endpoint) + ': ' + str(eps.endpoint.id) + ': ' + str(eps.mitigated))
class DojoVCRTestCase(DojoTestCase, VCRTestCase):
def __init__(self, *args, **kwargs):
DojoTestCase.__init__(self, *args, **kwargs)
VCRTestCase.__init__(self, *args, **kwargs)
# filters headers doesn't seem to work for cookies, so use callbacks to filter cookies from being recorded
# https://github.com/kevin1024/vcrpy/issues/569
def before_record_request(self, request):
if 'Cookie' in request.headers:
del request.headers['Cookie']
if 'cookie' in request.headers:
del request.headers['cookie']
return request
def before_record_response(self, response):
if 'Set-Cookie' in response['headers']:
del response['headers']['Set-Cookie']
if 'set-cookie' in response['headers']:
del response['headers']['set-cookie']
return response
class DojoVCRAPITestCase(DojoAPITestCase, DojoVCRTestCase):
def __init__(self, *args, **kwargs):
DojoAPITestCase.__init__(self, *args, **kwargs)
DojoVCRTestCase.__init__(self, *args, **kwargs)