forked from sigmavirus24/github3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_issue.py
More file actions
294 lines (245 loc) · 10.8 KB
/
Copy pathtest_issue.py
File metadata and controls
294 lines (245 loc) · 10.8 KB
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
"""Integration tests for Issues."""
import github3
import github3.exceptions as exc
import pytest
from .helper import IntegrationHelper
class TestIssue(IntegrationHelper):
"""Integration tests for methods on the Issue class."""
def test_add_assignees(self):
"""Test the ability to add assignees to an issue."""
self.auto_login()
cassette_name = self.cassette_name("add_assignees")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=711
)
assigned = issue.add_assignees(["jacquerie"])
assert assigned is True
def test_add_labels(self):
"""Test the ability to add a label to an issue."""
self.auto_login()
cassette_name = self.cassette_name("add_labels")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=497
)
labels = issue.add_labels("in progress")
assert len(labels) > 0
for label in labels:
assert isinstance(label, github3.issues.label.ShortLabel)
def test_assign(self):
"""Test the ability to assign a user to an issue."""
self.auto_login()
cassette_name = self.cassette_name("assign")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=497
)
assigned = issue.assign("itsmemattchung")
assert assigned is True
def test_comment(self):
"""Test the ability to retrieve an issue comment."""
cassette_name = self.cassette_name("comment")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=497
)
comment = issue.comment("165547512")
assert isinstance(comment, github3.issues.comment.IssueComment)
def test_comments(self):
"""Test the ability to retrieve comments on an issue."""
cassette_name = self.cassette_name("comments")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue("sigmavirus24", "github3.py", 187)
assert issue is not None
comments = list(issue.comments())
assert len(comments) > 0
for comment in comments:
assert isinstance(comment, github3.issues.comment.IssueComment)
def test_closed(self):
"""Test the ability to close an issue."""
self.auto_login()
cassette_name = self.cassette_name("closed")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=509
)
closed = issue.close()
assert closed is True
def test_create_comment(self):
"""Test the ability to create a comment on an issue."""
self.auto_login()
cassette_name = self.cassette_name("create_comment")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=509
)
comment = issue.create_comment(
body="Comment from integration test"
)
assert isinstance(comment, github3.issues.comment.IssueComment)
def test_edit(self):
"""Test the ability to edit an issue."""
self.auto_login()
cassette_name = self.cassette_name("edit")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=509
)
edited = issue.edit(title="Integration test for editing an issue")
assert edited is True
def test_edit_multiple_assignees(self):
"""
Test the ability to edit an issue with multiple
assignees.
"""
self.token_login()
cassette_name = self.cassette_name("edit_multiple_assignees")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=637
)
assignees = ["itsmemattchung", "sigmavirus24"]
edited = issue.edit(
title="Integration test for editing an issue",
assignees=assignees,
)
assert edited is True
def test_edit_both_assignee_and_assignees(self):
"""
Test the ability to edit an issue with both
assignee and assignees.
"""
self.token_login()
cassette_name = self.cassette_name("edit_both_assignee_and_assignees")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=637
)
assignees = ["itsmemattchung", "sigmavirus24"]
with pytest.raises(exc.UnprocessableEntity):
issue.edit(
title="Integration test for editing an issue",
assignee="itsmemattchung",
assignees=assignees,
)
def test_events(self):
"""Test the ability to iterate over issue events."""
self.auto_login()
cassette_name = self.cassette_name("events")
with self.recorder.use_cassette(cassette_name):
repository = self.gh.repository("sigmavirus24", "github3.py")
issue = repository.issue(218)
for event in issue.events():
assert isinstance(event, github3.issues.event.IssueEvent)
assert isinstance(event.actor, github3.users.ShortUser)
def test_labels(self):
"""Test the ability to iterate over issue labels."""
cassette_name = self.cassette_name("labels")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue("sigmavirus24", "github3.py", 187)
assert issue is not None
for label in issue.labels():
assert isinstance(label, github3.issues.label.ShortLabel)
def test_lock(self):
"""Test the ability to lock an issue."""
self.auto_login()
cassette_name = self.cassette_name("lock")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="omgjlk", repository="demobrigade", number=1
)
locked = issue.lock()
assert locked is True
def test_pull_request(self):
"""Test the ability to retrieve the PR associated with an issue."""
cassette_name = self.cassette_name("pull_request")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue("sigmavirus24", "github3.py", 301)
assert issue is not None
pull_request = issue.pull_request()
assert isinstance(pull_request, github3.pulls.PullRequest)
def test_remove_all_labels(self):
"""Test the ability to remove all labels from an issue."""
self.auto_login()
cassette_name = self.cassette_name("remove_all_labels")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=509
)
labels = issue.remove_all_labels()
assert len(labels) == 0
def test_reopen(self):
"""Test the ability to reopen an issue."""
self.auto_login()
cassette_name = self.cassette_name("reopen")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=509
)
reopened = issue.reopen()
assert reopened is True
def test_remove_assignees(self):
"""Test the ability to remove assignees from an issue."""
self.auto_login()
cassette_name = self.cassette_name("remove_assignees")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=711
)
unassigned = issue.remove_assignees(["jacquerie"])
assert unassigned is True
def test_remove_label(self):
"""Test the ability to remove a label from an issue."""
self.auto_login()
cassette_name = self.cassette_name("remove_label")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=509
)
labels = issue.remove_label("in progress")
assert len(labels) > 0
for label in labels:
assert isinstance(label, github3.issues.label.ShortLabel)
def test_replace_labels(self):
"""Test the ability to replace labels from an issue."""
self.auto_login()
cassette_name = self.cassette_name("replace_labels")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="sigmavirus24", repository="github3.py", number=509
)
labels = ["in progress", "easy"]
replaced_labels = issue.replace_labels(labels)
assert len(replaced_labels) == len(labels)
for replaced_label in replaced_labels:
assert isinstance(replaced_label, github3.issues.label.ShortLabel)
def test_unlock(self):
"""Test the ability to lock an issue."""
self.auto_login()
cassette_name = self.cassette_name("unlock")
with self.recorder.use_cassette(cassette_name):
issue = self.gh.issue(
username="omgjlk", repository="demobrigade", number=1
)
unlocked = issue.unlock()
assert unlocked is True
class TestLabel(IntegrationHelper):
"""Integration test for methods on Label class."""
def test_delete(self):
"""Test the ability to delete a label."""
self.token_login()
cassette_name = self.cassette_name("delete")
with self.recorder.use_cassette(cassette_name):
repository = self.gh.repository("github3py", "delete_contents")
label = repository.create_label("deleteme", "ffffff")
assert label.delete()
def test_update(self):
"""Test the ability to update a label."""
self.token_login()
cassette_name = self.cassette_name("update")
with self.recorder.use_cassette(cassette_name):
repository = self.gh.repository("github3py", "delete_contents")
label = repository.create_label("integration", "ffffff")
assert label.update("integration", "5319e7")
label.delete()