-
Notifications
You must be signed in to change notification settings - Fork 15
/
test_contributors.py
204 lines (177 loc) · 7.14 KB
/
test_contributors.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
"""This module contains the tests for the contributors.py module"""
import unittest
from unittest.mock import MagicMock, patch
from contributor_stats import ContributorStats
from contributors import get_all_contributors, get_contributors
class TestContributors(unittest.TestCase):
"""
Test case for the contributors module.
"""
@patch("contributors.contributor_stats.ContributorStats")
def test_get_contributors(self, mock_contributor_stats):
"""
Test the get_contributors function.
"""
mock_repo = MagicMock()
mock_user = MagicMock()
mock_user.login = "user"
mock_user.avatar_url = "https://avatars.githubusercontent.com/u/12345678?v=4"
mock_user.contributions_count = 100
mock_repo.contributors.return_value = [mock_user]
mock_repo.full_name = "owner/repo"
get_contributors(mock_repo, "2022-01-01", "2022-12-31", "")
mock_contributor_stats.assert_called_once_with(
"user",
False,
"https://avatars.githubusercontent.com/u/12345678?v=4",
100,
"https://github.com/owner/repo/commits?author=user&since=2022-01-01&until=2022-12-31",
"",
)
@patch("contributors.get_contributors")
def test_get_all_contributors_with_organization(self, mock_get_contributors):
"""
Test the get_all_contributors function when an organization is provided.
"""
mock_github_connection = MagicMock()
mock_github_connection.organization().repositories.return_value = [
"repo1",
"repo2",
]
mock_get_contributors.return_value = [
ContributorStats(
"user",
False,
"https://avatars.githubusercontent.com/u/29484535?v=4",
100,
"commit_url",
"sponsor_url_1",
),
]
ghe = ""
result = get_all_contributors(
"org", "", "2022-01-01", "2022-12-31", mock_github_connection, ghe
)
self.assertEqual(
result,
[
ContributorStats(
"user",
False,
"https://avatars.githubusercontent.com/u/29484535?v=4",
200,
"commit_url, commit_url",
"sponsor_url_1",
),
],
)
mock_get_contributors.assert_any_call("repo1", "2022-01-01", "2022-12-31", ghe)
mock_get_contributors.assert_any_call("repo2", "2022-01-01", "2022-12-31", ghe)
@patch("contributors.get_contributors")
def test_get_all_contributors_with_repository(self, mock_get_contributors):
"""
Test the get_all_contributors function when a repository is provided.
"""
mock_github_connection = MagicMock()
mock_github_connection.repository.return_value = "repo"
mock_get_contributors.return_value = [
ContributorStats(
"user",
False,
"https://avatars.githubusercontent.com/u/29484535?v=4",
100,
"commit_url2",
"sponsor_url_2",
)
]
ghe = ""
result = get_all_contributors(
"", ["owner/repo"], "2022-01-01", "2022-12-31", mock_github_connection, ghe
)
self.assertEqual(
result,
[
ContributorStats(
"user",
False,
"https://avatars.githubusercontent.com/u/29484535?v=4",
100,
"commit_url2",
"sponsor_url_2",
),
],
)
mock_get_contributors.assert_called_once_with(
"repo", "2022-01-01", "2022-12-31", ghe
)
@patch("contributors.contributor_stats.ContributorStats")
def test_get_contributors_skip_users_with_no_commits(self, mock_contributor_stats):
"""
Test the get_contributors function skips users with no commits in the date range.
"""
mock_repo = MagicMock()
mock_user = MagicMock()
mock_user.login = "user"
mock_user.avatar_url = "https://avatars.githubusercontent.com/u/12345678?v=4"
mock_user.contributions_count = 100
mock_user2 = MagicMock()
mock_user2.login = "user2"
mock_user2.avatar_url = "https://avatars.githubusercontent.com/u/12345679?v=4"
mock_user2.contributions_count = 102
mock_repo.contributors.return_value = [mock_user]
mock_repo.full_name = "owner/repo"
mock_repo.get_commits.side_effect = StopIteration
ghe = ""
get_contributors(mock_repo, "2022-01-01", "2022-12-31", ghe)
# Note that only user is returned and user2 is not returned here because there were no commits in the date range
mock_contributor_stats.assert_called_once_with(
"user",
False,
"https://avatars.githubusercontent.com/u/12345678?v=4",
100,
"https://github.com/owner/repo/commits?author=user&since=2022-01-01&until=2022-12-31",
"",
)
@patch("contributors.contributor_stats.ContributorStats")
def test_get_contributors_skip_bot(self, mock_contributor_stats):
"""
Test if the get_contributors function skips the bot user.
"""
mock_repo = MagicMock()
mock_user = MagicMock()
mock_user.login = "[bot]"
mock_user.avatar_url = "https://avatars.githubusercontent.com/u/12345678?v=4"
mock_user.contributions_count = 100
mock_repo.contributors.return_value = [mock_user]
mock_repo.full_name = "owner/repo"
mock_repo.get_commits.side_effect = StopIteration
ghe = ""
get_contributors(mock_repo, "2022-01-01", "2022-12-31", ghe)
# Note that only user is returned and user2 is not returned here because there were no commits in the date range
mock_contributor_stats.isEmpty()
@patch("contributors.contributor_stats.ContributorStats")
def test_get_contributors_no_commit_end_date(self, mock_contributor_stats):
"""
Test the get_contributors does the search of commits only with start date
"""
mock_repo = MagicMock()
mock_user = MagicMock()
mock_user.login = "user"
mock_user.avatar_url = "https://avatars.githubusercontent.com/u/12345678?v=4"
mock_user.contributions_count = 100
mock_repo.contributors.return_value = [mock_user]
mock_repo.full_name = "owner/repo"
mock_repo.get_commits.side_effect = StopIteration
ghe = ""
get_contributors(mock_repo, "2022-01-01", "", ghe)
# Note that only user is returned and user2 is not returned here because there were no commits in the date range
mock_contributor_stats.assert_called_once_with(
"user",
False,
"https://avatars.githubusercontent.com/u/12345678?v=4",
100,
"https://github.com/owner/repo/commits?author=user",
"",
)
if __name__ == "__main__":
unittest.main()