mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
d50445ff30
Similar to the recent adoption of Black. isort is a Python utility to sort imports alphabetically and automatically separate into sections. By using isort, contributors can quickly and automatically conform to the projects style without thinking. Just let the tool do it. Uses the configuration recommended by the Black to avoid conflicts of style. Rewrite TestImageQt.test_deprecated to no rely on import order.
66 lines
1.7 KiB
Python
66 lines
1.7 KiB
Python
from PIL import DcxImagePlugin, Image
|
|
|
|
from .helper import PillowTestCase, hopper
|
|
|
|
# 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_unclosed_file(self):
|
|
def open():
|
|
im = Image.open(TEST_FILE)
|
|
im.load()
|
|
|
|
self.assert_warning(None, open)
|
|
|
|
def test_invalid_file(self):
|
|
with open("Tests/images/flower.jpg", "rb") as fp:
|
|
self.assertRaises(SyntaxError, DcxImagePlugin.DcxImageFile, fp)
|
|
|
|
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)
|
|
self.assertFalse(im.is_animated)
|
|
|
|
def test_eoferror(self):
|
|
im = Image.open(TEST_FILE)
|
|
n_frames = im.n_frames
|
|
|
|
# Test seeking past the last frame
|
|
self.assertRaises(EOFError, im.seek, n_frames)
|
|
self.assertLess(im.tell(), n_frames)
|
|
|
|
# Test that seeking to the last frame does not raise an error
|
|
im.seek(n_frames - 1)
|
|
|
|
def test_seek_too_far(self):
|
|
# Arrange
|
|
im = Image.open(TEST_FILE)
|
|
frame = 999 # too big on purpose
|
|
|
|
# Act / Assert
|
|
self.assertRaises(EOFError, im.seek, frame)
|