-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathtest_filepaths.py
More file actions
265 lines (243 loc) · 9.82 KB
/
test_filepaths.py
File metadata and controls
265 lines (243 loc) · 9.82 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
import pytest
from gidgethub import sansio
from bedevere import filepaths
from bedevere.prtype import Labels
from .test_news import check_n_pop_nonews_events
class FakeGH:
def __init__(self, *, getiter=None, getitem=None, post=None):
self._getitem_return = getitem
self._getiter_return = getiter
self._post_return = post
self.getitem_url = None
self.getiter_url = None
self.post_url = []
self.post_data = []
async def getitem(self, url):
self.getitem_url = url
return self._getitem_return
async def getiter(self, url):
self.getiter_url = url
for item in self._getiter_return:
yield item
async def post(self, url, *, data):
self.post_url.append(url)
self.post_data.append(data)
return self._post_return
GOOD_BASENAME = "2017-06-16-20-32-50.bpo-1234.nonce.rst"
async def test_news_only():
filenames = [
{
"filename": "README",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": f"Misc/NEWS.d/next/Lib/{GOOD_BASENAME}",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
]
issue = {"labels": []}
gh = FakeGH(getiter=filenames, getitem=issue)
event_data = {
"action": "opened",
"number": 1234,
"pull_request": {
"url": "https://api.github.com/repos/cpython/python/pulls/1234",
"statuses_url": "https://api.github.com/some/status",
"issue_url": "https://api.github.com/repos/cpython/python/issue/1234",
},
}
event = sansio.Event(event_data, event="pull_request", delivery_id="1")
await filepaths.router.dispatch(event, gh)
assert (
gh.getiter_url == "https://api.github.com/repos/cpython/python/pulls/1234/files"
)
assert gh.getitem_url == "https://api.github.com/repos/cpython/python/issue/1234"
assert len(gh.post_url) == 1
assert gh.post_url[0] == "https://api.github.com/some/status"
assert gh.post_data[0]["state"] == "success"
@pytest.mark.parametrize(
"author_association", ["OWNER", "MEMBER", "CONTRIBUTOR", "NONE"]
)
async def test_docs_only(author_association):
filenames = [
{
"filename": "/path/to/docs1.rst",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": "docs2.rst",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
]
issue = {"labels": [], "labels_url": "https://api.github.com/some/label"}
gh = FakeGH(getiter=filenames, getitem=issue)
event_data = {
"action": "opened",
"number": 1234,
"pull_request": {
"url": "https://api.github.com/repos/cpython/python/pulls/1234",
"statuses_url": "https://api.github.com/some/status",
"issue_url": "https://api.github.com/repos/cpython/python/issue/1234",
"issue_comment_url": "https://api.github.com/repos/cpython/python/issue/1234/comments",
"author_association": author_association,
},
}
event = sansio.Event(event_data, event="pull_request", delivery_id="1")
await filepaths.router.dispatch(event, gh)
assert (
gh.getiter_url == "https://api.github.com/repos/cpython/python/pulls/1234/files"
)
assert gh.getitem_url == "https://api.github.com/repos/cpython/python/issue/1234"
assert len(gh.post_url) == 1
assert gh.post_url[0] == "https://api.github.com/some/label"
assert gh.post_data[0] == [Labels.docs.value, Labels.skip_news.value]
@pytest.mark.parametrize(
"author_association", ["OWNER", "MEMBER", "CONTRIBUTOR", "NONE"]
)
async def test_tests_only(author_association):
filenames = [
{
"filename": "/path/to/test_docs1.py",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": "test_docs2.py",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
]
issue = {"labels": [], "labels_url": "https://api.github.com/some/label"}
gh = FakeGH(getiter=filenames, getitem=issue)
event_data = {
"action": "opened",
"number": 1234,
"pull_request": {
"url": "https://api.github.com/repos/cpython/python/pulls/1234",
"statuses_url": "https://api.github.com/some/status",
"issue_url": "https://api.github.com/repos/cpython/python/issue/1234",
"issue_comment_url": "https://api.github.com/repos/cpython/python/issue/1234/comments",
"author_association": author_association,
},
}
event = sansio.Event(event_data, event="pull_request", delivery_id="1")
await filepaths.router.dispatch(event, gh)
assert (
gh.getiter_url == "https://api.github.com/repos/cpython/python/pulls/1234/files"
)
assert gh.getitem_url == "https://api.github.com/repos/cpython/python/issue/1234"
assert len(gh.post_url) == 1
assert gh.post_url.pop(0) == "https://api.github.com/some/label"
assert gh.post_data.pop(0) == [Labels.tests.value, Labels.skip_news.value]
# Don't post any comment
assert gh.post_url == []
assert gh.post_data == []
async def test_docs_and_tests():
filenames = [
{
"filename": "/path/to/docs.rst",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": "test_docs2.py",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
]
issue = {
"labels": [{"name": "skip news"}],
"labels_url": "https://api.github.com/some/label",
}
gh = FakeGH(getiter=filenames, getitem=issue)
event_data = {
"action": "opened",
"number": 1234,
"pull_request": {
"url": "https://api.github.com/repos/cpython/python/pulls/1234",
"statuses_url": "https://api.github.com/some/status",
"issue_url": "https://api.github.com/repos/cpython/python/issue/1234",
},
}
event = sansio.Event(event_data, event="pull_request", delivery_id="1")
await filepaths.router.dispatch(event, gh)
assert (
gh.getiter_url == "https://api.github.com/repos/cpython/python/pulls/1234/files"
)
assert gh.getitem_url == "https://api.github.com/repos/cpython/python/issue/1234"
# Only creates tests label.
assert len(gh.post_url) == 2
assert gh.post_url[0] == "https://api.github.com/some/label"
assert gh.post_data[0] == [Labels.tests.value]
assert gh.post_url[1] == "https://api.github.com/some/status"
assert gh.post_data[1]["state"] == "success"
async def test_news_and_tests():
filenames = [
{
"filename": "/path/to/docs.rst",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": "test_docs2.py",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": f"Misc/NEWS.d/next/Lib/{GOOD_BASENAME}",
"patch": "@@ -0,0 +1 @@ +Fix inspect.getsourcelines for module level frames/tracebacks",
},
]
issue = {"labels": [], "labels_url": "https://api.github.com/some/label"}
gh = FakeGH(getiter=filenames, getitem=issue)
event_data = {
"action": "opened",
"number": 1234,
"pull_request": {
"url": "https://api.github.com/repos/cpython/python/pulls/1234",
"statuses_url": "https://api.github.com/some/status",
"issue_url": "https://api.github.com/repos/cpython/python/issue/1234",
},
}
event = sansio.Event(event_data, event="pull_request", delivery_id="1")
await filepaths.router.dispatch(event, gh)
assert (
gh.getiter_url == "https://api.github.com/repos/cpython/python/pulls/1234/files"
)
assert gh.getitem_url == "https://api.github.com/repos/cpython/python/issue/1234"
# Only creates type-tests label.
assert len(gh.post_url) == 2
assert gh.post_url[0] == "https://api.github.com/some/label"
assert gh.post_data[0] == [Labels.tests.value]
assert gh.post_url[1] == "https://api.github.com/some/status"
assert gh.post_data[1]["state"] == "success"
async def test_synchronize():
filenames = [
{
"filename": "/path/to/docs.rst",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": "test_docs2.py",
"patch": "@@ -31,3 +31,7 @@ # Licensed to PSF under a Contributor Agreement.",
},
{
"filename": f"Misc/NEWS.d/next/Lib/{GOOD_BASENAME}",
"patch": "@@ -0,0 +1 @@ +Fix inspect.getsourcelines for module level frames/tracebacks",
},
]
issue = {"labels": [], "labels_url": "https://api.github.com/some/label"}
gh = FakeGH(getiter=filenames, getitem=issue)
event_data = {
"action": "synchronize",
"number": 1234,
"pull_request": {
"url": "https://api.github.com/repos/cpython/python/pulls/1234",
"statuses_url": "https://api.github.com/some/status",
"issue_url": "https://api.github.com/repos/cpython/python/issue/1234",
},
}
event = sansio.Event(event_data, event="pull_request", delivery_id="1")
await filepaths.router.dispatch(event, gh)
assert (
gh.getiter_url == "https://api.github.com/repos/cpython/python/pulls/1234/files"
)
assert gh.getitem_url is None
# Only creates type-tests label.
assert len(gh.post_url) == 1
assert gh.post_url[0] == "https://api.github.com/some/status"
assert gh.post_data[0]["state"] == "success"