|
1 | 1 | """ Test the evergreen.py module. """
|
2 | 2 | import unittest
|
3 |
| -from unittest.mock import patch |
| 3 | +from unittest.mock import MagicMock, patch |
| 4 | +import uuid |
4 | 5 |
|
5 | 6 | from evergreen import (
|
| 7 | + check_pending_pulls_for_duplicates, |
| 8 | + commit_changes, |
6 | 9 | enable_dependabot_security_updates,
|
| 10 | + get_repos_iterator, |
7 | 11 | is_dependabot_security_updates_enabled,
|
8 | 12 | )
|
9 | 13 |
|
@@ -176,5 +180,126 @@ def test_enable_dependabot_security_updates_failed(self):
|
176 | 180 | )
|
177 | 181 |
|
178 | 182 |
|
| 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 | + |
179 | 304 | if __name__ == "__main__":
|
180 | 305 | unittest.main()
|
0 commit comments