@@ -34,6 +34,7 @@ def test_measure_time_to_first_response(self):
34
34
# Set up the mock GitHub issues
35
35
mock_issue1 = MagicMock ()
36
36
mock_issue1 .comments = 2
37
+ mock_issue1 .issue .user .login = "issue_owner"
37
38
mock_issue1 .created_at = "2023-01-01T00:00:00Z"
38
39
39
40
# Set up the mock GitHub issue comments
@@ -55,6 +56,7 @@ def test_measure_time_to_first_response_no_comments(self):
55
56
# Set up mock issues with no comments
56
57
mock_issue1 = MagicMock ()
57
58
mock_issue1 .comments = 0
59
+ mock_issue1 .issue .user .login = "issue_owner"
58
60
mock_issue1 .created_at = "2023-01-01T00:00:00Z"
59
61
60
62
# Call the function
@@ -70,6 +72,7 @@ def test_measure_time_to_first_response_with_pull_request_comments(self):
70
72
# Set up the mock GitHub issues
71
73
mock_issue1 = MagicMock ()
72
74
mock_issue1 .comments = 2
75
+ mock_issue1 .issue .user .login = "issue_owner"
73
76
mock_issue1 .created_at = "2023-01-01T00:00:00Z"
74
77
mock_issue1 .pull_request_urls = {"url" : "https://api.github.com/repos/owner/repo/pulls/1" }
75
78
@@ -93,6 +96,7 @@ def test_measure_time_to_first_response_issue_comment_faster(self):
93
96
# Set up the mock GitHub issues
94
97
mock_issue1 = MagicMock ()
95
98
mock_issue1 .comments = 2
99
+ mock_issue1 .issue .user .login = "issue_owner"
96
100
mock_issue1 .created_at = "2023-01-01T00:00:00Z"
97
101
mock_issue1 .pull_request_urls = {"url" : "https://api.github.com/repos/owner/repo/pulls/1" }
98
102
@@ -119,6 +123,7 @@ def test_measure_time_to_first_response_pull_request_comment_faster(self):
119
123
# Set up the mock GitHub issues
120
124
mock_issue1 = MagicMock ()
121
125
mock_issue1 .comments = 2
126
+ mock_issue1 .issue .user .login = "issue_owner"
122
127
mock_issue1 .created_at = "2023-01-01T00:00:00Z"
123
128
mock_issue1 .pull_request_urls = {"url" : "https://api.github.com/repos/owner/repo/pulls/1" }
124
129
@@ -144,6 +149,7 @@ def test_measure_time_to_first_response_ignore_users(self):
144
149
# Set up the mock GitHub issues
145
150
mock_issue1 = MagicMock ()
146
151
mock_issue1 .comments = 4
152
+ mock_issue1 .issue .user .login = "issue_owner"
147
153
mock_issue1 .created_at = "2023-01-01T00:00:00Z"
148
154
149
155
# Set up the mock GitHub issue comments (one ignored, one not ignored)
@@ -176,6 +182,7 @@ def test_measure_time_to_first_response_only_ignored_users(self):
176
182
# Set up the mock GitHub issues
177
183
mock_issue1 = MagicMock ()
178
184
mock_issue1 .comments = 4
185
+ mock_issue1 .issue .user .login = "issue_owner"
179
186
mock_issue1 .created_at = "2023-01-01T00:00:00Z"
180
187
mock_issue1 .pull_request_urls = {"url" : "https://api.github.com/repos/owner/repo/pulls/1" }
181
188
@@ -206,6 +213,40 @@ def test_measure_time_to_first_response_only_ignored_users(self):
206
213
# Check the results
207
214
self .assertEqual (result , expected_result )
208
215
216
+ def test_measure_time_to_first_response_ignore_issue_owners_comment (self ):
217
+ """Test that measure_time_to_first_response ignore issue owner's comment."""
218
+ # Set up the mock GitHub issues
219
+ mock_issue1 = MagicMock ()
220
+ mock_issue1 .comments = 4
221
+ mock_issue1 .issue .user .login = "issue_owner"
222
+ mock_issue1 .created_at = "2023-01-01T00:00:00Z"
223
+ mock_issue1 .pull_request_urls = {"url" : "https://api.github.com/repos/owner/repo/pulls/1" }
224
+
225
+ # Set up the mock GitHub issue comments
226
+ mock_comment1 = MagicMock ()
227
+ mock_comment1 .user .login = "issue_owner"
228
+ mock_comment1 .created_at = datetime .fromisoformat ("2023-01-02T00:00:00Z" )
229
+ mock_comment2 = MagicMock ()
230
+ mock_comment2 .user .login = "other_user"
231
+ mock_comment2 .created_at = datetime .fromisoformat ("2023-01-05T00:00:00Z" )
232
+ mock_issue1 .issue .comments .return_value = [mock_comment1 , mock_comment2 ]
233
+
234
+ # Set up the mock GitHub pull request comments
235
+ mock_pr_comment1 = MagicMock ()
236
+ mock_pr_comment1 .user .login = "issue_owner"
237
+ mock_pr_comment1 .submitted_at = datetime .fromisoformat ("2023-01-03T00:00:00Z" )
238
+ mock_pr_comment2 = MagicMock ()
239
+ mock_pr_comment2 .user .login = "other_user"
240
+ mock_pr_comment2 .submitted_at = datetime .fromisoformat ("2023-01-04T00:00:00Z" )
241
+ mock_issue1 .issue .pull_request ().reviews .return_value = [mock_pr_comment1 , mock_pr_comment2 ]
242
+
243
+ # Call the function
244
+ result = measure_time_to_first_response (mock_issue1 , None )
245
+ expected_result = timedelta (days = 3 )
246
+
247
+ # Check the results
248
+ self .assertEqual (result , expected_result )
249
+
209
250
210
251
class TestGetAverageTimeToFirstResponse (unittest .TestCase ):
211
252
"""Test the get_average_time_to_first_response function."""
0 commit comments