2019-02-03 18:34:53 +03:00
|
|
|
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")
|
2018-06-30 14:08:41 +03:00
|
|
|
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"
|
|
|
|
|
2019-06-13 18:54:11 +03:00
|
|
|
self.assertRaises(SyntaxError, PixarImagePlugin.PixarImageFile, invalid_file)
|