Pillow/Tests/test_file_dcx.py

66 lines
1.5 KiB
Python
Raw Normal View History

from helper import unittest, PillowTestCase, hopper
2014-07-17 02:20:19 +04:00
from PIL import Image, DcxImagePlugin
# Created with ImageMagick: convert hopper.ppm hopper.dcx
TEST_FILE = "Tests/images/hopper.dcx"
2014-07-17 02:20:19 +04:00
class TestFileDcx(PillowTestCase):
def test_sanity(self):
# Arrange
# Act
im = Image.open(TEST_FILE)
# Assert
self.assertEqual(im.size, (128, 128))
self.assertIsInstance(im, DcxImagePlugin.DcxImageFile)
orig = hopper()
2014-07-17 02:20:19 +04:00
self.assert_image_equal(im, orig)
2015-07-03 08:03:25 +03:00
def test_invalid_file(self):
with open("Tests/images/flower.jpg", "rb") as fp:
2015-07-03 09:22:56 +03:00
self.assertRaises(SyntaxError,
2017-09-01 14:05:40 +03:00
DcxImagePlugin.DcxImageFile, fp)
2015-07-03 08:03:25 +03:00
2014-07-17 02:20:19 +04:00
def test_tell(self):
# Arrange
im = Image.open(TEST_FILE)
# Act
frame = im.tell()
# Assert
self.assertEqual(frame, 0)
2015-06-07 18:01:34 +03:00
def test_n_frames(self):
im = Image.open(TEST_FILE)
self.assertEqual(im.n_frames, 1)
2015-06-30 06:25:00 +03:00
self.assertFalse(im.is_animated)
2015-06-07 18:01:34 +03:00
def test_eoferror(self):
im = Image.open(TEST_FILE)
n_frames = im.n_frames
while True:
n_frames -= 1
try:
im.seek(n_frames)
break
except EOFError:
self.assertLess(im.tell(), n_frames)
2014-07-17 02:20:19 +04:00
def test_seek_too_far(self):
# Arrange
im = Image.open(TEST_FILE)
frame = 999 # too big on purpose
# Act / Assert
2017-09-01 14:05:40 +03:00
self.assertRaises(EOFError, im.seek, frame)
2014-07-17 02:20:19 +04:00
if __name__ == '__main__':
unittest.main()