mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
62 lines
1.3 KiB
Python
62 lines
1.3 KiB
Python
from helper import unittest, PillowTestCase, hopper
|
|
|
|
from PIL import Image, DcxImagePlugin
|
|
|
|
# Created with ImageMagick: convert hopper.ppm hopper.dcx
|
|
TEST_FILE = "Tests/images/hopper.dcx"
|
|
|
|
|
|
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()
|
|
self.assert_image_equal(im, orig)
|
|
|
|
def test_tell(self):
|
|
# Arrange
|
|
im = Image.open(TEST_FILE)
|
|
|
|
# Act
|
|
frame = im.tell()
|
|
|
|
# Assert
|
|
self.assertEqual(frame, 0)
|
|
|
|
def test_n_frames(self):
|
|
im = Image.open(TEST_FILE)
|
|
self.assertEqual(im.n_frames, 1)
|
|
|
|
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.assertTrue(im.tell() < n_frames)
|
|
|
|
def test_seek_too_far(self):
|
|
# Arrange
|
|
im = Image.open(TEST_FILE)
|
|
frame = 999 # too big on purpose
|
|
|
|
# Act / Assert
|
|
self.assertRaises(EOFError, lambda: im.seek(frame))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
# End of file
|