Pillow/Tests/test_file_fli.py

43 lines
1017 B
Python
Raw Normal View History

2014-07-07 21:03:50 +04:00
from helper import unittest, PillowTestCase
from PIL import Image
# sample ppm stream
2014-09-29 21:40:33 +04:00
# created as an export of a palette image from Gimp2.6
# save as...-> hopper.fli, default options.
2015-04-24 11:24:52 +03:00
test_file = "Tests/images/hopper.fli"
data = open(test_file, "rb").read()
2014-06-10 13:10:47 +04:00
class TestFileFli(PillowTestCase):
def test_sanity(self):
2015-04-24 11:24:52 +03:00
im = Image.open(test_file)
2014-06-10 13:10:47 +04:00
im.load()
self.assertEqual(im.mode, "P")
self.assertEqual(im.size, (128, 128))
self.assertEqual(im.format, "FLI")
2015-06-07 18:01:34 +03:00
def test_n_frames(self):
im = Image.open(test_file)
self.assertEqual(im.n_frames, 1)
2015-06-30 06:25:00 +03:00
self.assertFalse(im.is_animated)
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)
2015-06-07 18:01:34 +03:00
2014-06-10 13:10:47 +04:00
if __name__ == '__main__':
unittest.main()
# End of file