Skip to content

Commit a3be946

Browse files
committed
Create reading from a large compressed file
Previously, only the uncompressed data was "large", but issue #160 is only triggered if the *compressed* data is large (in this case, larger than 128 kB), which apparently exceeds some input buffer. See #160
1 parent 9cd7987 commit a3be946

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/conftest.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
def create_large_file(tmp_path):
1111
def _create_large_file(extension):
1212
path = tmp_path / f"large{extension}"
13-
random_text = "".join(random.choices(string.ascii_lowercase, k=1024))
14-
# Make the text a lot bigger in order to ensure that it is larger than the
15-
# pipe buffer size.
16-
random_text *= 2048
13+
random.seed(0)
14+
chars = string.ascii_lowercase + "\n"
15+
# Do not decrease this length. The generated file needs to have
16+
# a certain length after compression to trigger some bugs
17+
# (in particular, 512 kB is not sufficient).
18+
random_text = "".join(random.choices(chars, k=1024 * 1024))
1719
with xopen(path, "w") as f:
1820
f.write(random_text)
1921
return path

0 commit comments

Comments
 (0)