2020-02-12 19:29:19 +03:00
|
|
|
import pytest
|
2020-08-07 13:28:33 +03:00
|
|
|
|
2020-01-01 08:07:03 +03:00
|
|
|
from PIL import Image
|
|
|
|
|
2020-02-18 15:30:56 +03:00
|
|
|
FpxImagePlugin = pytest.importorskip(
|
|
|
|
"PIL.FpxImagePlugin", reason="olefile not installed"
|
2020-02-12 19:29:19 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_invalid_file():
|
|
|
|
# Test an invalid OLE file
|
|
|
|
invalid_file = "Tests/images/flower.jpg"
|
|
|
|
with pytest.raises(SyntaxError):
|
|
|
|
FpxImagePlugin.FpxImageFile(invalid_file)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
# Test a valid OLE file, but not an FPX file
|
|
|
|
ole_file = "Tests/images/test-ole-file.doc"
|
|
|
|
with pytest.raises(SyntaxError):
|
|
|
|
FpxImagePlugin.FpxImageFile(ole_file)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2020-01-01 08:07:03 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
def test_fpx_invalid_number_of_bands():
|
2020-04-07 09:58:21 +03:00
|
|
|
with pytest.raises(OSError, match="Invalid number of bands"):
|
2021-02-11 13:43:54 +03:00
|
|
|
with Image.open("Tests/images/input_bw_five_bands.fpx"):
|
|
|
|
pass
|