Pillow/Tests/test_file_fpx.py

29 lines
879 B
Python
Raw Normal View History

import unittest
from PIL import Image
from .helper import PillowTestCase
2015-07-03 08:03:25 +03:00
try:
from PIL import FpxImagePlugin
except ImportError:
olefile_installed = False
else:
olefile_installed = True
2015-07-03 08:03:25 +03:00
@unittest.skipUnless(olefile_installed, "olefile package not installed")
2015-07-03 08:03:25 +03:00
class TestFileFpx(PillowTestCase):
def test_invalid_file(self):
2016-01-23 05:50:17 +03:00
# Test an invalid OLE file
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
2019-06-13 18:53:42 +03:00
self.assertRaises(SyntaxError, FpxImagePlugin.FpxImageFile, invalid_file)
2015-07-03 08:03:25 +03:00
2016-01-23 05:50:17 +03:00
# Test a valid OLE file, but not an FPX file
ole_file = "Tests/images/test-ole-file.doc"
2019-06-13 18:53:42 +03:00
self.assertRaises(SyntaxError, FpxImagePlugin.FpxImageFile, ole_file)
def test_fpx_invalid_number_of_bands(self):
with self.assertRaisesRegex(IOError, "Invalid number of bands"):
Image.open("Tests/images/input_bw_five_bands.fpx")