1
1
"""This module contains the tests for the ContributorStats class."""
2
2
3
3
import unittest
4
+ from unittest .mock import MagicMock , patch
4
5
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
+ )
6
12
7
13
8
14
class TestContributorStats (unittest .TestCase ):
@@ -28,7 +34,7 @@ def test_init(self):
28
34
Test the __init__ method of the ContributorStats class.
29
35
"""
30
36
self .assertEqual (self .contributor .username , "zkoppert" )
31
- self .assertEqual (self .contributor .new_contributor , False )
37
+ self .assertFalse (self .contributor .new_contributor )
32
38
self .assertEqual (
33
39
self .contributor .avatar_url ,
34
40
"https://avatars.githubusercontent.com/u/29484535?v=4" ,
@@ -95,7 +101,7 @@ def test_merge_contributors(self):
95
101
96
102
result = merge_contributors (all_contributors )
97
103
98
- self .assertTrue (expected_result == result )
104
+ self .assertEqual (expected_result , result )
99
105
100
106
def test_is_new_contributor_true (self ):
101
107
"""
@@ -154,5 +160,59 @@ def test_is_new_contributor_false(self):
154
160
self .assertFalse (result )
155
161
156
162
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
+
157
217
if __name__ == "__main__" :
158
218
unittest .main ()
0 commit comments