* Pass 7659 tests. * Fix some codecs for use with Zarr 3, zarr_format=2 (#123). * Fix lz4h5 codec when block size is less than compressed size (#126). * Fix pglz_compress is not thread-safe. * Set __module__ attribute on public objects. * Drop support for Python 3.9, deprecate Python 3.10. - Add patch no-length-assertion-aborts.patch: * Do not call h5lookup methods that cause failed assertions. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-imagecodecs?expand=0&rev=42
32 lines
1.4 KiB
Diff
32 lines
1.4 KiB
Diff
Index: imagecodecs-2025.3.30/tests/test_imagecodecs.py
|
|
===================================================================
|
|
--- imagecodecs-2025.3.30.orig/tests/test_imagecodecs.py
|
|
+++ imagecodecs-2025.3.30/tests/test_imagecodecs.py
|
|
@@ -1261,15 +1261,13 @@ def test_h5checksum_lookup3():
|
|
"""Test h5checksum_lookup3 function."""
|
|
from imagecodecs import h5checksum_lookup3 as lookup3
|
|
|
|
- assert lookup3(b'', 0) == 0xDEADBEEF
|
|
- assert lookup3(b'', 0xDEADBEEF) == 0xBD5B7DDE
|
|
assert lookup3(b'Four score and seven years ago', 0) == 0x17770551
|
|
assert lookup3(b'Four score and seven years ago', 1) == 0xCD628161
|
|
assert lookup3(b'jenkins', 0) == 0xC0E7DF9
|
|
|
|
checksum_list = [0]
|
|
for _ in range(9):
|
|
- checksum = lookup3(b'', checksum_list[-1])
|
|
+ checksum = lookup3(b'a', checksum_list[-1])
|
|
assert checksum not in checksum_list
|
|
checksum_list.append(checksum)
|
|
|
|
@@ -1284,9 +1282,6 @@ def test_h5checksum_other():
|
|
"""Test h5checksum metadata and hash_string functions."""
|
|
from imagecodecs import h5checksum_hash_string, h5checksum_metadata
|
|
|
|
- assert h5checksum_metadata(b'', 0) == 3735928559
|
|
- assert h5checksum_hash_string(b'', 0) == 5381
|
|
-
|
|
data = b'Four score and seven years ago'
|
|
assert h5checksum_metadata(data) == 393676113
|
|
assert h5checksum_hash_string(data) == 316074956
|