Pillow/Tests/test_file_pixar.py

27 lines
694 B
Python
Raw Normal View History

from .helper import hopper, PillowTestCase
2017-02-28 09:27:53 +03:00
from PIL import Image, PixarImagePlugin
TEST_FILE = "Tests/images/hopper.pxr"
2017-03-13 08:58:24 +03:00
class TestFilePixar(PillowTestCase):
2017-02-28 09:27:53 +03:00
def test_sanity(self):
im = Image.open(TEST_FILE)
im.load()
self.assertEqual(im.mode, "RGB")
self.assertEqual(im.size, (128, 128))
self.assertEqual(im.format, "PIXAR")
self.assertIsNone(im.get_format_mimetype())
2017-02-28 09:27:53 +03:00
im2 = hopper()
self.assert_image_similar(im, im2, 4.8)
def test_invalid_file(self):
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(
SyntaxError,
2017-09-01 14:05:40 +03:00
PixarImagePlugin.PixarImageFile, invalid_file)