Skip to content

Commit 8bb8976

Browse files
committed
Configure test coverage files and add tests
Signed-off-by: Zack Koppert <[email protected]>
1 parent e2d19fb commit 8bb8976

File tree

3 files changed

+132
-3
lines changed

3 files changed

+132
-3
lines changed

.coveragerc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[run]
2+
omit =
3+
# omit test files
4+
test_*.py

evergreen.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from dependabot_file import build_dependabot_file
1010

1111

12-
def main():
12+
def main(): # pragma: no cover
1313
"""Run the main program"""
1414

1515
# Get the environment variables
@@ -174,4 +174,4 @@ def commit_changes(title, body, repo, dependabot_file):
174174

175175

176176
if __name__ == "__main__":
177-
main()
177+
main() # pragma: no cover

test_evergreen.py

+126-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
""" Test the evergreen.py module. """
22
import unittest
3-
from unittest.mock import patch
3+
from unittest.mock import MagicMock, patch
4+
import uuid
45

56
from evergreen import (
7+
check_pending_pulls_for_duplicates,
8+
commit_changes,
69
enable_dependabot_security_updates,
10+
get_repos_iterator,
711
is_dependabot_security_updates_enabled,
812
)
913

@@ -176,5 +180,126 @@ def test_enable_dependabot_security_updates_failed(self):
176180
)
177181

178182

183+
class TestCommitChanges(unittest.TestCase):
184+
"""Test the commit_changes function in evergreen.py"""
185+
186+
@patch("uuid.uuid4")
187+
def test_commit_changes(self, mock_uuid):
188+
"""Test the commit_changes function."""
189+
mock_uuid.return_value = uuid.UUID(
190+
"12345678123456781234567812345678"
191+
) # Mock UUID generation
192+
mock_repo = MagicMock() # Mock repo object
193+
mock_repo.default_branch = "main"
194+
mock_repo.ref.return_value.object.sha = "abc123" # Mock SHA for latest commit
195+
mock_repo.create_ref.return_value = True
196+
mock_repo.create_file.return_value = True
197+
mock_repo.create_pull.return_value = "MockPullRequest"
198+
199+
title = "Test Title"
200+
body = "Test Body"
201+
dependabot_file = 'dependencies:\n - package_manager: "python"\n directory: "/"\n update_schedule: "live"'
202+
branch_name = "dependabot-12345678-1234-5678-1234-567812345678"
203+
result = commit_changes(title, body, mock_repo, dependabot_file)
204+
205+
# Assert that the methods were called with the correct arguments
206+
mock_repo.create_ref.assert_called_once_with(
207+
f"refs/heads/{branch_name}", "abc123"
208+
)
209+
mock_repo.create_file.assert_called_once_with(
210+
path=".github/dependabot.yaml",
211+
message="Create dependabot.yaml",
212+
content=dependabot_file.encode(),
213+
branch=branch_name,
214+
)
215+
mock_repo.create_pull.assert_called_once_with(
216+
title=title,
217+
body=body,
218+
head=branch_name,
219+
base="main",
220+
)
221+
222+
# Assert that the function returned the expected result
223+
self.assertEqual(result, "MockPullRequest")
224+
225+
226+
class TestCheckPendingPullsForDuplicates(unittest.TestCase):
227+
"""Test the check_pending_pulls_for_duplicates function."""
228+
229+
def test_check_pending_pulls_for_duplicates_no_duplicates(self):
230+
"""Test the check_pending_pulls_for_duplicates function where there are no duplicates to be found."""
231+
mock_repo = MagicMock() # Mock repo object
232+
mock_pull_request = MagicMock()
233+
mock_pull_request.head.ref = "not-dependabot-branch"
234+
mock_repo.pull_requests.return_value = [mock_pull_request]
235+
236+
result = check_pending_pulls_for_duplicates(mock_repo)
237+
238+
# Assert that the function returned the expected result
239+
self.assertEqual(result, False)
240+
241+
def test_check_pending_pulls_for_duplicates_with_duplicates(self):
242+
"""Test the check_pending_pulls_for_duplicates function where there are duplicates to be found."""
243+
mock_repo = MagicMock() # Mock repo object
244+
mock_pull_request = MagicMock()
245+
mock_pull_request.head.ref = "dependabot-branch"
246+
mock_repo.pull_requests.return_value = [mock_pull_request]
247+
248+
result = check_pending_pulls_for_duplicates(mock_repo)
249+
250+
# Assert that the function returned the expected result
251+
self.assertEqual(result, True)
252+
253+
254+
class TestGetReposIterator(unittest.TestCase):
255+
"""Test the get_repos_iterator function in evergreen.py"""
256+
257+
@patch("github3.login")
258+
def test_get_repos_iterator_with_organization(self, mock_github):
259+
"""Test the get_repos_iterator function with an organization"""
260+
organization = "my_organization"
261+
repository_list = []
262+
github_connection = mock_github.return_value
263+
264+
mock_organization = MagicMock()
265+
mock_repositories = MagicMock()
266+
mock_organization.repositories.return_value = mock_repositories
267+
github_connection.organization.return_value = mock_organization
268+
269+
result = get_repos_iterator(organization, repository_list, github_connection)
270+
271+
# Assert that the organization method was called with the correct argument
272+
github_connection.organization.assert_called_once_with(organization)
273+
274+
# Assert that the repositories method was called on the organization object
275+
mock_organization.repositories.assert_called_once()
276+
277+
# Assert that the function returned the expected result
278+
self.assertEqual(result, mock_repositories)
279+
280+
@patch("github3.login")
281+
def test_get_repos_iterator_with_repository_list(self, mock_github):
282+
"""Test the get_repos_iterator function with a repository list"""
283+
organization = None
284+
repository_list = ["org/repo1", "org/repo2"]
285+
github_connection = mock_github.return_value
286+
287+
mock_repository = MagicMock()
288+
mock_repository_list = [mock_repository, mock_repository]
289+
github_connection.repository.side_effect = mock_repository_list
290+
291+
result = get_repos_iterator(organization, repository_list, github_connection)
292+
293+
# Assert that the repository method was called with the correct arguments for each repository in the list
294+
expected_calls = [
295+
unittest.mock.call("org", "repo1"),
296+
unittest.mock.call("org", "repo2"),
297+
]
298+
github_connection.repository.assert_has_calls(expected_calls)
299+
300+
# Assert that the function returned the expected result
301+
self.assertEqual(result, mock_repository_list)
302+
303+
179304
if __name__ == "__main__":
180305
unittest.main()

0 commit comments

Comments
 (0)