mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 09:56:17 +03:00
Failing test for JPEG2000 parser feed
This commit is contained in:
parent
4247de3604
commit
3e6db78f75
|
@ -176,6 +176,19 @@ class TestFileJpeg2k(PillowTestCase):
|
||||||
with self.assertRaises(IOError):
|
with self.assertRaises(IOError):
|
||||||
Image.open('Tests/images/unbound_variable.jp2')
|
Image.open('Tests/images/unbound_variable.jp2')
|
||||||
|
|
||||||
|
def test_parser_feed(self):
|
||||||
|
# Arrange
|
||||||
|
from PIL import ImageFile
|
||||||
|
with open('Tests/images/test-card-lossless.jp2', 'rb') as f:
|
||||||
|
data = f.read()
|
||||||
|
|
||||||
|
# Act
|
||||||
|
p = ImageFile.Parser()
|
||||||
|
p.feed(data)
|
||||||
|
|
||||||
|
# Assert
|
||||||
|
self.assertEqual(p.image.size, (640, 480))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user