-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathtest_records.py
303 lines (262 loc) · 9.34 KB
/
test_records.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
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
295
296
297
298
299
300
301
302
303
from io import BytesIO
from pathlib import Path
import pytest
from installer.records import Hash, InvalidRecordEntry, RecordEntry, parse_record_file
#
# pytest fixture witchcraft
#
@pytest.fixture()
def record_simple_list():
return [
"file.py,sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI,3144",
"distribution-1.0.dist-info/RECORD,,",
]
@pytest.fixture()
def record_simple_iter(record_simple_list):
return iter(record_simple_list)
@pytest.fixture()
def record_simple_file(tmpdir, record_simple_list):
p = tmpdir.join("RECORD")
p.write("\n".join(record_simple_list))
with Path(p).open() as f:
yield f
@pytest.fixture()
def record_input(request):
return request.getfixturevalue(request.param)
SAMPLE_RECORDS = [
(
"purelib",
("test1.py", "sha256=Y0sCextp4SQtQNU-MSs7SsdxD1W-gfKJtUlEbvZ3i-4", 6),
b"test1\n",
True,
),
(
"purelib",
("test2.py", "sha256=fW_Xd08Nh2JNptzxbQ09EEwxkedx--LznIau1LK_Gg8", 6),
b"test2\n",
True,
),
(
"purelib",
("test3.py", "sha256=qwPDTx7OCCEf4qgDn9ZCQZmz9de1X_E7ETSzZHdsRcU", 6),
b"test3\n",
True,
),
(
"purelib",
(
"test4.py",
"sha256=Y0sCextp4SQtQNU-MSs7SsdxD1W-gfKJtUlEbvZ3i-4",
None,
),
b"test1\n",
True,
),
("purelib", ("test5.py", None, None), b"test1\n", True),
("purelib", ("test6.py", None, 6), b"test1\n", True),
(
"purelib",
("test7.py", "sha256=Y0sCextp4SQtQNU-MSs7SsdxD1W-gfKJtUlEbvZ3i-4", 7),
b"test1\n",
False,
),
(
"purelib",
("test7.py", "sha256=Y0sCextp4SQtQNU-MSs7SsdxD1W-gfKJtUlEbvZ3i-4", None),
b"not-test1\n",
False,
),
("purelib", ("test8.py", None, 10), b"test1\n", False),
]
#
# Actual Tests
#
class TestRecordEntry:
@pytest.mark.parametrize(
"path, hash_, size, caused_by",
[
("", "", "", ["path"]),
("", "", "non-int", ["path", "size"]),
("a.py", "", "non-int", ["size"]),
# Notice that we're explicitly allowing non-compliant hash values
("a.py", "some-random-value", "non-int", ["size"]),
],
)
def test_invalid_elements(self, path, hash_, size, caused_by):
with pytest.raises(InvalidRecordEntry) as exc_info:
RecordEntry.from_elements(path, hash_, size)
assert exc_info.value.elements == (path, hash_, size)
for word in caused_by:
assert word in str(exc_info.value)
@pytest.mark.parametrize(
"path, hash_, size",
[
("a.py", "", ""),
("a.py", "", "3144"),
("a.py", "sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI", ""),
("a.py", "sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI", "3144"),
],
)
def test_valid_elements(self, path, hash_, size):
RecordEntry.from_elements(path, hash_, size)
@pytest.mark.parametrize(
("scheme", "elements", "data", "passes_validation"), SAMPLE_RECORDS
)
def test_populates_attributes_correctly(
self, scheme, elements, data, passes_validation
):
path, hash_string, size = elements
record = RecordEntry.from_elements(path, hash_string, size)
assert record.path == path
assert record.size == size
if record.hash_ is not None:
assert isinstance(record.hash_, Hash)
assert record.hash_.name == "sha256"
assert record.hash_.value == hash_string[len("sha256=") :]
@pytest.mark.parametrize(
("scheme", "elements", "data", "passes_validation"), SAMPLE_RECORDS
)
def test_validation(self, scheme, elements, data, passes_validation):
record = RecordEntry.from_elements(*elements)
assert record.validate(data) == passes_validation
@pytest.mark.parametrize(
("scheme", "elements", "data", "passes_validation"), SAMPLE_RECORDS
)
def test_validate_stream(self, scheme, elements, data, passes_validation):
record = RecordEntry.from_elements(*elements)
assert record.validate_stream(BytesIO(data)) == passes_validation
@pytest.mark.parametrize(
("scheme", "elements", "data", "passes_validation"), SAMPLE_RECORDS
)
def test_string_representation(self, scheme, elements, data, passes_validation):
record = RecordEntry.from_elements(*elements)
expected_row = tuple(
[(str(elem) if elem is not None else "") for elem in elements]
)
assert record.to_row() == expected_row
@pytest.mark.parametrize(
("scheme", "elements", "data", "passes_validation"), SAMPLE_RECORDS
)
def test_string_representation_with_prefix(
self, scheme, elements, data, passes_validation
):
record = RecordEntry.from_elements(*elements)
expected_row = tuple(
[
(str(elem) if elem is not None else "")
for elem in ("prefix/" + elements[0], elements[1], elements[2])
]
)
assert record.to_row("prefix/") == expected_row
def test_equality(self):
record = RecordEntry.from_elements(
"file.py",
"sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI",
"3144",
)
record_same = RecordEntry.from_elements(
"file.py",
"sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI",
"3144",
)
record_different_name = RecordEntry.from_elements(
"file2.py",
"sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI",
"3144",
)
record_different_hash_name = RecordEntry.from_elements(
"file.py",
"md5=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI",
"3144",
)
record_different_hash_value = RecordEntry.from_elements(
"file.py",
"sha256=qwertyuiodfdsflkgshdlkjghrefawrwerwffsdfflk29",
"3144",
)
record_different_size = RecordEntry.from_elements(
"file.py",
"sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI",
"10",
)
assert record == record_same
assert record != "random string"
assert record != record_different_name
assert record != record_different_hash_name
assert record != record_different_hash_value
assert record != record_different_size
# Ensure equality is based on current state
record_same.hash_ = None
assert record != record_same
class TestParseRecordFile:
def test_accepts_empty_iterable(self):
list(parse_record_file([]))
@pytest.mark.parametrize(
"record_input",
["record_simple_list", "record_simple_iter", "record_simple_file"],
indirect=True,
)
def test_accepts_all_kinds_of_iterables(self, record_input):
"""Should accepts any iterable, e.g. container, iterator, or file object."""
records = list(parse_record_file(record_input))
assert len(records) == 2
assert records == [
(
"file.py",
"sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI",
"3144",
),
("distribution-1.0.dist-info/RECORD", "", ""),
]
@pytest.mark.parametrize(
"line, element_count",
[
pytest.param(
"file.py,sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI,3144,",
4,
id="four",
),
pytest.param(
"distribution-1.0.dist-info/RECORD,,,,",
5,
id="five",
),
],
)
def test_rejects_wrong_element_count(self, line, element_count):
with pytest.raises(InvalidRecordEntry) as exc_info:
list(parse_record_file([line]))
message = f"expected 3 elements, got {element_count}"
assert message in str(exc_info.value)
def test_shows_correct_row_number(self):
record_lines = [
"file1.py,sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI,3144",
"file2.py,sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI,3144",
"file3.py,sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI,3144",
"distribution-1.0.dist-info/RECORD,,,,",
]
with pytest.raises(InvalidRecordEntry) as exc_info:
list(parse_record_file(record_lines))
assert "Row Index 3" in str(exc_info.value)
def test_parse_record_entry_with_comma(self):
record_lines = [
'"file1,file2.txt",sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI,3144',
"distribution-1.0.dist-info/RECORD,,",
]
records = list(parse_record_file(record_lines))
assert records == [
(
"file1,file2.txt",
"sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\\_pNh2yI",
"3144",
),
("distribution-1.0.dist-info/RECORD", "", ""),
]
def test_parse_record_entry_with_backslash_path(self):
record_lines = [
"distribution-1.0.dist-info\\RECORD,,",
]
records = list(parse_record_file(record_lines))
assert records == [
("distribution-1.0.dist-info/RECORD", "", ""),
]