-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathtest_filepaths.py
203 lines (178 loc) · 9.35 KB
/
test_filepaths.py
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
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'
check_n_pop_nonews_events(gh, author_association == 'NONE')
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'
check_n_pop_nonews_events(gh, author_association == 'NONE')
assert len(gh.post_url) == 1
assert gh.post_url[0] == 'https://api.github.com/some/label'
assert gh.post_data[0] == [Labels.tests.value]
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 type-tests label.
assert len(gh.post_url) == 2
assert gh.post_url[0] == 'https://api.github.com/some/status'
assert gh.post_data[0]['state'] == 'success'
assert gh.post_url[1] == 'https://api.github.com/some/label'
assert gh.post_data[1] == [Labels.tests.value]
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/status'
assert gh.post_data[0]['state'] == 'success'
assert gh.post_url[1] == 'https://api.github.com/some/label'
assert gh.post_data[1] == [Labels.tests.value]
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'