-
Notifications
You must be signed in to change notification settings - Fork 18
/
test_evergreen.py
742 lines (572 loc) · 27.3 KB
/
test_evergreen.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
""" Test the evergreen.py module. """
import unittest
import uuid
from unittest.mock import MagicMock, patch
import github3
import requests
from evergreen import (
check_existing_config,
check_pending_issues_for_duplicates,
check_pending_pulls_for_duplicates,
commit_changes,
enable_dependabot_security_updates,
get_global_issue_id,
get_global_pr_id,
get_global_project_id,
get_repos_iterator,
is_dependabot_security_updates_enabled,
is_repo_created_date_before,
link_item_to_project,
)
class TestDependabotSecurityUpdates(unittest.TestCase):
"""Test the Dependabot security updates functions in evergreen.py"""
def test_is_dependabot_security_updates_enabled(self):
"""
Test the is_dependabot_security_updates_enabled function.
This test checks if the is_dependabot_security_updates_enabled function correctly
detects if Dependabot security updates are enabled.
It mocks the requests.get method to simulate different scenarios.
"""
owner = "my_owner"
repo = "my_repo"
access_token = "my_access_token"
ghe = ""
expected_url = (
f"https://api.github.com/repos/{owner}/{repo}/automated-security-fixes"
)
expected_headers = {
"Authorization": f"Bearer {access_token}",
"Accept": "application/vnd.github.london-preview+json",
}
expected_response = {"enabled": True}
with patch("requests.get") as mock_get:
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = expected_response
result = is_dependabot_security_updates_enabled(
ghe, owner, repo, access_token
)
mock_get.assert_called_once_with(
expected_url, headers=expected_headers, timeout=20
)
self.assertTrue(result)
def test_is_dependabot_security_updates_disabled(self):
"""
Test the is_dependabot_security_updates_enabled function when security updates are disabled.
This test checks if the is_dependabot_security_updates_enabled function correctly
detects if Dependabot security updates are disabled.
It mocks the requests.get method to simulate different scenarios.
"""
owner = "my_owner"
repo = "my_repo"
access_token = "my_access_token"
ghe = ""
expected_url = (
f"https://api.github.com/repos/{owner}/{repo}/automated-security-fixes"
)
expected_headers = {
"Authorization": f"Bearer {access_token}",
"Accept": "application/vnd.github.london-preview+json",
}
with patch("requests.get") as mock_get:
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {"enabled": False}
result = is_dependabot_security_updates_enabled(
ghe, owner, repo, access_token
)
mock_get.assert_called_once_with(
expected_url, headers=expected_headers, timeout=20
)
self.assertFalse(result)
def test_is_dependabot_security_updates_not_found(self):
"""
Test the is_dependabot_security_updates_enabled function when the endpoint is not found.
This test checks if the is_dependabot_security_updates_enabled function correctly
handles the case when the endpoint is not found.
It mocks the requests.get method to simulate different scenarios.
"""
owner = "my_owner"
repo = "my_repo"
access_token = "my_access_token"
ghe = ""
expected_url = (
f"https://api.github.com/repos/{owner}/{repo}/automated-security-fixes"
)
expected_headers = {
"Authorization": f"Bearer {access_token}",
"Accept": "application/vnd.github.london-preview+json",
}
with patch("requests.get") as mock_get:
mock_get.return_value.status_code = 404
result = is_dependabot_security_updates_enabled(
ghe, owner, repo, access_token
)
mock_get.assert_called_once_with(
expected_url, headers=expected_headers, timeout=20
)
self.assertFalse(result)
def test_enable_dependabot_security_updates(self):
"""
Test the enable_dependabot_security_updates function.
This test checks if the enable_dependabot_security_updates function successfully enables
Dependabot security updates.
It mocks the requests.put method to simulate different scenarios.
"""
owner = "my_owner"
repo = "my_repo"
access_token = "my_access_token"
ghe = ""
expected_url = (
f"https://api.github.com/repos/{owner}/{repo}/automated-security-fixes"
)
expected_headers = {
"Authorization": f"Bearer {access_token}",
"Accept": "application/vnd.github.london-preview+json",
}
with patch("requests.put") as mock_put:
mock_put.return_value.status_code = 204
with patch("builtins.print") as mock_print:
enable_dependabot_security_updates(ghe, owner, repo, access_token)
mock_put.assert_called_once_with(
expected_url, headers=expected_headers, timeout=20
)
mock_print.assert_called_once_with(
"\tDependabot security updates enabled successfully."
)
def test_enable_dependabot_security_updates_failed(self):
"""
Test the enable_dependabot_security_updates function when enabling fails.
This test checks if the enable_dependabot_security_updates function handles the case
when enabling Dependabot security updates fails.
It mocks the requests.put method to simulate different scenarios.
"""
owner = "my_owner"
repo = "my_repo"
access_token = "my_access_token"
ghe = ""
expected_url = (
f"https://api.github.com/repos/{owner}/{repo}/automated-security-fixes"
)
expected_headers = {
"Authorization": f"Bearer {access_token}",
"Accept": "application/vnd.github.london-preview+json",
}
with patch("requests.put") as mock_put:
mock_put.return_value.status_code = 500
with patch("builtins.print") as mock_print:
enable_dependabot_security_updates(ghe, owner, repo, access_token)
mock_put.assert_called_once_with(
expected_url, headers=expected_headers, timeout=20
)
mock_print.assert_called_once_with(
"\tFailed to enable Dependabot security updates."
)
class TestCommitChanges(unittest.TestCase):
"""Test the commit_changes function in evergreen.py"""
@patch("uuid.uuid4")
def test_commit_changes(self, mock_uuid):
"""Test the commit_changes function."""
mock_uuid.return_value = uuid.UUID(
"12345678123456781234567812345678"
) # Mock UUID generation
mock_repo = MagicMock() # Mock repo object
mock_repo.default_branch = "main"
mock_repo.ref.return_value.object.sha = "abc123" # Mock SHA for latest commit
mock_repo.create_ref.return_value = True
mock_repo.create_file.return_value = True
mock_repo.create_pull.return_value = "MockPullRequest"
dependabot_file_name = ".github/dependabot.yml"
title = "Test Title"
body = "Test Body"
dependabot_file = 'dependencies:\n - package_manager: "python"\n directory: "/"\n update_schedule: "live"'
branch_name = "dependabot-12345678-1234-5678-1234-567812345678"
commit_message = "Create " + dependabot_file_name
result = commit_changes(
title,
body,
mock_repo,
dependabot_file,
commit_message,
dependabot_file_name,
)
# Assert that the methods were called with the correct arguments
mock_repo.create_ref.assert_called_once_with(
f"refs/heads/{branch_name}", "abc123"
)
mock_repo.create_file.assert_called_once_with(
path=dependabot_file_name,
message=commit_message,
content=dependabot_file.encode(),
branch=branch_name,
)
mock_repo.create_pull.assert_called_once_with(
title=title,
body=body,
head=branch_name,
base="main",
)
# Assert that the function returned the expected result
self.assertEqual(result, "MockPullRequest")
class TestCheckPendingPullsForDuplicates(unittest.TestCase):
"""Test the check_pending_pulls_for_duplicates function."""
def test_check_pending_pulls_for_duplicates_no_duplicates(self):
"""Test the check_pending_pulls_for_duplicates function where there are no duplicates to be found."""
mock_repo = MagicMock() # Mock repo object
mock_pull_request = MagicMock()
mock_pull_request.title = "not-dependabot-branch"
mock_repo.pull_requests.return_value = [mock_pull_request]
result = check_pending_pulls_for_duplicates("dependabot-branch", mock_repo)
# Assert that the function returned the expected result
self.assertEqual(result, False)
def test_check_pending_pulls_for_duplicates_with_duplicates(self):
"""Test the check_pending_pulls_for_duplicates function where there are duplicates to be found."""
mock_repo = MagicMock() # Mock repo object
mock_pull_request = MagicMock()
mock_pull_request.title = "dependabot-branch"
mock_repo.pull_requests.return_value = [mock_pull_request]
result = check_pending_pulls_for_duplicates(mock_pull_request.title, mock_repo)
# Assert that the function returned the expected result
self.assertEqual(result, True)
class TestCheckPendingIssuesForDuplicates(unittest.TestCase):
"""Test the check_pending_Issues_for_duplicates function."""
def test_check_pending_issues_for_duplicates_no_duplicates(self):
"""Test the check_pending_Issues_for_duplicates function where there are no duplicates to be found."""
mock_issue = MagicMock()
mock_issue.title = "Other Issue"
mock_issue.issues.return_value = [mock_issue]
result = check_pending_issues_for_duplicates("Enable Dependabot", mock_issue)
mock_issue.issues.assert_called_once_with(state="open")
# Assert that the function returned the expected result
self.assertEqual(result, False)
def test_check_pending_issues_for_duplicates_with_duplicates(self):
"""Test the check_pending_issues_for_duplicates function where there are duplicates to be found."""
mock_issue = MagicMock()
mock_issue.title = "Enable Dependabot"
mock_issue.issues.return_value = [mock_issue]
result = check_pending_issues_for_duplicates("Enable Dependabot", mock_issue)
mock_issue.issues.assert_called_once_with(state="open")
# Assert that the function returned the expected result
self.assertEqual(result, True)
class TestGetReposIterator(unittest.TestCase):
"""Test the get_repos_iterator function in evergreen.py"""
@patch("github3.login")
def test_get_repos_iterator_with_organization(self, mock_github):
"""Test the get_repos_iterator function with an organization"""
organization = "my_organization"
repository_list = []
github_connection = mock_github.return_value
mock_organization = MagicMock()
mock_repositories = MagicMock()
mock_organization.repositories.return_value = mock_repositories
github_connection.organization.return_value = mock_organization
result = get_repos_iterator(
organization, None, repository_list, github_connection
)
# Assert that the organization method was called with the correct argument
github_connection.organization.assert_called_once_with(organization)
# Assert that the repositories method was called on the organization object
mock_organization.repositories.assert_called_once()
# Assert that the function returned the expected result
self.assertEqual(result, mock_repositories)
@patch("github3.login")
def test_get_repos_iterator_with_repository_list(self, mock_github):
"""Test the get_repos_iterator function with a repository list"""
organization = None
repository_list = ["org/repo1", "org/repo2"]
github_connection = mock_github.return_value
mock_repository = MagicMock()
mock_repository_list = [mock_repository, mock_repository]
github_connection.repository.side_effect = mock_repository_list
result = get_repos_iterator(
organization, None, repository_list, github_connection
)
# Assert that the repository method was called with the correct arguments for each repository in the list
expected_calls = [
unittest.mock.call("org", "repo1"),
unittest.mock.call("org", "repo2"),
]
github_connection.repository.assert_has_calls(expected_calls)
# Assert that the function returned the expected result
self.assertEqual(result, mock_repository_list)
@patch("github3.login")
def test_get_repos_iterator_with_team(self, mock_github):
"""Test the get_repos_iterator function with a team"""
organization = "my_organization"
repository_list = []
team_name = "my_team"
github_connection = mock_github.return_value
mock_team_repositories = MagicMock()
github_connection.organization.return_value.team_by_name.return_value.repositories.return_value = (
mock_team_repositories
)
result = get_repos_iterator(
organization,
team_name,
repository_list,
github_connection,
)
# Assert that the organization method was called with the correct argument
github_connection.organization.assert_called_once_with(organization)
# Assert that the team_by_name method was called on the organization object
github_connection.organization.return_value.team_by_name.assert_called_once_with(
team_name
)
# Assert that the repositories method was called on the team object
github_connection.organization.return_value.team_by_name.return_value.repositories.assert_called_once()
# Assert that the function returned the expected result
self.assertEqual(result, mock_team_repositories)
class TestGetGlobalProjectId(unittest.TestCase):
"""Test the get_global_project_id function in evergreen.py"""
@patch("requests.post")
def test_get_global_project_id_success(self, mock_post):
"""Test the get_global_project_id function when the request is successful."""
token = "my_token"
organization = "my_organization"
number = 123
ghe = ""
expected_url = "https://api.github.com/graphql"
expected_headers = {"Authorization": f"Bearer {token}"}
expected_data = {
"query": f'query{{organization(login: "{organization}") {{projectV2(number: {number}){{id}}}}}}'
}
expected_response = {
"data": {"organization": {"projectV2": {"id": "my_project_id"}}}
}
mock_post.return_value.status_code = 200
mock_post.return_value.json.return_value = expected_response
result = get_global_project_id(ghe, token, organization, number)
mock_post.assert_called_once_with(
expected_url, headers=expected_headers, json=expected_data, timeout=20
)
self.assertEqual(result, "my_project_id")
@patch("requests.post")
def test_get_global_project_id_request_failed(self, mock_post):
"""Test the get_global_project_id function when the request fails."""
token = "my_token"
organization = "my_organization"
number = 123
ghe = ""
expected_url = "https://api.github.com/graphql"
expected_headers = {"Authorization": f"Bearer {token}"}
expected_data = {
"query": f'query{{organization(login: "{organization}") {{projectV2(number: {number}){{id}}}}}}'
}
mock_post.side_effect = requests.exceptions.RequestException("Request failed")
with patch("builtins.print") as mock_print:
result = get_global_project_id(ghe, token, organization, number)
mock_post.assert_called_once_with(
expected_url, headers=expected_headers, json=expected_data, timeout=20
)
mock_print.assert_called_once_with("Request failed: Request failed")
self.assertIsNone(result)
@patch("requests.post")
def test_get_global_project_id_parse_response_failed(self, mock_post):
"""Test the get_global_project_id function when parsing the response fails."""
token = "my_token"
organization = "my_organization"
number = 123
ghe = ""
expected_url = "https://api.github.com/graphql"
expected_headers = {"Authorization": f"Bearer {token}"}
expected_data = {
"query": f'query{{organization(login: "{organization}") {{projectV2(number: {number}){{id}}}}}}'
}
expected_response = {"data": {"organization": {"projectV2": {}}}}
mock_post.return_value.status_code = 200
mock_post.return_value.json.return_value = expected_response
with patch("builtins.print") as mock_print:
result = get_global_project_id(ghe, token, organization, number)
mock_post.assert_called_once_with(
expected_url, headers=expected_headers, json=expected_data, timeout=20
)
mock_print.assert_called_once_with("Failed to parse response: 'id'")
self.assertIsNone(result)
class TestGetGlobalIssueId(unittest.TestCase):
"""Test the get_global_issue_id function in evergreen.py"""
@patch("requests.post")
def test_get_global_issue_id_success(self, mock_post):
"""Test the get_global_issue_id function for a successful request"""
token = "my_token"
organization = "my_organization"
repository = "my_repository"
issue_number = 123
ghe = ""
expected_response = {"data": {"repository": {"issue": {"id": "1234567890"}}}}
mock_post.return_value.status_code = 200
mock_post.return_value.json.return_value = expected_response
result = get_global_issue_id(ghe, token, organization, repository, issue_number)
mock_post.assert_called_once()
self.assertEqual(result, "1234567890")
@patch("requests.post")
def test_get_global_issue_id_request_failed(self, mock_post):
"""Test the get_global_issue_id function when the request fails"""
token = "my_token"
organization = "my_organization"
repository = "my_repository"
issue_number = 123
ghe = ""
mock_post.side_effect = requests.exceptions.RequestException("Request failed")
result = get_global_issue_id(ghe, token, organization, repository, issue_number)
mock_post.assert_called_once()
self.assertIsNone(result)
@patch("requests.post")
def test_get_global_issue_id_parse_response_failed(self, mock_post):
"""Test the get_global_issue_id function when parsing the response fails"""
token = "my_token"
organization = "my_organization"
repository = "my_repository"
issue_number = 123
ghe = ""
expected_response = {"data": {"repository": {"issue": {}}}}
mock_post.return_value.status_code = 200
mock_post.return_value.json.return_value = expected_response
result = get_global_issue_id(ghe, token, organization, repository, issue_number)
mock_post.assert_called_once()
self.assertIsNone(result)
class TestGetGlobalPullRequestID(unittest.TestCase):
"""Test the get_global_pr_id function in evergreen.py"""
@patch("requests.post")
def test_get_global_pr_id_success(self, mock_post):
"""Test the get_global_pr_id function when the request is successful."""
# Mock the response from requests.post
mock_response = MagicMock()
mock_response.raise_for_status.return_value = None
mock_response.json.return_value = {
"data": {"repository": {"pullRequest": {"id": "test_id"}}}
}
mock_post.return_value = mock_response
# Call the function with test data
result = get_global_pr_id("", "test_token", "test_org", "test_repo", 1)
# Check that the result is as expected
self.assertEqual(result, "test_id")
@patch("requests.post")
def test_get_global_pr_id_request_exception(self, mock_post):
"""Test the get_global_pr_id function when the request fails."""
# Mock requests.post to raise a RequestException
mock_post.side_effect = requests.exceptions.RequestException
# Call the function with test data
result = get_global_pr_id("", "test_token", "test_org", "test_repo", 1)
# Check that the result is None
self.assertIsNone(result)
@patch("requests.post")
def test_get_global_pr_id_key_error(self, mock_post):
"""Test the get_global_pr_id function when the response cannot be parsed."""
# Mock the response from requests.post
mock_response = MagicMock()
mock_response.raise_for_status.return_value = None
mock_response.json.return_value = {}
mock_post.return_value = mock_response
# Call the function with test data
result = get_global_pr_id("", "test_token", "test_org", "test_repo", 1)
# Check that the result is None
self.assertIsNone(result)
class TestLinkItemToProject(unittest.TestCase):
"""Test the link_item_to_project function in evergreen.py"""
@patch("requests.post")
def test_link_item_to_project_success(self, mock_post):
"""Test linking an item to a project successfully."""
token = "my_token"
project_id = "my_project_id"
item_id = "my_item_id"
ghe = ""
expected_url = "https://api.github.com/graphql"
expected_headers = {"Authorization": f"Bearer {token}"}
expected_data = {
"query": f'mutation {{addProjectV2ItemById(input: {{projectId: "{project_id}", contentId: "{item_id}"}}) {{item {{id}}}}}}'
}
mock_response = MagicMock()
mock_response.status_code = 200
mock_post.return_value = mock_response
result = link_item_to_project(ghe, token, project_id, item_id)
mock_post.assert_called_once_with(
expected_url, headers=expected_headers, json=expected_data, timeout=20
)
mock_response.raise_for_status.assert_called_once()
# Assert that the function returned None
self.assertIsNotNone(result)
@patch("requests.post")
def test_link_item_to_project_request_exception(self, mock_post):
"""Test handling a requests exception when linking an item to a project."""
token = "my_token"
project_id = "my_project_id"
item_id = "my_item_id"
ghe = ""
expected_url = "https://api.github.com/graphql"
expected_headers = {"Authorization": f"Bearer {token}"}
expected_data = {
"query": f'mutation {{addProjectV2ItemById(input: {{projectId: "{project_id}", contentId: "{item_id}"}}) {{item {{id}}}}}}'
}
mock_post.side_effect = requests.exceptions.RequestException("Request failed")
with patch("builtins.print") as mock_print:
result = link_item_to_project(ghe, token, project_id, item_id)
mock_post.assert_called_once_with(
expected_url, headers=expected_headers, json=expected_data, timeout=20
)
mock_print.assert_called_once_with("Request failed: Request failed")
# Assert that the function returned None
self.assertIsNone(result)
class TestIsRepoCreateDateBeforeCreatedAfterDate(unittest.TestCase):
"""Test the is_repo_create_date_before_created_after_date function in evergreen.py"""
def test_is_repo_create_date_before_created_after_date(self):
"""Test the repo.created_at date is before created_after_date and has timezone."""
repo_created_at = "2020-01-01T05:00:00Z"
created_after_date = "2021-01-01"
result = is_repo_created_date_before(repo_created_at, created_after_date)
self.assertTrue(result)
def test_is_repo_create_date_is_after_created_after_date(self):
"""Test the repo.created_at date is after created_after_date and has timezone."""
repo_created_at = "2022-01-01T05:00:00Z"
created_after_date = "2021-01-01"
result = is_repo_created_date_before(repo_created_at, created_after_date)
self.assertFalse(result)
def test_is_repo_created_date_has_no_time_zone(self):
"""Test the repo.created_at date is before created_after_date with no timezone."""
repo_created_at = "2020-01-01"
created_after_date = "2021-01-01"
result = is_repo_created_date_before(repo_created_at, created_after_date)
self.assertTrue(result)
def test_is_created_after_date_is_empty_string(self):
"""Test the repo.created_at date is after created_after_date."""
repo_created_at = "2020-01-01"
created_after_date = ""
result = is_repo_created_date_before(repo_created_at, created_after_date)
self.assertFalse(result)
def test_is_repo_created_date_is_before_created_after_date_without_timezene_again(
self,
):
"""Test the repo.created_at date is before created_after_date without timezone again."""
repo_created_at = "2018-01-01"
created_after_date = "2020-01-01"
result = is_repo_created_date_before(repo_created_at, created_after_date)
self.assertTrue(result)
def test_is_repo_created_date_and_created_after_date_is_not_a_date(self):
"""Test the repo.created_at date and the created_after_date argument is not a date."""
repo_created_at = "2018-01-01"
created_after_date = "Not a date"
with self.assertRaises(ValueError):
is_repo_created_date_before(repo_created_at, created_after_date)
class TestCheckExistingConfig(unittest.TestCase):
"""
Test cases for the check_existing_config function
"""
def test_check_existing_config_with_existing_config(self):
"""
Test the case where there is an existing configuration
"""
mock_repo = MagicMock()
filename = "dependabot.yaml"
mock_repo.file_contents.return_value.size = 5
result = check_existing_config(mock_repo, filename)
self.assertIsNotNone(result)
def test_check_existing_config_without_existing_config(self):
"""
Test the case where there is no existing configuration
"""
mock_repo = MagicMock()
mock_response = MagicMock()
mock_repo.file_contents.side_effect = github3.exceptions.NotFoundError(
mock_response
)
result = check_existing_config(mock_repo, "dependabot.yml")
self.assertIsNone(result)
if __name__ == "__main__":
unittest.main()