Pillow/Tests/test_file_pixar.py

24 lines
720 B
Python
Raw Normal View History

2017-02-28 09:27:53 +03:00
from PIL import Image, PixarImagePlugin
from .helper import PillowTestCase, assert_image_similar, hopper
2017-02-28 09:27:53 +03:00
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):
2019-11-25 23:03:23 +03:00
with Image.open(TEST_FILE) as im:
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
2019-11-25 23:03:23 +03:00
im2 = hopper()
assert_image_similar(im, im2, 4.8)
2017-02-28 09:27:53 +03:00
def test_invalid_file(self):
invalid_file = "Tests/images/flower.jpg"
2019-06-13 18:54:11 +03:00
self.assertRaises(SyntaxError, PixarImagePlugin.PixarImageFile, invalid_file)