Skip to content

Commit 7f806e2

Browse files
fix: suggestions + add test to sponsorinfo
1 parent 4234b6a commit 7f806e2

4 files changed

+72
-17
lines changed

contributor_stats.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,10 @@ def get_sponsor_information(contributors: list, token: str, ghe: str) -> list:
153153
variables = {"username": contributor.username}
154154

155155
# Send the GraphQL request
156-
api_endpoint = (
157-
f"{ghe}/api/v3".removeprefix("https://") if ghe else "api.github.com"
158-
)
156+
api_endpoint = f"{ghe}/api/v3" if ghe else "https://api.github.com"
159157
headers = {"Authorization": f"Bearer {token}"}
160158
response = requests.post(
161-
f"https://{api_endpoint}/graphql",
159+
f"{api_endpoint}/graphql",
162160
json={"query": query, "variables": variables},
163161
headers=headers,
164162
timeout=60,
@@ -170,10 +168,9 @@ def get_sponsor_information(contributors: list, token: str, ghe: str) -> list:
170168

171169
data = response.json()["data"]
172170

171+
endpoint = ghe if ghe else "https://github.com"
173172
# if the user has a sponsor page, add it to the contributor object
174173
if data["repositoryOwner"]["hasSponsorsListing"]:
175-
contributor.sponsor_info = (
176-
f"https://{api_endpoint}/sponsors/{contributor.username}"
177-
)
174+
contributor.sponsor_info = f"{endpoint}/sponsors/{contributor.username}"
178175

179176
return contributors

contributors.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@ def get_contributors(repo: object, start_date: str, end_date: str, ghe: str):
173173
continue
174174

175175
# Store the contributor information in a ContributorStats object
176-
api_endpoint = ghe.removeprefix("https://") if ghe else "github.com"
176+
endpoint = ghe if ghe else "https://github.com"
177177
if start_date and end_date:
178-
commit_url = f"https://{api_endpoint}/{repo.full_name}/commits?author={user.login}&since={start_date}&until={end_date}"
178+
commit_url = f"{endpoint}/{repo.full_name}/commits?author={user.login}&since={start_date}&until={end_date}"
179179
else:
180-
commit_url = f"https://{api_endpoint}/{repo.full_name}/commits?author={user.login}"
180+
commit_url = f"{endpoint}/{repo.full_name}/commits?author={user.login}"
181181
contributor = contributor_stats.ContributorStats(
182182
user.login,
183183
False,

markdown.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,8 @@ def get_contributor_table(
185185
for url in commit_url_list:
186186
url = url.strip()
187187
# get the organization and repository name from the url ie. org1/repo2 from https://github.com/org1/repo2/commits?author-zkoppert
188-
api_endpoint = ghe.removeprefix("https://") if ghe else "github.com"
189-
org_repo_link_name = url.split("/commits")[0].split(f"{api_endpoint}/")[
190-
1
191-
]
188+
endpoint = ghe.removeprefix("https://") if ghe else "github.com"
189+
org_repo_link_name = url.split("/commits")[0].split(f"{endpoint}/")[1]
192190
url = f"[{org_repo_link_name}]({url})"
193191
commit_urls += f"{url}, "
194192
new_contributor = collaborator.new_contributor

test_contributor_stats.py

+63-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
"""This module contains the tests for the ContributorStats class."""
22

33
import unittest
4+
from unittest.mock import MagicMock, patch
45

5-
from contributor_stats import ContributorStats, is_new_contributor, merge_contributors
6+
from contributor_stats import (
7+
ContributorStats,
8+
get_sponsor_information,
9+
is_new_contributor,
10+
merge_contributors,
11+
)
612

713

814
class TestContributorStats(unittest.TestCase):
@@ -28,7 +34,7 @@ def test_init(self):
2834
Test the __init__ method of the ContributorStats class.
2935
"""
3036
self.assertEqual(self.contributor.username, "zkoppert")
31-
self.assertEqual(self.contributor.new_contributor, False)
37+
self.assertFalse(self.contributor.new_contributor)
3238
self.assertEqual(
3339
self.contributor.avatar_url,
3440
"https://avatars.githubusercontent.com/u/29484535?v=4",
@@ -95,7 +101,7 @@ def test_merge_contributors(self):
95101

96102
result = merge_contributors(all_contributors)
97103

98-
self.assertTrue(expected_result == result)
104+
self.assertEqual(expected_result, result)
99105

100106
def test_is_new_contributor_true(self):
101107
"""
@@ -154,5 +160,59 @@ def test_is_new_contributor_false(self):
154160
self.assertFalse(result)
155161

156162

163+
class TestSponsorInfo(unittest.TestCase):
164+
@patch("requests.post")
165+
def test_fetch_sponsor_info(self, mock_post):
166+
# Mock response data
167+
mock_response = MagicMock()
168+
mock_response.status_code = 200
169+
mock_response.json.return_value = {
170+
"data": {"repositoryOwner": {"hasSponsorsListing": True}}
171+
}
172+
mock_post.return_value = mock_response
173+
174+
# Mock contributors
175+
user = "user1"
176+
returning_contributors = [
177+
ContributorStats(
178+
username=user,
179+
new_contributor=False,
180+
avatar_url="https://avatars.githubusercontent.com/u/",
181+
contribution_count="100",
182+
commit_url="url1",
183+
sponsor_info="",
184+
),
185+
]
186+
187+
# Test parameters
188+
ghe = ""
189+
token = "token"
190+
191+
# Call the function
192+
result = get_sponsor_information(returning_contributors, token, ghe)
193+
194+
# Assertions
195+
self.assertEqual(result[0].sponsor_info, "https://github.com/sponsors/user1")
196+
197+
# Ensure the post request was called with the correct parameters
198+
mock_post.assert_called_once_with(
199+
"https://api.github.com/graphql",
200+
json={
201+
"query": """
202+
query($username: String!){
203+
repositoryOwner(login: $username) {
204+
... on User {
205+
hasSponsorsListing
206+
}
207+
}
208+
}
209+
""",
210+
"variables": {"username": "user1"},
211+
},
212+
headers={"Authorization": "Bearer token"},
213+
timeout=60,
214+
)
215+
216+
157217
if __name__ == "__main__":
158218
unittest.main()

0 commit comments

Comments
 (0)