Pillow/Tests/test_file_fpx.py

21 lines
664 B
Python
Raw Normal View History

from .helper import PillowTestCase, unittest
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)