Pillow/Tests/test_file_blp.py

47 lines
1.5 KiB
Python
Raw Normal View History

import pytest
2018-02-17 03:46:29 +03:00
2021-04-01 17:41:46 +03:00
from PIL import Image
from .helper import assert_image_equal_tofile
2018-02-17 03:46:29 +03:00
2020-02-25 12:57:27 +03:00
def test_load_blp2_raw():
with Image.open("Tests/images/blp/blp2_raw.blp") as im:
assert_image_equal_tofile(im, "Tests/images/blp/blp2_raw.png")
2018-02-18 07:24:39 +03:00
2020-02-25 12:57:27 +03:00
def test_load_blp2_dxt1():
with Image.open("Tests/images/blp/blp2_dxt1.blp") as im:
assert_image_equal_tofile(im, "Tests/images/blp/blp2_dxt1.png")
2020-02-25 12:57:27 +03:00
def test_load_blp2_dxt1a():
with Image.open("Tests/images/blp/blp2_dxt1a.blp") as im:
assert_image_equal_tofile(im, "Tests/images/blp/blp2_dxt1a.png")
2021-07-05 01:20:15 +03:00
def test_load_blp1():
with Image.open("Tests/images/blp/war3mapMap.blp") as im:
png = im.copy()
png.save(fp="Tests/images/blp/war3mapMap.png")
2021-07-05 01:20:15 +03:00
assert_image_equal_tofile(im, "Tests/images/blp/war3mapMap.png")
@pytest.mark.parametrize(
"test_file",
[
"Tests/images/timeout-060745d3f534ad6e4128c51d336ea5489182c69d.blp",
"Tests/images/timeout-31c8f86233ea728339c6e586be7af661a09b5b98.blp",
"Tests/images/timeout-60d8b7c8469d59fc9ffff6b3a3dc0faeae6ea8ee.blp",
"Tests/images/timeout-8073b430977660cdd48d96f6406ddfd4114e69c7.blp",
"Tests/images/timeout-bba4f2e026b5786529370e5dfe9a11b1bf991f07.blp",
"Tests/images/timeout-d6ec061c4afdef39d3edf6da8927240bb07fe9b7.blp",
"Tests/images/timeout-ef9112a065e7183fa7faa2e18929b03e44ee16bf.blp",
],
)
def test_crashes(test_file):
with open(test_file, "rb") as f:
with Image.open(f) as im:
with pytest.raises(OSError):
im.load()